Lines Matching defs:total
51 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available);
52 virtual int getHostFilesystemUsage(const char *name, ULONG *total, ULONG *used, ULONG *available);
59 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
197 int CollectorLinux::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total)
208 *total = mUser + mKernel + mIdle;
212 int CollectorLinux::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available)
219 *total = totalRAM;
221 *used = *total - *available;
226 int CollectorLinux::getHostFilesystemUsage(const char *path, ULONG *total, ULONG *used, ULONG *available)
236 *total = (ULONG)(cbBlock * stats.f_blocks / _1M);