Searched defs:bp_id (Results 1 - 8 of 8) sorted by relevance
/external/lldb/include/lldb/Breakpoint/ |
H A D | BreakpointID.h | 30 BreakpointID (lldb::break_id_t bp_id = LLDB_INVALID_BREAK_ID, 49 SetID (lldb::break_id_t bp_id, lldb::break_id_t loc_id) argument 51 m_break_id = bp_id; 56 SetBreakpointID (lldb::break_id_t bp_id) argument 58 m_break_id = bp_id;
|
/external/lldb/source/Breakpoint/ |
H A D | BreakpointID.cpp | 25 BreakpointID::BreakpointID (break_id_t bp_id, break_id_t loc_id) : argument 26 m_break_id (bp_id), 60 break_id_t bp_id; local 62 BreakpointID::ParseCanonicalReference (str, &bp_id, &loc_id); 64 if (bp_id == LLDB_INVALID_BREAK_ID) 85 BreakpointID::GetCanonicalReference (Stream *s, break_id_t bp_id, break_id_t loc_id) argument 87 if (bp_id == LLDB_INVALID_BREAK_ID) 90 s->Printf("%i", bp_id); 92 s->Printf("%i.%i", bp_id, loc_id);
|
H A D | BreakpointLocationCollection.cpp | 49 BreakpointLocationCollection::Remove (lldb::break_id_t bp_id, lldb::break_id_t bp_loc_id) argument 51 collection::iterator pos = GetIDPairIterator(bp_id, bp_loc_id); // Predicate
|
H A D | BreakpointIDList.cpp | 66 BreakpointIDList::AddBreakpointID (BreakpointID bp_id) argument 68 m_breakpoint_ids.push_back (bp_id); 77 break_id_t bp_id; local 80 bool success = BreakpointID::ParseCanonicalReference (bp_id_str, &bp_id, &loc_id); 84 temp_bp_id.SetID (bp_id, loc_id); 92 BreakpointIDList::FindBreakpointID (BreakpointID &bp_id, size_t *position) argument 97 if (tmp_id.GetBreakpointID() == bp_id.GetBreakpointID() 98 && tmp_id.GetLocationID() == bp_id.GetLocationID()) 112 break_id_t bp_id; local 115 if (BreakpointID::ParseCanonicalReference (bp_id_str, &bp_id, 132 break_id_t bp_id; local 205 break_id_t bp_id; local [all...] |
H A D | BreakpointSite.cpp | 68 BreakpointSite::IsBreakpointAtThisSite (lldb::break_id_t bp_id) argument 73 if (m_owners.GetByIndex(i)->GetBreakpoint().GetID() == bp_id)
|
H A D | BreakpointSiteList.cpp | 176 BreakpointSiteList::BreakpointSiteContainsBreakpoint (lldb::break_id_t bp_site_id, lldb::break_id_t bp_id) argument 181 return pos->second->IsBreakpointAtThisSite (bp_id);
|
/external/lldb/source/Plugins/Process/POSIX/ |
H A D | POSIXThread.cpp | 406 lldb::break_id_t bp_id = bp_site->GetID(); local 408 SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id));
|
/external/lldb/source/API/ |
H A D | SBTarget.cpp | 1640 SBTarget::BreakpointDelete (break_id_t bp_id) argument 1649 result = target_sp->RemoveBreakpointByID (bp_id); 1654 log->Printf ("SBTarget(%p)::BreakpointDelete (bp_id=%d) => %i", target_sp.get(), (uint32_t) bp_id, result); 1661 SBTarget::FindBreakpointByID (break_id_t bp_id) argument 1667 if (target_sp && bp_id != LLDB_INVALID_BREAK_ID) 1670 *sb_breakpoint = target_sp->GetBreakpointByID (bp_id); 1675 log->Printf ("SBTarget(%p)::FindBreakpointByID (bp_id=%d) => SBBreakpoint(%p)", 1676 target_sp.get(), (uint32_t) bp_id, sb_breakpoint.get()); 1788 log->Printf ("SBTarget(%p)::FindWatchpointByID (bp_id [all...] |
Completed in 113 milliseconds