Searched refs:pszInterfaceUuid (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/HostDrivers/VBoxPci/
H A DVBoxPci.c52 * @param pszInterfaceUuid The factory interface id.
54 static DECLCALLBACK(void *) vboxPciQueryFactoryInterface(PCSUPDRVFACTORY pSupDrvFactory, PSUPDRVSESSION pSession, const char *pszInterfaceUuid) argument
62 int rc = RTUuidFromStr(&UuidReq, pszInterfaceUuid);
72 Log(("VBoxRawPci: rc=%Rrc, uuid=%s\n", rc, pszInterfaceUuid));
/vbox/src/VBox/HostDrivers/VBoxNetAdp/
H A DVBoxNetAdp.c733 * @param pszInterfaceUuid The factory interface id.
735 static DECLCALLBACK(void *) vboxNetAdpQueryFactoryInterface(PCSUPDRVFACTORY pSupDrvFactory, PSUPDRVSESSION pSession, const char *pszInterfaceUuid) argument
743 int rc = RTUuidFromStr(&UuidReq, pszInterfaceUuid);
753 Log(("VBoxNetAdp: unknown factory interface query (%s)\n", pszInterfaceUuid));
757 Log(("VBoxNetAdp: rc=%Rrc, uuid=%s\n", rc, pszInterfaceUuid));
/vbox/src/VBox/HostDrivers/VBoxNetFlt/
H A DVBoxNetFlt.c1333 * @param pszInterfaceUuid The factory interface id.
1335 static DECLCALLBACK(void *) vboxNetFltQueryFactoryInterface(PCSUPDRVFACTORY pSupDrvFactory, PSUPDRVSESSION pSession, const char *pszInterfaceUuid) argument
1343 int rc = RTUuidFromStr(&UuidReq, pszInterfaceUuid);
1357 Log(("VBoxNetFlt: unknown factory interface query (%s)\n", pszInterfaceUuid));
1361 Log(("VBoxNetFlt: rc=%Rrc, uuid=%s\n", rc, pszInterfaceUuid));
/vbox/include/VBox/
H A Dsup.h1881 * @param pszInterfaceUuid The UUID of the factory interface.
1883 DECLR0CALLBACKMEMBER(void *, pfnQueryFactoryInterface,(struct SUPDRVFACTORY const *pSupDrvFactory, PSUPDRVSESSION pSession, const char *pszInterfaceUuid));
1892 SUPR0DECL(int) SUPR0ComponentQueryFactory(PSUPDRVSESSION pSession, const char *pszName, const char *pszInterfaceUuid, void **ppvFactoryIf);
/vbox/src/VBox/HostDrivers/Support/
H A DSUPDrv.cpp4150 * @param pszInterfaceUuid The UUID of the factory interface (stringified).
4153 SUPR0DECL(int) SUPR0ComponentQueryFactory(PSUPDRVSESSION pSession, const char *pszName, const char *pszInterfaceUuid, void **ppvFactoryIf) argument
4169 AssertPtrReturn(pszInterfaceUuid, VERR_INVALID_POINTER);
4170 pszEnd = RTStrEnd(pszInterfaceUuid, RTUUID_STR_LENGTH);
4189 void *pvFactory = pCur->pFactory->pfnQueryFactoryInterface(pCur->pFactory, pSession, pszInterfaceUuid);

Completed in 77 milliseconds