Home
last modified time | relevance | path

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

/external/lldb/tools/debugserver/source/MacOSX/
DMachTask.cpp360 struct vm_statistics vm_stats; in GetProfileData() local
369 …Type, task, task_info, m_process->GetCPUType(), m_process->ProcessID(), vm_stats, physical_memory,… in GetProfileData()
430 profile_data_stream << "wired:" << vm_stats.wire_count * pagesize << ';'; in GetProfileData()
431 profile_data_stream << "active:" << vm_stats.active_count * pagesize << ';'; in GetProfileData()
432 profile_data_stream << "inactive:" << vm_stats.inactive_count * pagesize << ';'; in GetProfileData()
433 … uint64_t total_used_count = vm_stats.wire_count + vm_stats.inactive_count + vm_stats.active_count; in GetProfileData()
435 profile_data_stream << "free:" << vm_stats.free_count * pagesize << ';'; in GetProfileData()
DMachVMMemory.h31 …c_info ti, cpu_type_t cputype, nub_process_t pid, vm_statistics_data_t &vm_stats, uint64_t &physic…
DMachVMMemory.cpp516 …c_info ti, cpu_type_t cputype, nub_process_t pid, vm_statistics_data_t &vm_stats, uint64_t &physic… in GetMemoryProfile() argument
525 host_statistics(localHost, HOST_VM_INFO, (host_info_t)&vm_stats, &count); in GetMemoryProfile()
526 vm_stats.wire_count += GetStolenPages(task); in GetMemoryProfile()