Home
last modified time | relevance | path

Searched refs:vmtotal (Results 1 – 2 of 2) sorted by relevance

/external/cronet/base/process/
Dprocess_metrics_openbsd.cc73 struct vmtotal vmtotal; in GetSystemCommitCharge() local
75 size_t len = sizeof(vmtotal); in GetSystemCommitCharge()
77 if (sysctl(mib, std::size(mib), &vmtotal, &len, NULL, 0) < 0) in GetSystemCommitCharge()
80 mem_total = vmtotal.t_vm; in GetSystemCommitCharge()
81 mem_free = vmtotal.t_free; in GetSystemCommitCharge()
82 mem_inactive = vmtotal.t_vm - vmtotal.t_avm; in GetSystemCommitCharge()
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/
Dmod.rs552 pub struct vmtotal {