Searched refs:compMgr (Results 1 - 11 of 11) sorted by relevance

/vbox/src/libs/xpcom18a4/python/server/
H A Dmodule.py55 def getClassObject(self, compMgr, clsid, iid):
65 def registerSelf(self, compMgr, location, loaderStr, componentType):
72 compMgr = compMgr.queryInterface(components.interfaces.nsIComponentRegistrar)
73 compMgr.registerFactoryLocation(klass._reg_clsid_,
83 extra_func(klass, compMgr, location, loaderStr, componentType)
85 def unregisterSelf(self, compMgr, location, loaderStr):
90 compMgr.unregisterComponentSpec(klass._reg_clsid_, location)
97 extra_func(klass, compMgr, location, loaderStr)
105 def canUnload(self, compMgr)
[all...]
H A Dloader.py71 def register_self(klass, compMgr, location, registryLocation, componentType):
/vbox/src/libs/xpcom18a4/xpcom/sample/
H A DnsSample.js57 registerSelf: function (compMgr, fileSpec, location, type) {
64 compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
65 compMgr.registerFactoryLocation(this.myCID,
76 getClassObject: function (compMgr, cid, iid) {
120 canUnload: function(compMgr) {
126 function NSGetModule(compMgr, fileSpec) {
/vbox/src/libs/xpcom18a4/xpcom/glue/
H A DnsComponentManagerUtils.cpp52 nsCOMPtr<nsIComponentManager> compMgr; local
53 nsresult status = NS_GetComponentManager(getter_AddRefs(compMgr));
54 if (compMgr)
55 status = compMgr->CreateInstance(mCID, mOuter, aIID, aInstancePtr);
72 nsCOMPtr<nsIComponentManager> compMgr; local
73 status = NS_GetComponentManager(getter_AddRefs(compMgr));
74 if (compMgr)
75 status = compMgr->CreateInstanceByContractID(mContractID, mOuter,
H A DnsGenericFactory.h113 nsresult Initialize(nsIComponentManager* compMgr);
H A DnsGenericFactory.cpp268 nsGenericModule::Initialize(nsIComponentManager *compMgr) argument
289 nsCOMPtr<nsIComponentRegistrar> registrar = do_QueryInterface(compMgr, &rv);
/vbox/src/libs/xpcom18a4/xpcom/components/
H A DxcDll.cpp342 nsIComponentManager* compMgr = m_loader->mCompMgr; local
343 NS_ASSERTION(compMgr, "Global Component Manager is null" );
344 if (!compMgr) return NS_ERROR_UNEXPECTED;
370 nsresult rv = (*proc) (compMgr, m_dllSpec, &m_moduleObject);
H A DnsComponentManager.cpp178 nsCOMPtr<nsIComponentManager> compMgr; local
198 NS_GetComponentManager(getter_AddRefs(compMgr));
199 if (!compMgr)
201 compMgr->CreateInstanceByContractID(value,
/vbox/src/libs/xpcom18a4/xpcom/build/
H A DnsXPComInit.cpp573 nsComponentManagerImpl *compMgr = NULL;
577 compMgr = new nsComponentManagerImpl();
578 if (compMgr == NULL)
580 NS_ADDREF(compMgr);
610 rv = compMgr->Init();
613 NS_RELEASE(compMgr);
617 nsComponentManagerImpl::gComponentManager = compMgr;
621 NS_STATIC_CAST(nsIServiceManager*, compMgr);
630 rv = compMgr->RegisterService(kMemoryCID, memory);
633 rv = compMgr
[all...]
/vbox/src/libs/xpcom18a4/xpcom/obsolete/component/
H A DregExport.cpp83 nsCOMPtr<nsIComponentManager> compMgr = do_GetService(kComponentManagerCID, &rv); local
95 rv = compMgr->CreateInstanceByContractID(NS_REGISTRY_CONTRACTID, NULL,
129 rv = compMgr->CreateInstanceByContractID(NS_REGISTRY_CONTRACTID, NULL,
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/dconnect/src/
H A DipcDConnectService.cpp3726 nsCOMPtr<nsIComponentManager> compMgr; local
3727 rv = NS_GetComponentManager(getter_AddRefs(compMgr));
3729 rv = compMgr->CreateInstance(setupCI->classid, nsnull, setupCI->iid, (void **) &instance);
3739 nsCOMPtr<nsIComponentManager> compMgr; local
3740 rv = NS_GetComponentManager(getter_AddRefs(compMgr));
3742 rv = compMgr->CreateInstanceByContractID(setupCI->contractid, nsnull, setupCI->iid, (void **) &instance);

Completed in 104 milliseconds