Lines Matching defs:enmUnit

1106                                 const char *pszName, STAMUNIT enmUnit, const char *pszDesc);
1108 const char *pszName, STAMUNIT enmUnit, const char *pszDesc);
1118 * @param enmUnit Sample unit.
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); \
1132 * @param enmUnit Sample unit.
1135 #define STAM_REG(pVM, pvSample, enmType, pszName, enmUnit, pszDesc) \
1136 STAM_STATS({STAM_REL_REG(pVM, pvSample, enmType, pszName, enmUnit, pszDesc);})
1146 * @param enmUnit Sample unit.
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); \
1160 * @param enmUnit Sample unit.
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,
1196 VMMR3DECL(int) STAMR3RegisterCallback(PVM pVM, void *pvSample, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
1199 VMMR3DECL(int) STAMR3RegisterCallbackV(PVM pVM, void *pvSample, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
1222 * @param enmUnit The unit.
1227 typedef DECLCALLBACK(int) FNSTAMR3ENUM(const char *pszName, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit,
1233 VMMR3DECL(const char *) STAMR3GetUnit(STAMUNIT enmUnit);