reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
  101   if (!context.target_sp)
  107   context.target_sp->GetSourceManager().FindLinesMatchingRegex(
tools/lldb/source/Core/SearchFilter.cpp
  209   empty_sc.target_sp = m_target_sp;
  222   empty_sc.target_sp = m_target_sp;
  432     empty_sc.target_sp = m_target_sp;
  569     empty_sc.target_sp = m_target_sp;
  778     empty_sc.target_sp = m_target_sp;
tools/lldb/source/Expression/IRExecutionUnit.cpp
  773   Target *target = sc.target_sp.get();
  868     if (sc_list.GetSize() == 0 && sc.target_sp) {
  869       sc.target_sp->GetImages().FindFunctions(spec.name, spec.mask,
  881     if (sc_list.GetSize() == 0 && sc.target_sp) {
  882       sc.target_sp->GetImages().FindSymbolsWithNameAndType(
  903   lldb::TargetSP target_sp = sc.target_sp;
  909   lldb::ProcessSP process_sp = sc.target_sp->GetProcessSP();
  930   lldb::TargetSP target_sp = sc.target_sp;
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
  103     m_parser_vars->m_sym_ctx.target_sp = exe_ctx.GetTargetSP();
  106     m_parser_vars->m_sym_ctx.target_sp = exe_ctx.GetTargetSP();
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
  331       else if (m_sym_ctx.target_sp)
  332         m_sym_ctx.target_sp.get();
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
 1206     sc.target_sp = target_sp;
tools/lldb/source/Symbol/SymbolContext.cpp
   60     target_sp = rhs.target_sp;
   60     target_sp = rhs.target_sp;
   74     target_sp.reset();
  298   if (target_sp)
  383          lhs.target_sp.get() == rhs.target_sp.get() &&
  383          lhs.target_sp.get() == rhs.target_sp.get() &&
  780   if (!target_sp) {
  784   Target &target = *target_sp;
 1035   if (m_target_sp.get() != sc.target_sp.get())
tools/lldb/source/Target/StackFrame.cpp
   96   if (reg_context_sp && !m_sc.target_sp) {
   97     m_sc.target_sp = reg_context_sp->CalculateTarget();
   98     if (m_sc.target_sp)
  124   if (!m_sc.target_sp && reg_context_sp) {
  125     m_sc.target_sp = reg_context_sp->CalculateTarget();
  126     if (m_sc.target_sp)
  281     if (!m_sc.target_sp) {
  282       m_sc.target_sp = CalculateTarget();
  283       if (m_sc.target_sp)
  395           m_sc.line_entry.ApplyFileMappings(m_sc.target_sp);
  402       if (m_sc.target_sp) {
  403         resolved |= m_sc.target_sp->GetImages().ResolveSymbolContextForAddress(
 1869   assert(!m_sc.target_sp || !curr_frame.m_sc.target_sp ||
 1869   assert(!m_sc.target_sp || !curr_frame.m_sc.target_sp ||
 1870          m_sc.target_sp.get() == curr_frame.m_sc.target_sp.get());
 1870          m_sc.target_sp.get() == curr_frame.m_sc.target_sp.get());
tools/lldb/source/Target/Target.cpp
 2324     target = sc_ptr->target_sp.get();
tools/lldb/source/Target/ThreadPlanStepOut.cpp
  448         inlined_sc.target_sp = GetTarget().shared_from_this();