Lines Matching refs:pvSample

1105 VMMR3DECL(int)  STAMR3RegisterU(PUVM pUVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility,
1107 VMMR3DECL(int) STAMR3Register(PVM pVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility,
1114 * @param pvSample Pointer to the sample.
1115 * @param enmType Sample type. This indicates what pvSample is pointing at.
1121 #define STAM_REL_REG(pVM, pvSample, enmType, pszName, enmUnit, pszDesc) \
1122 STAM_REL_STATS({ int rcStam = STAMR3Register(pVM, pvSample, enmType, STAMVISIBILITY_ALWAYS, pszName, enmUnit, pszDesc); \
1128 * @param pvSample Pointer to the sample.
1129 * @param enmType Sample type. This indicates what pvSample is pointing at.
1135 #define STAM_REG(pVM, pvSample, enmType, pszName, enmUnit, pszDesc) \
1136 STAM_STATS({STAM_REL_REG(pVM, pvSample, enmType, pszName, enmUnit, pszDesc);})
1142 * @param pvSample Pointer to the sample.
1143 * @param enmType Sample type. This indicates what pvSample is pointing at.
1149 #define STAM_REL_REG_USED(pVM, pvSample, enmType, pszName, enmUnit, pszDesc) \
1150 STAM_REL_STATS({ int rcStam = STAMR3Register(pVM, pvSample, enmType, STAMVISIBILITY_USED, pszName, enmUnit, pszDesc); \
1156 * @param pvSample Pointer to the sample.
1157 * @param enmType Sample type. This indicates what pvSample is pointing at.
1163 #define STAM_REG_USED(pVM, pvSample, enmType, pszName, enmUnit, pszDesc) \
1164 STAM_STATS({ STAM_REL_REG_USED(pVM, pvSample, enmType, pszName, enmUnit, pszDesc); })
1166 VMMR3DECL(int) STAMR3RegisterFU(PUVM pUVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
1168 VMMR3DECL(int) STAMR3RegisterF(PVM pVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
1170 VMMR3DECL(int) STAMR3RegisterVU(PUVM pUVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
1172 VMMR3DECL(int) STAMR3RegisterV(PVM pVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
1178 * @param pvSample The sample registered using STAMR3RegisterCallback.
1180 typedef void FNSTAMR3CALLBACKRESET(PVM pVM, void *pvSample);
1188 * @param pvSample The sample registered using STAMR3RegisterCallback.
1192 typedef void FNSTAMR3CALLBACKPRINT(PVM pVM, void *pvSample, char *pszBuf, size_t cchBuf);
1196 VMMR3DECL(int) STAMR3RegisterCallback(PVM pVM, void *pvSample, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
1199 VMMR3DECL(int) STAMR3RegisterCallbackV(PVM pVM, void *pvSample, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
1205 VMMR3DECL(int) STAMR3DeregisterByAddr(PUVM pUVM, void *pvSample);
1221 * @param pvSample Pointer to the data. enmType indicates the format of this data.
1227 typedef DECLCALLBACK(int) FNSTAMR3ENUM(const char *pszName, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit,