Lines Matching refs:pvSample

290     static int initNode(PDBGGUISTATSNODE pNode, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit, const char *pszDesc);
295 static void updateNode(PDBGGUISTATSNODE pNode, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit, const char *pszDesc);
342 static DECLCALLBACK(int) updateCallback(const char *pszName, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit,
575 static DECLCALLBACK(int) createNewTreeCallback(const char *pszName, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit,
1040 VBoxDbgStatsModel::initNode(PDBGGUISTATSNODE pNode, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit, const char *pszDesc)
1054 pNode->Data.Counter = *(PSTAMCOUNTER)pvSample;
1059 pNode->Data.Profile = *(PSTAMPROFILE)pvSample;
1064 pNode->Data.RatioU32 = *(PSTAMRATIOU32)pvSample;
1069 const char *pszString = (const char *)pvSample;
1078 pNode->Data.u8 = *(uint8_t *)pvSample;
1085 pNode->Data.u16 = *(uint16_t *)pvSample;
1092 pNode->Data.u32 = *(uint32_t *)pvSample;
1099 pNode->Data.u64 = *(uint64_t *)pvSample;
1104 pNode->Data.f = *(bool *)pvSample;
1119 VBoxDbgStatsModel::updateNode(PDBGGUISTATSNODE pNode, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit, const char *pszDesc)
1129 initNode(pNode, enmType, pvSample, enmUnit, pszDesc);
1145 pNode->Data.Counter = *(PSTAMCOUNTER)pvSample;
1159 pNode->Data.Profile = *(PSTAMPROFILE)pvSample;
1173 pNode->Data.RatioU32 = *(PSTAMRATIOU32)pvSample;
1197 const char *pszString = (const char *)pvSample;
1218 pNode->Data.u8 = *(uint8_t *)pvSample;
1234 pNode->Data.u16 = *(uint16_t *)pvSample;
1250 pNode->Data.u32 = *(uint32_t *)pvSample;
1266 pNode->Data.u64 = *(uint64_t *)pvSample;
1280 pNode->Data.f = *(bool *)pvSample;
1739 VBoxDbgStatsModel::updateCallback(const char *pszName, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit,
1781 updateNode(pNode, enmType, pvSample, enmUnit, pszDesc);
2634 VBoxDbgStatsModelVM::createNewTreeCallback(const char *pszName, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit,
2681 return initNode(pNode, enmType, pvSample, enmUnit, pszDesc);