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

/vbox/src/VBox/Debugger/
H A DDBGPlugInLinux.cpp67 uint32_t cbKernelNames; member in struct:DBGDIGGERLINUX
625 pThis->cbKernelNames = pAddrMarkers->FlatPtr - pThis->AddrKernelNames.FlatPtr - 1;
631 Log(("dbgDiggerLinuxFoundMarkers: AddrKernelNames=%RGv cbKernelNames=%#x\n"
634 pThis->AddrKernelNames.FlatPtr, pThis->cbKernelNames,
645 * The kallsyms_names size is stored in pThis->cbKernelNames, the addresses of
839 uint8_t *pbNames = (uint8_t *)RTMemAllocZ(pThis->cbKernelNames);
840 rc = DBGFR3MemRead(pUVM, 0 /*idCpu*/, &pThis->AddrKernelNames, pbNames, pThis->cbKernelNames);
912 if (RT_LIKELY(offName < pThis->cbKernelNames))
915 if (RT_LIKELY(offName + cbName <= pThis->cbKernelNames))
967 Log(("dbgDiggerLinuxLoadKernelSymbols: offName=%#x cLeft=%#x cbName=%#x cbKernelNames
[all...]

Completed in 47 milliseconds