Searched defs:cbBytes (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/HostDrivers/VBoxUSB/win/dev/
H A DVBoxUsbCmn.h70 DECLHIDDEN(PVOID) vboxUsbMemAlloc(SIZE_T cbBytes); variable
71 DECLHIDDEN(PVOID) vboxUsbMemAllocZ(SIZE_T cbBytes); variable
H A DVBoxUsbDev.cpp22 DECLHIDDEN(PVOID) vboxUsbMemAlloc(SIZE_T cbBytes) argument
24 PVOID pvMem = ExAllocatePoolWithTag(NonPagedPool, cbBytes, VBOXUSB_MEMTAG);
29 DECLHIDDEN(PVOID) vboxUsbMemAllocZ(SIZE_T cbBytes) argument
31 PVOID pvMem = vboxUsbMemAlloc(cbBytes);
34 RtlZeroMemory(pvMem, cbBytes);
/vbox/src/VBox/HostDrivers/VBoxUSB/win/cmn/
H A DVBoxDrvTool.cpp27 static PVOID vboxDrvToolMemAlloc(SIZE_T cbBytes) argument
29 PVOID pvMem = ExAllocatePoolWithTag(NonPagedPool, cbBytes, VBOXDRVTOOL_MEMTAG);
34 static PVOID vboxDrvToolMemAllocZ(SIZE_T cbBytes) argument
36 PVOID pvMem = vboxDrvToolMemAlloc(cbBytes);
39 RtlZeroMemory(pvMem, cbBytes);
H A DVBoxUsbTool.cpp28 static PVOID vboxUsbToolMemAlloc(SIZE_T cbBytes) argument
30 PVOID pvMem = ExAllocatePoolWithTag(NonPagedPool, cbBytes, VBOXUSBTOOL_MEMTAG);
35 static PVOID vboxUsbToolMemAllocZ(SIZE_T cbBytes) argument
37 PVOID pvMem = vboxUsbToolMemAlloc(cbBytes);
40 RtlZeroMemory(pvMem, cbBytes);
/vbox/src/VBox/HostDrivers/VBoxUSB/win/mon/
H A DVBoxUsbMon.cpp98 PVOID VBoxUsbMonMemAlloc(SIZE_T cbBytes) argument
100 PVOID pvMem = ExAllocatePoolWithTag(NonPagedPool, cbBytes, VBOXUSBMON_MEMTAG);
105 PVOID VBoxUsbMonMemAllocZ(SIZE_T cbBytes) argument
107 PVOID pvMem = VBoxUsbMonMemAlloc(cbBytes);
110 RtlZeroMemory(pvMem, cbBytes);
/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp2238 * @param cbBytes The value size.
2240 VMMR3DECL(int) CFGMR3InsertBytes(PCFGMNODE pNode, const char *pszName, const void *pvBytes, size_t cbBytes) argument
2245 if (cbBytes == (RTUINT)cbBytes)
2250 void *pvCopy = cfgmR3MemAlloc(pNode->pVM, MM_TAG_CFGM_STRING, cbBytes);
2251 if (pvCopy || !cbBytes)
2253 memcpy(pvCopy, pvBytes, cbBytes);
2263 pLeaf->Value.Bytes.cb = cbBytes;
/vbox/src/VBox/Debugger/
H A DDBGCEmulateCodeView.cpp3659 * @param cbBytes The size of the pattern.
3665 const uint8_t *pabBytes, uint32_t cbBytes,
3678 int rc = DBGFR3MemScan(pUVM, pDbgc->idCpu, pAddress, cbRange, 1, pabBytes, cbBytes, &HitAddress);
3704 pAddress->FlatPtr += cbBytes;
3705 pAddress->off += cbBytes;
3706 if (cbRange <= cbBytes)
3711 cbRange -= cbBytes;
3725 memcpy(pDbgc->abSearch, pabBytes, cbBytes);
3726 pDbgc->cbSearch = cbBytes;
3814 uint32_t cbBytes local
3664 dbgcCmdWorkerSearchMemDoIt(PDBGCCMDHLP pCmdHlp, PUVM pUVM, PDBGFADDRESS pAddress, RTGCUINTPTR cbRange, const uint8_t *pabBytes, uint32_t cbBytes, uint32_t cbUnit, uint64_t cMaxHits, PDBGCVAR pResult) argument
[all...]
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl2.cpp413 * @param cbBytes See CFGMR3InsertBytes.
418 size_t cbBytes)
423 cbBytes);
415 InsertConfigBytes(PCFGMNODE pNode, const char *pcszName, const void *pvBytes, size_t cbBytes) argument

Completed in 74 milliseconds