Lines Matching refs:target_sp
22 IRMemoryMap::IRMemoryMap(lldb::TargetSP target_sp) : m_target_wp(target_sp) { in IRMemoryMap() argument
23 if (target_sp) in IRMemoryMap()
24 m_process_wp = target_sp->GetProcessSP(); in IRMemoryMap()
58 lldb::TargetSP target_sp = m_target_wp.lock(); in FindSpace() local
233 lldb::TargetSP target_sp = m_target_wp.lock(); in GetByteOrder() local
235 if (target_sp) in GetByteOrder()
236 return target_sp->GetArchitecture().GetByteOrder(); in GetByteOrder()
247 lldb::TargetSP target_sp = m_target_wp.lock(); in GetAddressByteSize() local
249 if (target_sp) in GetAddressByteSize()
250 return target_sp->GetArchitecture().GetAddressByteSize(); in GetAddressByteSize()
261 lldb::TargetSP target_sp = m_target_wp.lock(); in GetBestExecutionContextScope() local
263 if (target_sp) in GetBestExecutionContextScope()
264 return target_sp.get(); in GetBestExecutionContextScope()
638 lldb::TargetSP target_sp = m_target_wp.lock(); in ReadMemory() local
640 if (target_sp) { in ReadMemory()
642 target_sp->ReadMemory(absolute_address, bytes, size, error, true); in ReadMemory()