Lines Matching refs:m_err
22 m_err(), in MachVMRegion()
44 m_err.Clear(); in Clear()
74 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot); in SetProtections()
76 …m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i… in SetProtections()
77 if (m_err.Fail()) in SetProtections()
80 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot | VM_PROT_COPY); in SetProtections()
81 if (DNBLogCheckLogBit(LOG_MEMORY_PROTECTIONS) || m_err.Fail()) in SetProtections()
82 …m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i… in SetProtections()
84 if (m_err.Success()) in SetProtections()
106 … m_err = ::mach_vm_protect (m_task, m_protection_addr, m_protection_size, 0, m_data.protection); in RestoreProtections()
107 if (DNBLogCheckLogBit(LOG_MEMORY_PROTECTIONS) || m_err.Fail()) in RestoreProtections()
108 …m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i… in RestoreProtections()
109 if (m_err.Success()) in RestoreProtections()
119 m_err.Clear(); in RestoreProtections()
131 m_err.Clear(); in GetRegionForAddress()
137 …m_err = ::mach_vm_region_recurse (m_task, &m_start, &m_size, &m_depth, (vm_region_recurse_info_t)&… in GetRegionForAddress()
139 const bool failed = m_err.Fail(); in GetRegionForAddress()
143 …m_err.LogThreaded("::mach_vm_region_recurse ( task = 0x%4.4x, address => 0x%8.8llx, size => %llu, … in GetRegionForAddress()