Searched defs:pszId (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DPDMNetShaper.cpp81 static PPDMNSBWGROUP pdmNsBwGroupFindById(PPDMNETSHAPER pShaper, const char *pszId) argument
85 if (RT_VALID_PTR(pszId))
91 && RTStrCmp(pBwGroup->pszNameR3, pszId))
H A DPDMAsyncCompletion.cpp132 char *pszId; member in struct:PDMACBWMGR
585 static PPDMACBWMGR pdmacBwMgrFindById(PPDMASYNCCOMPLETIONEPCLASS pEpClass, const char *pszId) argument
589 if (pszId)
595 && RTStrCmp(pBwMgr->pszId, pszId))
663 pBwMgr->pszId = RTStrDup(pszBwMgr);
664 if (pBwMgr->pszId)
1294 LogRel(("AIOMgr: Id: %s\n", pBwMgr->pszId));
H A DPDMBlkCache.cpp782 if (!RTStrCmp(pBlkCache->pszId, pcszId))
827 SSMR3PutU32(pSSM, (uint32_t)strlen(pBlkCache->pszId));
828 SSMR3PutStrZ(pSSM, pBlkCache->pszId);
890 char *pszId = NULL; local
902 pszId = (char *)RTMemAllocZ(cbId * sizeof(char));
903 if (!pszId)
909 rc = SSMR3GetStrZ(pSSM, pszId, cbId);
913 pBlkCache = pdmR3BlkCacheFindById(pBlkCacheGlobal, pszId);
926 RTMemFree(pszId);
927 pszId
[all...]
/vbox/src/VBox/Main/src-client/
H A DEmulatedUSBImpl.cpp104 bool HasId(const char *pszId) { return RTStrCmp(pszId, mszUuid) == 0;} argument
570 /* static */ DECLCALLBACK(int) EmulatedUSB::eusbCallbackEMT(EmulatedUSB *pThis, char *pszId, uint32_t iEvent, argument
573 LogRelFlowFunc(("id %s event %d, data %p %d\n", pszId, iEvent, pvData, cbData));
581 HRESULT hr = pThis->webcamPathFromId(&path, pszId);
600 RTMemFree(pszId);
607 /* static */ DECLCALLBACK(int) EmulatedUSB::i_eusbCallback(void *pv, const char *pszId, uint32_t iEvent, argument
626 pvIdCopy = RTMemDup(pszId, strlen(pszId) + 1);
659 HRESULT EmulatedUSB::webcamPathFromId(com::Utf8Str *pPath, const char *pszId) argument
[all...]
H A DConsoleImpl.cpp10054 Console::i_pdmIfSecKey_KeyRetain(PPDMISECKEY pInterface, const char *pszId, const uint8_t **ppbKey, argument
10062 int rc = pConsole->m_pKeyStore->retainSecretKey(Utf8Str(pszId), &pKey);
10076 Console::i_pdmIfSecKey_KeyRelease(PPDMISECKEY pInterface, const char *pszId) argument
10081 return pConsole->m_pKeyStore->releaseSecretKey(Utf8Str(pszId));
10088 Console::i_pdmIfSecKey_PasswordRetain(PPDMISECKEY pInterface, const char *pszId, const char **ppszPassword) argument
10095 int rc = pConsole->m_pKeyStore->retainSecretKey(Utf8Str(pszId), &pKey);
10106 Console::i_pdmIfSecKey_PasswordRelease(PPDMISECKEY pInterface, const char *pszId) argument
10111 return pConsole->m_pKeyStore->releaseSecretKey(Utf8Str(pszId));
/vbox/src/VBox/VMM/include/
H A DPDMBlkCacheInternal.h184 char *pszId; member in struct:PDMBLKCACHE
/vbox/include/VBox/
H A Dvd-ifs.h1427 * @param pszId The alias/id for the key to retrieve.
1431 DECLR3CALLBACKMEMBER(int, pfnKeyRetain, (void *pvUser, const char *pszId, const uint8_t **ppbKey, size_t *pcbKey));
1439 * @param pszId The alias/id for the key to release.
1445 DECLR3CALLBACKMEMBER(int, pfnKeyRelease, (void *pvUser, const char *pszId));
1452 * @param pszId The alias/id for the password to retain.
1455 DECLR3CALLBACKMEMBER(int, pfnKeyStorePasswordRetain, (void *pvUser, const char *pszId, const char **ppszPassword));
1463 * @param pszId The alias/id for the password to release.
1465 DECLR3CALLBACKMEMBER(int, pfnKeyStorePasswordRelease, (void *pvUser, const char *pszId));
1524 DECLINLINE(int) vdIfCryptoKeyRetain(PVDINTERFACECRYPTO pIfCrypto, const char *pszId, const uint8_t **ppbKey, size_t *pcbKey) argument
1526 return pIfCrypto->pfnKeyRetain(pIfCrypto->Core.pvUser, pszId, ppbKe
1532 vdIfCryptoKeyRelease(PVDINTERFACECRYPTO pIfCrypto, const char *pszId) argument
1540 vdIfCryptoKeyStorePasswordRetain(PVDINTERFACECRYPTO pIfCrypto, const char *pszId, const char **ppszPassword) argument
1548 vdIfCryptoKeyStorePasswordRelease(PVDINTERFACECRYPTO pIfCrypto, const char *pszId) argument
[all...]
/vbox/src/VBox/Devices/Storage/
H A DDrvVD.cpp644 static DECLCALLBACK(int) drvvdCryptoKeyRetain(void *pvUser, const char *pszId, const uint8_t **ppbKey, size_t *pcbKey) argument
651 rc = pThis->pIfSecKey->pfnKeyRetain(pThis->pIfSecKey, pszId, ppbKey, pcbKey);
658 static DECLCALLBACK(int) drvvdCryptoKeyRelease(void *pvUser, const char *pszId) argument
665 rc = pThis->pIfSecKey->pfnKeyRelease(pThis->pIfSecKey, pszId);
672 static DECLCALLBACK(int) drvvdCryptoKeyStorePasswordRetain(void *pvUser, const char *pszId, const char **ppszPassword) argument
679 rc = pThis->pIfSecKey->pfnPasswordRetain(pThis->pIfSecKey, pszId, ppszPassword);
686 static DECLCALLBACK(int) drvvdCryptoKeyStorePasswordRelease(void *pvUser, const char *pszId) argument
693 rc = pThis->pIfSecKey->pfnPasswordRelease(pThis->pIfSecKey, pszId);
3195 char *pszId = NULL; local
3206 int cbStr = RTStrAPrintf(&pszId, "
[all...]
/vbox/src/VBox/Main/src-server/
H A DMediumImpl.cpp7222 DECLCALLBACK(int) Medium::i_vdCryptoKeyRetain(void *pvUser, const char *pszId, argument
7226 NOREF(pszId);
7233 DECLCALLBACK(int) Medium::i_vdCryptoKeyRelease(void *pvUser, const char *pszId) argument
7236 NOREF(pszId);
7241 DECLCALLBACK(int) Medium::i_vdCryptoKeyStorePasswordRetain(void *pvUser, const char *pszId, const char **ppszPassword) argument
7246 NOREF(pszId);
7251 DECLCALLBACK(int) Medium::i_vdCryptoKeyStorePasswordRelease(void *pvUser, const char *pszId) argument
7255 NOREF(pszId);

Completed in 224 milliseconds