Lines Matching refs:System

35 using namespace System::Runtime::Remoting;
36 using namespace System::Runtime::Remoting::Proxies;
37 using namespace System::Collections;
38 using namespace System::Text;
39 using namespace System::Diagnostics;
40 using namespace System::Threading;
45 inline System::String* Cli_environment::createKey(System::String* oid, System::Type* t) in createKey()
47 return System::String::Concat(oid, t->get_FullName()); in createKey()
65 System::Object* Cli_environment::registerInterface( in registerInterface()
66 System::Object* obj, System::String* oid) in registerInterface()
77 System::Object* Cli_environment::registerInterface ( in registerInterface()
78 System::Object* obj, System::String* oid, System::Type* type) in registerInterface()
85 System::String* key = createKey(oid, type); in registerInterface()
92 void Cli_environment::revokeInterface(System::String* oid, System::Type* type) in revokeInterface()
94 System::String* key = type != NULL ? createKey(oid, type) : oid; in revokeInterface()
106 Trace::WriteLine(System::String::Format( in revokeInterface()
107 new System::String(S"cli uno bridge: {0} remaining registered interfaces"), in revokeInterface()
113 inline void Cli_environment::revokeInterface(System::String* oid) in revokeInterface()
118 System::Object* Cli_environment::getRegisteredInterface(System::String* oid, in getRegisteredInterface()
119 System::Type* type) in getRegisteredInterface()
122 System::Object* ret = NULL; in getRegisteredInterface()
132 System::WeakReference* weakIface = in getRegisteredInterface()
133 static_cast< System::WeakReference * >( ret ); in getRegisteredInterface()
141 System::String* Cli_environment::getObjectIdentifier(System::Object* obj) in getObjectIdentifier()
143 System::String* oId= 0; in getObjectIdentifier()
156 System::Threading::Monitor::Enter(__typeof(Cli_environment)); in getObjectIdentifier()
161 System::Threading::Monitor::Exit(__typeof(Cli_environment)); in getObjectIdentifier()