Home | History | Annotate | Download | only in Expression

Lines Matching refs:target_sp

21 IRMemoryMap::IRMemoryMap (lldb::TargetSP target_sp) :
22 m_target_wp(target_sp)
24 if (target_sp)
25 m_process_wp = target_sp->GetProcessSP();
52 lldb::TargetSP target_sp = m_target_wp.lock();
73 switch (target_sp->GetArchitecture().GetAddressByteSize())
163 lldb::TargetSP target_sp = m_target_wp.lock();
165 if (target_sp)
166 return target_sp->GetArchitecture().GetByteOrder();
179 lldb::TargetSP target_sp = m_target_wp.lock();
181 if (target_sp)
182 return target_sp->GetArchitecture().GetAddressByteSize();
195 lldb::TargetSP target_sp = m_target_wp.lock();
197 if (target_sp)
198 return target_sp.get();
561 target_sp = m_target_wp.lock();
563 if (target_sp)
566 target_sp->ReadMemory(absolute_address, false, bytes, size, error);