Home
last modified time | relevance | path

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

/external/chromium_org/base/process/
Dprocess_metrics_openbsd.cc152 struct vmtotal vmtotal; in GetSystemCommitCharge() local
154 size_t len = sizeof(vmtotal); in GetSystemCommitCharge()
156 if (sysctl(mib, arraysize(mib), &vmtotal, &len, NULL, 0) < 0) in GetSystemCommitCharge()
159 mem_total = vmtotal.t_vm; in GetSystemCommitCharge()
160 mem_free = vmtotal.t_free; in GetSystemCommitCharge()
161 mem_inactive = vmtotal.t_vm - vmtotal.t_avm; in GetSystemCommitCharge()