/external/lldb/source/Breakpoint/ |
D | BreakpointLocationList.cpp | 44 BreakpointLocationSP bp_loc_sp (new BreakpointLocation (bp_loc_id, m_owner, addr)); in Create() local 45 m_locations.push_back (bp_loc_sp); in Create() 46 m_address_to_location[addr] = bp_loc_sp; in Create() 47 return bp_loc_sp; in Create() 69 BreakpointLocationSP bp_loc_sp = FindByAddress (addr); in FindIDByAddress() local 70 if (bp_loc_sp) in FindIDByAddress() 72 return bp_loc_sp->GetID(); in FindIDByAddress() 80 BreakpointLocationSP bp_loc_sp; in FindByID() local 87 bp_loc_sp = m_locations[idx]; in FindByID() 89 return bp_loc_sp; in FindByID() [all …]
|
D | BreakpointResolverAddress.cpp | 81 BreakpointLocationSP bp_loc_sp(m_breakpoint->AddLocation(m_addr)); in SearchCallback() local 82 if (bp_loc_sp && !m_breakpoint->IsInternal()) in SearchCallback() 85 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
|
D | BreakpointResolverFileRegex.cpp | 85 BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(line_start)); in SearchCallback() local 86 if (log && bp_loc_sp && !m_breakpoint->IsInternal()) in SearchCallback() 89 bp_loc_sp->GetDescription (&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
|
D | BreakpointResolverFileLine.cpp | 198 BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(line_start)); in SearchCallback() local 199 if (log && bp_loc_sp && !m_breakpoint->IsInternal()) in SearchCallback() 202 bp_loc_sp->GetDescription (&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
|
D | BreakpointResolverName.cpp | 305 … BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(break_addr, &new_location)); in SearchCallback() local 306 if (bp_loc_sp && new_location && !m_breakpoint->IsInternal()) in SearchCallback() 311 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
|
D | Breakpoint.cpp | 785 lldb::BreakpointLocationSP bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent() local 790 bp_loc_sp = data->m_locations.GetByIndex(bp_loc_idx); in GetBreakpointLocationAtIndexFromEvent() 793 return bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent()
|
D | BreakpointSite.cpp | 42 BreakpointLocationSP bp_loc_sp; in ~BreakpointSite() local
|
/external/lldb/source/Target/ |
D | StopInfo.cpp | 149 BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(0); in StoreBPInfo() local 150 if (bp_loc_sp) in StoreBPInfo() 152 m_break_id = bp_loc_sp->GetBreakpoint().GetID(); in StoreBPInfo() 153 m_was_one_shot = bp_loc_sp->GetBreakpoint().IsOneShot(); in StoreBPInfo() 382 … lldb::BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(j); in PerformAction() local 383 if (bp_loc_sp->GetBreakpoint().IsInternal()) in PerformAction() 413 lldb::BreakpointLocationSP bp_loc_sp = site_locations.GetByIndex(j); in PerformAction() local 416 if (!bp_loc_sp->IsEnabled() || !bp_loc_sp->GetBreakpoint().IsEnabled()) in PerformAction() 421 if (!bp_loc_sp->ValidForThisThread(thread_sp.get())) in PerformAction() 427 if (bp_loc_sp->GetConditionText() != NULL) in PerformAction() [all …]
|
/external/lldb/source/Commands/ |
D | CommandObjectBreakpointCommand.cpp | 564 … BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute() local 567 if (bp_loc_sp) in DoExecute() 568 bp_options = bp_loc_sp->GetLocationOptions(); in DoExecute() 733 … BreakpointLocationSP bp_loc_sp (bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute() local 734 if (bp_loc_sp) in DoExecute() 735 bp_loc_sp->ClearCallback(); in DoExecute() 835 … BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute() local 836 if (bp_loc_sp) in DoExecute() 837 bp_options = bp_loc_sp->GetOptionsNoCreate(); in DoExecute()
|
/external/lldb/include/lldb/Breakpoint/ |
D | BreakpointLocationCollection.h | 40 Add (const lldb::BreakpointLocationSP& bp_loc_sp);
|
D | BreakpointLocationList.h | 252 RemoveLocation (const lldb::BreakpointLocationSP &bp_loc_sp);
|
/external/lldb/source/API/ |
D | SBThread.cpp | 225 BreakpointLocationSP bp_loc_sp (bp_site_sp->GetOwnerAtIndex (bp_index)); in GetStopReasonDataAtIndex() local 226 if (bp_loc_sp) in GetStopReasonDataAtIndex() 231 return bp_loc_sp->GetID(); in GetStopReasonDataAtIndex() 236 return bp_loc_sp->GetBreakpoint().GetID(); in GetStopReasonDataAtIndex()
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
D | PlatformDarwin.cpp | 401 lldb::BreakpointLocationSP bp_loc_sp (bp_site->GetOwnerAtIndex (0)); in GetSoftwareBreakpointTrapOpcode() local 402 if (bp_loc_sp) in GetSoftwareBreakpointTrapOpcode() 403 … bp_is_thumb = bp_loc_sp->GetAddress().GetAddressClass () == eAddressClassCodeAlternateISA; in GetSoftwareBreakpointTrapOpcode()
|
/external/lldb/include/lldb/Interpreter/ |
D | ScriptInterpreter.h | 90 const lldb::BreakpointLocationSP &bp_loc_sp);
|
/external/lldb/scripts/Python/ |
D | python-wrapper.swig | 215 const lldb::BreakpointLocationSP& bp_loc_sp 219 lldb::SBBreakpointLocation sb_bp_loc(bp_loc_sp);
|
/external/lldb/source/Interpreter/ |
D | ScriptInterpreterPython.cpp | 2242 const BreakpointLocationSP bp_loc_sp (breakpoint_sp->FindLocationByID (break_loc_id)); in BreakpointCallbackFunction() local 2244 if (stop_frame_sp && bp_loc_sp) in BreakpointCallbackFunction() 2252 bp_loc_sp); in BreakpointCallbackFunction()
|