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

/vbox/src/VBox/HostDrivers/Support/
H A DSUPR0IdcClientComponent.c39 * @param pFactory The factory to register.
41 SUPR0DECL(int) SUPR0IdcComponentRegisterFactory(PSUPDRVIDCHANDLE pHandle, PCSUPDRVFACTORY pFactory) argument
57 Req.u.In.pFactory = pFactory;
68 * @param pFactory The factory to register.
70 SUPR0DECL(int) SUPR0IdcComponentDeregisterFactory(PSUPDRVIDCHANDLE pHandle, PCSUPDRVFACTORY pFactory) argument
86 Req.u.In.pFactory = pFactory;
H A DSUPDrvIDC.h187 PCSUPDRVFACTORY pFactory; member in struct:SUPDRVIDCREQCOMPREGFACTORY::__anon16280::SUPDRVIDCREQCOMPREGFACTORYIN
212 PCSUPDRVFACTORY pFactory; member in struct:SUPDRVIDCREQCOMPDEREGFACTORY::__anon16281::SUPDRVIDCREQCOMPDEREGFACTORYIN
H A DSUPDrv.cpp949 pCur->pFactory = NULL;
2536 pReq->Hdr.rc = SUPR0ComponentRegisterFactory(pSession, pReq->u.In.pFactory);
2545 pReq->Hdr.rc = SUPR0ComponentDeregisterFactory(pSession, pReq->u.In.pFactory);
4009 * @param pFactory Pointer to the component factory registration structure.
4013 SUPR0DECL(int) SUPR0ComponentRegisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory) argument
4024 AssertPtrReturn(pFactory, VERR_INVALID_POINTER);
4025 AssertPtrReturn(pFactory->pfnQueryFactoryInterface, VERR_INVALID_POINTER);
4026 psz = RTStrEnd(pFactory->szName, sizeof(pFactory->szName));
4036 pNewReg->pFactory
4092 SUPR0ComponentDeregisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory) argument
[all...]
H A DSUPDrvInternal.h414 PCSUPDRVFACTORY pFactory; member in struct:SUPDRVFACTORYREG
/vbox/src/VBox/Devices/Bus/
H A DSrvPciRawR0.cpp174 PRAWPCIFACTORY pFactory = NULL; local
177 rc = SUPR0ComponentQueryFactory(pVM->pSession, "VBoxRawPci", RAWPCIFACTORY_UUID_STR, (void **)&pFactory);
181 if (pFactory)
186 rc = pFactory->pfnInitVm(pFactory, pVM, &pGVM->rawpci.s);
187 pFactory->pfnRelease(pFactory);
199 PRAWPCIFACTORY pFactory = NULL; local
202 rc = SUPR0ComponentQueryFactory(pVM->pSession, "VBoxRawPci", RAWPCIFACTORY_UUID_STR, (void **)&pFactory);
206 if (pFactory)
530 PRAWPCIFACTORY pFactory = NULL; local
[all...]
/vbox/include/VBox/
H A Drawpci.h498 DECLR0CALLBACKMEMBER(void, pfnRelease,(PRAWPCIFACTORY pFactory));
515 DECLR0CALLBACKMEMBER(int, pfnCreateAndConnect,(PRAWPCIFACTORY pFactory,
532 DECLR0CALLBACKMEMBER(int, pfnInitVm,(PRAWPCIFACTORY pFactory,
545 DECLR0CALLBACKMEMBER(void, pfnDeinitVm,(PRAWPCIFACTORY pFactory,
H A Dsup.h1890 SUPR0DECL(int) SUPR0ComponentRegisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory);
1891 SUPR0DECL(int) SUPR0ComponentDeregisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory);
2195 SUPR0DECL(int) SUPR0IdcComponentRegisterFactory(PSUPDRVIDCHANDLE pHandle, PCSUPDRVFACTORY pFactory);
2196 SUPR0DECL(int) SUPR0IdcComponentDeregisterFactory(PSUPDRVIDCHANDLE pHandle, PCSUPDRVFACTORY pFactory);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Drpcproxy.h215 #define CSTDSTUBBUFFERRELEASE(pFactory) \
217 { return NdrCStdStubBuffer_Release(This, (IPSFactoryBuffer *)pFactory); }
220 #define CSTDSTUBBUFFER2RELEASE(pFactory) \
222 { return NdrCStdStubBuffer2_Release(This, (IPSFactoryBuffer *)pFactory); }
224 #define CSTDSTUBBUFFER2RELEASE(pFactory)
/vbox/src/VBox/Additions/WINNT/VBoxCredProv/
H A DVBoxCredentialProvider.cpp493 VBoxCredProvFactory* pFactory = new VBoxCredProvFactory(); local
494 AssertPtr(pFactory);
495 hr = pFactory->QueryInterface(interfaceID,
497 pFactory->Release();
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Drpcproxy.h218 #define CSTDSTUBBUFFERRELEASE(pFactory) \
220 { return NdrCStdStubBuffer_Release(This, (IPSFactoryBuffer *)pFactory); }
223 #define CSTDSTUBBUFFER2RELEASE(pFactory) \
225 { return NdrCStdStubBuffer2_Release(This, (IPSFactoryBuffer *)pFactory); }
227 #define CSTDSTUBBUFFER2RELEASE(pFactory)
/vbox/src/VBox/HostDrivers/VBoxPci/
H A DVBoxPci.c514 static DECLCALLBACK(int) vboxPciFactoryCreateAndConnect(PRAWPCIFACTORY pFactory, argument
521 PVBOXRAWPCIGLOBALS pGlobals = (PVBOXRAWPCIGLOBALS)((uint8_t *)pFactory - RT_OFFSETOF(VBOXRAWPCIGLOBALS, RawPciFactory));
549 static DECLCALLBACK(void) vboxPciFactoryRelease(PRAWPCIFACTORY pFactory) argument
551 PVBOXRAWPCIGLOBALS pGlobals = (PVBOXRAWPCIGLOBALS)((uint8_t *)pFactory - RT_OFFSETOF(VBOXRAWPCIGLOBALS, RawPciFactory));
561 static DECLCALLBACK(int) vboxPciFactoryInitVm(PRAWPCIFACTORY pFactory, argument
600 static DECLCALLBACK(void) vboxPciFactoryDeinitVm(PRAWPCIFACTORY pFactory, argument

Completed in 295 milliseconds