Lines Matching refs:oid
45 inline System::String* Cli_environment::createKey(System::String* oid, System::Type* t) in createKey() argument
47 return System::String::Concat(oid, t->get_FullName()); in createKey()
66 System::Object* obj, System::String* oid) in registerInterface() argument
73 OSL_ASSERT( ! m_objects->ContainsKey(oid)); in registerInterface()
74 m_objects->Add(oid, new WeakReference(obj)); in registerInterface()
78 System::Object* obj, System::String* oid, System::Type* type) in registerInterface() argument
85 System::String* key = createKey(oid, type); in registerInterface()
92 void Cli_environment::revokeInterface(System::String* oid, System::Type* type) in revokeInterface() argument
94 System::String* key = type != NULL ? createKey(oid, type) : oid; in revokeInterface()
103 Trace::WriteLine(oid); in revokeInterface()
113 inline void Cli_environment::revokeInterface(System::String* oid) in revokeInterface() argument
115 return revokeInterface(oid, NULL); in revokeInterface()
118 System::Object* Cli_environment::getRegisteredInterface(System::String* oid, in getRegisteredInterface() argument
123 ret = m_objects->get_Item(oid); in getRegisteredInterface()
127 oid = createKey(oid, type); in getRegisteredInterface()
128 ret = m_objects->get_Item( oid ); in getRegisteredInterface()
137 m_objects->Remove( oid ); in getRegisteredInterface()