Searched refs:vm_info (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachVMMemory.cpp | 39 task_vm_info_data_t vm_info; in PageSize() local 40 kr = task_info(task, TASK_VM_INFO, (task_info_t)&vm_info, &info_count); in PageSize() 45 (int)vm_info.page_size); in PageSize() 46 m_page_size = vm_info.page_size; in PageSize() 138 task_vm_info_data_t vm_info; in GetMemoryProfile() local 141 kr = task_info(task, TASK_VM_INFO_PURGEABLE, (task_info_t)&vm_info, &info_count); in GetMemoryProfile() 144 anonymous = vm_info.internal + vm_info.compressed - vm_info.purgeable_volatile_pmap; in GetMemoryProfile() 147 phys_footprint = vm_info.phys_footprint; in GetMemoryProfile()
|
/external/cros/system_api/dbus/vm_concierge/ |
D | service.proto | 122 // If true, the VM was started successfully. |vm_info| will have non-default 130 VmInfo vm_info = 3; field 170 VmInfo vm_info = 2; field
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_mac.cpp | 1101 __sanitizer_task_vm_info vm_info = {} /* zero initialize */; in GetTaskInfoMaxAddress() local 1103 int err = task_info(mach_task_self(), TASK_VM_INFO, (int *)&vm_info, &count); in GetTaskInfoMaxAddress() 1104 return err ? 0 : vm_info.max_address; in GetTaskInfoMaxAddress()
|