HomeSort by relevance Sort by last modified time
    Searched refs:bp_loc_sp (Results 1 - 15 of 15) sorted by null

  /external/lldb/source/Breakpoint/
BreakpointLocationList.cpp 44 BreakpointLocationSP bp_loc_sp (new BreakpointLocation (bp_loc_id, m_owner, addr));
45 m_locations.push_back (bp_loc_sp);
46 m_address_to_location[addr] = bp_loc_sp;
47 return bp_loc_sp;
69 BreakpointLocationSP bp_loc_sp = FindByAddress (addr); local
70 if (bp_loc_sp)
72 return bp_loc_sp->GetID();
80 BreakpointLocationSP bp_loc_sp; local
87 bp_loc_sp = m_locations[idx];
89 return bp_loc_sp;
116 BreakpointLocationSP bp_loc_sp; local
163 BreakpointLocationSP bp_loc_sp; local
174 BreakpointLocationSP bp_loc_sp; local
    [all...]
BreakpointResolverAddress.cpp 81 BreakpointLocationSP bp_loc_sp(m_breakpoint->AddLocation(m_addr));
82 if (bp_loc_sp && !m_breakpoint->IsInternal())
85 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose);
BreakpointResolverFileRegex.cpp 85 BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(line_start));
86 if (log && bp_loc_sp && !m_breakpoint->IsInternal())
89 bp_loc_sp->GetDescription (&s, lldb::eDescriptionLevelVerbose);
BreakpointResolverFileLine.cpp 198 BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(line_start));
199 if (log && bp_loc_sp && !m_breakpoint->IsInternal())
202 bp_loc_sp->GetDescription (&s, lldb::eDescriptionLevelVerbose);
BreakpointResolverName.cpp 305 BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(break_addr, &new_location));
306 if (bp_loc_sp && new_location && !m_breakpoint->IsInternal())
311 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose);
Breakpoint.cpp 785 lldb::BreakpointLocationSP bp_loc_sp; local
790 bp_loc_sp = data->m_locations.GetByIndex(bp_loc_idx);
793 return bp_loc_sp;
BreakpointSite.cpp 42 BreakpointLocationSP bp_loc_sp; local
  /external/lldb/source/Target/
StopInfo.cpp 149 BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(0); local
150 if (bp_loc_sp)
152 m_break_id = bp_loc_sp->GetBreakpoint().GetID();
153 m_was_one_shot = bp_loc_sp->GetBreakpoint().IsOneShot();
382 lldb::BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(j); local
383 if (bp_loc_sp->GetBreakpoint().IsInternal())
413 lldb::BreakpointLocationSP bp_loc_sp = site_locations.GetByIndex(j); local
416 if (!bp_loc_sp->IsEnabled() || !bp_loc_sp->GetBreakpoint().IsEnabled())
421 if (!bp_loc_sp->ValidForThisThread(thread_sp.get())
    [all...]
  /external/lldb/include/lldb/Breakpoint/
BreakpointLocationCollection.h 30 /// Add the breakpoint \a bp_loc_sp to the list.
40 Add (const lldb::BreakpointLocationSP& bp_loc_sp);
BreakpointLocationList.h 229 /// Add the breakpoint \a bp_loc_sp to the list.
252 RemoveLocation (const lldb::BreakpointLocationSP &bp_loc_sp);
  /external/lldb/source/Commands/
CommandObjectBreakpointCommand.cpp 564 BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID()));
567 if (bp_loc_sp)
568 bp_options = bp_loc_sp->GetLocationOptions();
733 BreakpointLocationSP bp_loc_sp (bp->FindLocationByID (cur_bp_id.GetLocationID()));
734 if (bp_loc_sp)
735 bp_loc_sp->ClearCallback();
    [all...]
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwin.cpp 401 lldb::BreakpointLocationSP bp_loc_sp (bp_site->GetOwnerAtIndex (0));
402 if (bp_loc_sp)
403 bp_is_thumb = bp_loc_sp->GetAddress().GetAddressClass () == eAddressClassCodeAlternateISA;
    [all...]
  /external/lldb/include/lldb/Interpreter/
ScriptInterpreter.h 90 const lldb::BreakpointLocationSP &bp_loc_sp);
  /external/lldb/source/API/
SBThread.cpp 225 BreakpointLocationSP bp_loc_sp (bp_site_sp->GetOwnerAtIndex (bp_index));
226 if (bp_loc_sp)
231 return bp_loc_sp->GetID();
236 return bp_loc_sp->GetBreakpoint().GetID();
    [all...]
  /external/lldb/source/Interpreter/
ScriptInterpreterPython.cpp     [all...]

Completed in 519 milliseconds