Lines Matching refs:m_data

23   memset(&m_data, 0, sizeof(m_data));  in MachVMRegion()
38 memset(&m_data, 0, sizeof(m_data)); in Clear()
95 if (m_curr_protection != m_data.protection && m_protection_size > 0) { in RestoreProtections()
97 m_data.protection); in RestoreProtections()
102 (uint64_t)m_protection_size, 0, m_data.protection); in RestoreProtections()
106 m_curr_protection = m_data.protection; in RestoreProtections()
128 (vm_region_recurse_info_t)&m_data, &info_size); in GetRegionForAddress()
138 &m_data, info_size, (uint64_t)addr); in GetRegionForAddress()
156 m_data.protection, m_data.max_protection, m_data.inheritance, in GetRegionForAddress()
157 (uint64_t)m_data.offset, m_data.user_tag, m_data.ref_count, in GetRegionForAddress()
158 m_data.shadow_depth, m_data.external_pager, in GetRegionForAddress()
159 m_data.share_mode, m_data.is_submap, m_data.behavior, in GetRegionForAddress()
160 m_data.object_id, m_data.user_wired_count); in GetRegionForAddress()
162 m_curr_protection = m_data.protection; in GetRegionForAddress()
177 if ((m_data.protection & VM_PROT_READ) == VM_PROT_READ) in GetDNBPermissions()
179 if ((m_data.protection & VM_PROT_WRITE) == VM_PROT_WRITE) in GetDNBPermissions()
181 if ((m_data.protection & VM_PROT_EXECUTE) == VM_PROT_EXECUTE) in GetDNBPermissions()
188 if (m_data.user_tag == VM_MEMORY_STACK) { in GetMemoryTypes()
189 if (m_data.protection == VM_PROT_NONE) { in GetMemoryTypes()
195 if (m_data.user_tag == VM_MEMORY_MALLOC) { in GetMemoryTypes()
196 if (m_data.protection == VM_PROT_NONE) in GetMemoryTypes()
198 else if (m_data.share_mode == SM_EMPTY) in GetMemoryTypes()
203 if (m_data.user_tag == VM_MEMORY_MALLOC_NANO || in GetMemoryTypes()
204 m_data.user_tag == VM_MEMORY_MALLOC_TINY || in GetMemoryTypes()
205 m_data.user_tag == VM_MEMORY_MALLOC_SMALL || in GetMemoryTypes()
206 m_data.user_tag == VM_MEMORY_MALLOC_LARGE || in GetMemoryTypes()
207 m_data.user_tag == VM_MEMORY_MALLOC_LARGE_REUSED || in GetMemoryTypes()
208 m_data.user_tag == VM_MEMORY_MALLOC_LARGE_REUSABLE || in GetMemoryTypes()
209 m_data.user_tag == VM_MEMORY_MALLOC_HUGE || in GetMemoryTypes()
210 m_data.user_tag == VM_MEMORY_REALLOC || in GetMemoryTypes()
211 m_data.user_tag == VM_MEMORY_SBRK) { in GetMemoryTypes()
213 if (m_data.user_tag == VM_MEMORY_MALLOC_TINY) { in GetMemoryTypes()
216 if (m_data.user_tag == VM_MEMORY_MALLOC_LARGE) { in GetMemoryTypes()
219 if (m_data.user_tag == VM_MEMORY_MALLOC_SMALL) { in GetMemoryTypes()