Searched defs:pvBytes (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp2237 * @param pvBytes The value.
2240 VMMR3DECL(int) CFGMR3InsertBytes(PCFGMNODE pNode, const char *pszName, const void *pvBytes, size_t cbBytes) argument
2253 memcpy(pvCopy, pvBytes, cbBytes);
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl2.cpp412 * @param pvBytes See CFGMR3InsertBytes.
417 const void *pvBytes,
422 pvBytes,
3443 void *pvBytes = RTMemTmpAlloc(cbValue); local
3444 if (pvBytes)
3446 rc = RTBase64Decode(pszBase64, pvBytes, cbValue, NULL, NULL);
3448 rc = CFGMR3InsertBytes(pNode, pszCFGMValueName, pvBytes, cbValue);
3449 RTMemTmpFree(pvBytes);
415 InsertConfigBytes(PCFGMNODE pNode, const char *pcszName, const void *pvBytes, size_t cbBytes) argument

Completed in 51 milliseconds