Searched defs:hal (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Main/include/
H A DPerformanceImpl.h187 pm::CollectorHAL *getHAL() { return m.hal; };
212 Data() : hal(0) {};
217 pm::CollectorHAL *hal; member in struct:PerformanceCollector::Data
H A DPerformance.h401 BaseMetric(CollectorHAL *hal, const com::Utf8Str name, ComPtr<IUnknown> object) argument
402 : mPeriod(0), mLength(0), mHAL(hal), mName(name), mObject(object),
451 HostCpuLoad(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *user, SubMetric *kernel, SubMetric *idle) argument
452 : BaseMetric(hal, "CPU/Load", object), mUser(user), mKernel(kernel), mIdle(idle) {};
472 HostCpuLoadRaw(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *user, SubMetric *kernel, SubMetric *idle) argument
473 : HostCpuLoad(hal, object, user, kernel, idle), mUserPrev(0), mKernelPrev(0), mIdlePrev(0) {};
487 HostCpuMhz(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *mhz) argument
488 : BaseMetric(hal, "CPU/MHz", object), mMHz(mhz) {};
505 HostRamUsage(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *total, SubMetric *used, SubMetric *available) argument
506 : BaseMetric(hal, "RA
525 HostNetworkSpeed(CollectorHAL *hal, ComPtr<IUnknown> object, com::Utf8Str name, com::Utf8Str shortname, com::Utf8Str , uint32_t speed, SubMetric *linkspeed) argument
546 HostNetworkLoadRaw(CollectorHAL *hal, ComPtr<IUnknown> object, com::Utf8Str name, com::Utf8Str shortname, com::Utf8Str ifname, uint32_t speed, SubMetric *rx, SubMetric *tx) argument
573 HostFilesystemUsage(CollectorHAL *hal, ComPtr<IUnknown> object, com::Utf8Str name, com::Utf8Str fsname, SubMetric *total, SubMetric *used, SubMetric *available) argument
594 HostDiskUsage(CollectorHAL *hal, ComPtr<IUnknown> object, com::Utf8Str name, com::Utf8Str diskname, SubMetric *total) argument
613 HostDiskLoadRaw(CollectorHAL *hal, ComPtr<IUnknown> object, com::Utf8Str name, com::Utf8Str diskname, SubMetric *util) argument
670 MachineCpuLoad(CollectorHAL *hal, ComPtr<IUnknown> object, RTPROCESS process, SubMetric *user, SubMetric *kernel) argument
689 MachineCpuLoadRaw(CollectorHAL *hal, ComPtr<IUnknown> object, RTPROCESS process, SubMetric *user, SubMetric *kernel) argument
703 MachineRamUsage(CollectorHAL *hal, ComPtr<IUnknown> object, RTPROCESS process, SubMetric *used) argument
725 MachineDiskUsage(CollectorHAL *hal, ComPtr<IUnknown> object, MediaList &disks, SubMetric *used) argument
[all...]
/vbox/src/VBox/Main/src-server/
H A DHostNetworkInterfaceImpl.cpp99 pm::CollectorHAL *hal = aCollector->getHAL(); local
110 pm::BaseMetric *networkSpeed = new pm::HostNetworkSpeed(hal, objptr, strName + "/LinkSpeed",
114 pm::BaseMetric *networkLoad = new pm::HostNetworkLoadRaw(hal, objptr, strName + "/Load",
H A DHostImpl.cpp2415 * Helper function to query the hal subsystem for information about DVD drives attached to the
2571 * Helper function to query the hal subsystem for information about floppy drives attached to the
2904 * configured (at present, that means that usbfs and hal/DBus are not
3038 pm::CollectorHAL *hal = aCollector->getHAL(); local
3049 pm::BaseMetric *fsRootUsage = new pm::HostFilesystemUsage(hal, this,
3082 int rc = hal->getDiskListByFs("/", disksUsage, disksLoad);
3091 pm::BaseMetric *fsLoad = new pm::HostDiskLoadRaw(hal, this, strName + "/Load",
3108 pm::BaseMetric *fsUsage = new pm::HostDiskUsage(hal, this, strName + "/Usage",
3124 pm::CollectorHAL *hal = aCollector->getHAL(); local
3151 pm::BaseMetric *cpuLoad = new pm::HostCpuLoadRaw(hal, thi
[all...]
H A DMachineImpl.cpp12109 pm::CollectorHAL *hal = aCollector->getHAL(); local
12124 pm::BaseMetric *cpuLoad = new pm::MachineCpuLoadRaw(hal, aMachine, pid,
12127 pm::BaseMetric *ramUsage = new pm::MachineRamUsage(hal, aMachine, pid,
12132 pm::BaseMetric *diskUsage = new pm::MachineDiskUsage(hal, aMachine, disks,

Completed in 87 milliseconds