Lines Matching defs:total
60 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available);
65 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
130 uint64_t user, kernel, idle, total;
134 total = user + kernel + idle;
170 vmStats.cpuTotal = total;
298 int CollectorWin::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available)
305 *total = totalRAM;
307 *used = *total - *available;
317 int CollectorWin::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total)
328 *total = it->second.cpuTotal;