/external/lldb/source/Target/ |
D | ThreadPlan.cpp | 167 m_thread.GetID(), in WillResume() 244 m_thread.GetID(), in ValidatePlan() 251 m_thread.GetID(), in ValidatePlan() 263 m_thread.GetID(), in ShouldStop() 270 m_thread.GetID(), in ShouldStop() 282 m_thread.GetID(), in WillStop() 289 m_thread.GetID(), in WillStop() 301 m_thread.GetID(), in DoPlanExplainsStop() 308 m_thread.GetID(), in DoPlanExplainsStop() 322 m_thread.GetID(), in MischiefManaged() [all …]
|
D | ThreadPlanBase.cpp | 126 …an discarding thread plans for thread tid = 0x%4.4" PRIx64 " (breakpoint hit.)", m_thread.GetID()); in ShouldStop() 154 …se plan discarding thread plans for thread tid = 0x%4.4" PRIx64 " (exception.)", m_thread.GetID()); in ShouldStop() 162 …f("Base plan discarding thread plans for thread tid = 0x%4.4" PRIx64 " (exec.)", m_thread.GetID()); in ShouldStop() 171 …"Base plan discarding thread plans for thread tid = 0x%4.4" PRIx64 " (signal.)", m_thread.GetID()); in ShouldStop()
|
D | Thread.cpp | 266 log->Printf ("%p Thread::Thread(tid = 0x%4.4" PRIx64 ")", this, GetID()); in Thread() 277 log->Printf ("%p Thread::~Thread(tid = 0x%4.4" PRIx64 ")", this, GetID()); in ~Thread() 460 …log->Printf("%p: tid = 0x%" PRIx64 ": stop info = %s (stop_id = %u)\n", this, GetID(), stop_info_s… in SetStopInfo() 688 GetID (), in ShouldStop() 698 GetID (), in ShouldStop() 712 GetID (), in ShouldStop() 723 GetID (), in ShouldStop() 919 … = 0x%4.4" PRIx64 ": returning vote %i (state was suspended or invalid)", GetID(), eVoteNoOpinion); in ShouldReportStop() 926 … PRIx64 ": returning vote %i (temporary state was suspended or invalid)", GetID(), eVoteNoOpinion); in ShouldReportStop() 933 … 0x%4.4" PRIx64 ": returning vote %i (thread didn't stop for a reason.)", GetID(), eVoteNoOpinion); in ShouldReportStop() [all …]
|
D | ThreadPlanStepRange.cpp | 322 log->Printf ("Removing next branch breakpoint: %d.", m_next_branch_bp_sp->GetID()); in ClearNextBranchBreakpoint() 323 GetTarget().RemoveBreakpointByID (m_next_branch_bp_sp->GetID()); in ClearNextBranchBreakpoint() 376 bp_site_id = bp_site->GetID(); in SetNextBranchBreakpoint() 380 m_next_branch_bp_sp->GetID(), in SetNextBranchBreakpoint() 384 m_next_branch_bp_sp->SetThreadID(m_thread.GetID()); in SetNextBranchBreakpoint() 406 else if (!bp_site_sp->IsBreakpointAtThisSite (m_next_branch_bp_sp->GetID())) in NextRangeBreakpointExplainsStop()
|
D | ThreadList.cpp | 123 if (m_threads[idx]->GetID() == tid) in FindThreadByID() 168 if (m_threads[idx]->GetID() == tid) in RemoveThreadByID() 368 thread_sp->GetID (), in ShouldReportStop() 424 (*pos)->GetID()); in ShouldReportRun() 677 m_selected_tid = m_threads[0]->GetID(); in GetSelectedThread() 709 m_selected_tid = selected_thread_sp->GetID(); in SetSelectedThreadByIndexID() 754 const lldb::tid_t tid = (*rhs_pos)->GetID(); in Update() 759 if (m_threads[idx]->GetID() == tid) in Update()
|
D | StackID.cpp | 34 s->Printf(" (Block {0x%8.8" PRIx64 "})", sc.block->GetID()); in Dump() 36 s->Printf(" (Symbol{0x%8.8x})", sc.symbol->GetID()); in Dump()
|
/external/lldb/include/lldb/Core/ |
D | UserID.h | 62 GetID () const { return m_uid; } in GetID() function 96 operator () (const UserID& rhs) const { return m_uid == rhs.GetID(); } in operator() 115 return lhs.GetID() == rhs.GetID(); 120 return lhs.GetID() != rhs.GetID();
|
/external/pdfium/core/src/fxcrt/ |
D | fx_basic_bstring_unittest.cpp | 389 EXPECT_EQ(0u, null_string.GetID()); in TEST() 390 EXPECT_EQ(0u, null_string.GetID(1)); in TEST() 391 EXPECT_EQ(0u, null_string.GetID(-1)); in TEST() 392 EXPECT_EQ(0u, null_string.GetID(-1000000)); in TEST() 395 EXPECT_EQ(0u, empty_string.GetID()); in TEST() 396 EXPECT_EQ(0u, empty_string.GetID(1)); in TEST() 397 EXPECT_EQ(0u, empty_string.GetID(-1)); in TEST() 398 EXPECT_EQ(0u, empty_string.GetID(-1000000)); in TEST() 401 EXPECT_EQ(FXBSTR_ID('a', 'b', 0, 0), short_string.GetID()); in TEST() 402 EXPECT_EQ(FXBSTR_ID('b', 0, 0, 0), short_string.GetID(1)); in TEST() [all …]
|
/external/lldb/source/Plugins/Process/POSIX/ |
D | POSIXThread.cpp | 103 …OSIXThread::%s (tid = %" PRIi64 ") setting thread resume state to running", __FUNCTION__, GetID()); in RefreshStateAfterStop() 127 SetName(Host::GetThreadName(GetProcess()->GetID(), GetID()).c_str()); in GetName() 219 …:%s (tid = %" PRIi64 ") setting thread resume state to %s", __FUNCTION__, GetID(), StateAsCString(… in WillResume() 252 status = monitor.Resume(GetID(), GetResumeSignal()); in Resume() 257 status = monitor.SingleStep(GetID(), GetResumeSignal()); in Resume() 274 __FUNCTION__, message.PrintKind(), GetID()); in Notify() 406 lldb::break_id_t bp_id = bp_site->GetID(); in BreakNotify() 407 if (GetProcess()->GetThreadList().SetSelectedThreadByID(GetID())) in BreakNotify() 464 wp_sp->GetID())); in WatchNotify()
|
D | ProcessPOSIX.cpp | 124 log->Printf ("ProcessPOSIX::%s(pid = %" PRIi64 ")", __FUNCTION__, GetID()); in DoAttachToProcessWithID() 309 else if (kill(GetID(), SIGSTOP)) in DoHalt() 340 error = m_monitor->Detach(thread->GetID()); in DoDetach() 354 if (kill(GetID(), signal)) in DoSignal() 401 if (message.GetTID() == GetID()) in SendMessage() 407 m_monitor->Detach(GetID()); in SendMessage() 426 if (message.GetTID() == GetID()) in SendMessage() 670 user_id_t watchID = wp->GetID(); in EnableWatchpoint() 737 user_id_t watchID = wp->GetID(); in DisableWatchpoint() 820 log->Printf ("ProcessPOSIX::%s() (pid = %" PRIi64 ")", __FUNCTION__, GetID()); in UpdateThreadList() [all …]
|
/external/lldb/source/Breakpoint/ |
D | BreakpointIDList.cpp | 222 … BreakpointID::GetCanonicalReference (&canonical_id_str, bp_id, bp_loc->GetID()); in FindAndReplaceIDRanges() 298 break_id_t cur_bp_id = breakpoint->GetID(); in FindAndReplaceIDRanges() 310 if ((bp_loc->GetID() >= start_loc_id) && (bp_loc->GetID() <= end_loc_id)) in FindAndReplaceIDRanges() 313 … BreakpointID::GetCanonicalReference (&canonical_id_str, cur_bp_id, bp_loc->GetID()); in FindAndReplaceIDRanges() 323 if (bp_loc->GetID() <= end_loc_id) in FindAndReplaceIDRanges() 326 … BreakpointID::GetCanonicalReference (&canonical_id_str, cur_bp_id, bp_loc->GetID()); in FindAndReplaceIDRanges()
|
D | BreakpointLocation.cpp | 206 return m_options_ap->InvokeCallback (context, m_owner.GetID(), GetID()); in InvokeCallback() 208 return m_owner.InvokeCallback (context, GetID()); in InvokeCallback() 513 m_owner.GetTarget().GetProcessSP()->RemoveOwnerFromBreakpointSite (GetBreakpoint().GetID(), in ClearBreakpointSite() 514 GetID(), m_bp_site_sp); in ClearBreakpointSite() 531 BreakpointID::GetCanonicalReference(s, m_owner.GetID(), GetID()); in GetDescription() 654 GetID(), in Dump()
|
D | BreakpointLocationCollection.cpp | 43 … BreakpointLocationSP old_bp_loc = FindByIDPair (bp_loc->GetBreakpoint().GetID(), bp_loc->GetID()); in Add() 72 return m_break_id == bp_loc->GetBreakpoint().GetID() in operator ()() 73 && m_break_loc_id == bp_loc->GetID(); in operator ()()
|
D | WatchpointList.cpp | 45 return wp_sp->GetID(); in Add() 115 return m_watch_id == wp->GetID(); in operator ()() 154 return wp_sp->GetID(); in FindIDByAddress() 165 return wp_sp->GetID(); in FindIDBySpec() 204 IDs.push_back((*pos)->GetID()); in GetWatchpointIDs()
|
D | BreakpointSite.cpp | 73 if (m_owners.GetByIndex(i)->GetBreakpoint().GetID() == bp_id) in IsBreakpointAtThisSite() 86 GetID(), in Dump() 97 s->Printf ("breakpoint site: %d at 0x%8.8" PRIx64, GetID(), GetLoadAddress()); in GetDescription()
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
D | ThreadGDBRemote.cpp | 43 process.GetID(), in ThreadGDBRemote() 44 GetID()); in ThreadGDBRemote() 52 process_sp ? process_sp->GetID() : LLDB_INVALID_PROCESS_ID, in ~ThreadGDBRemote() 53 GetID()); in ~ThreadGDBRemote()
|
D | ProcessGDBRemote.cpp | 752 if (GetID() == LLDB_INVALID_PROCESS_ID) in DoLaunch() 864 if (GetID() != LLDB_INVALID_PROCESS_ID) in DidLaunchOrAttach() 1357 log->Printf ("ProcessGDBRemote::%s (pid = %" PRIu64 ")", __FUNCTION__, GetID()); in UpdateThreadList() 1384 thread_sp->GetID()); in UpdateThreadList() 1393 thread_sp->GetID()); in UpdateThreadList() 1436 if (GetID() == LLDB_INVALID_PROCESS_ID) in SetThreadStopInfo() 1488 thread_sp->GetID()); in SetThreadStopInfo() 1616 …sp->SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID (*thread_sp, bp_site_sp->GetID())); in SetThreadStopInfo() 1667 …sp->SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID (*thread_sp, bp_site_sp->GetID())); in SetThreadStopInfo() 2208 user_id_t site_id = bp_site->GetID(); in EnableBreakpointSite() [all …]
|
/external/lldb/source/Plugins/OperatingSystem/Python/ |
D | OperatingSystemPython.cpp | 141 …sterInfo() fetching thread register definitions from python for pid %" PRIu64, m_process->GetID()); in GetDynamicRegisterInfo() 186 …Python::UpdateThreadList() fetching thread data from python for pid %" PRIu64, m_process->GetID()); in UpdateThreadList() 333 thread->GetID(), in CreateRegisterContextForThread() 344 thread->GetID(), in CreateRegisterContextForThread() 347 …eg_context_data(m_interpreter->OSPlugin_RegisterContextData (m_python_object_sp, thread->GetID())); in CreateRegisterContextForThread() 367 …RegisterContextForThread (tid = 0x%" PRIx64 ") forcing a dummy register context", thread->GetID()); in CreateRegisterContextForThread()
|
/external/lldb/source/Symbol/ |
D | Block.cpp | 92 s->Printf(", parent = {0x%8.8" PRIx64 "}", parent_block->GetID()); in Dump() 139 if (block_id == GetID()) in FindBlockByID() 197 s->Printf(", Block{0x%8.8" PRIx64 "}", GetID()); in DumpSymbolContext() 414 GetID(), in AddRange() 418 parent_block->GetID(), in AddRange() 419 function->GetID(), in AddRange() 425 GetID(), in AddRange() 429 parent_block->GetID(), in AddRange() 430 function->GetID(), in AddRange()
|
D | Type.cpp | 68 Type *resolved_type = m_symbol_file.ResolveTypeUID (GetID()); in GetType() 286 s->Printf("Type{0x%8.8" PRIx64 "} ", GetID()); in DumpValue() 524 … GetSymbolFile()->GetClangDeclContextContainingTypeUID(GetID())); in ResolveClangType() 569 … GetSymbolFile()->GetClangDeclContextContainingTypeUID(GetID())); in ResolveClangType() 672 lldb::user_id_t a_uid = a.GetID(); in Compare() 673 lldb::user_id_t b_uid = b.GetID(); in Compare() 699 … typedef_type->GetSymbolFile()->GetClangDeclContextContainingTypeUID(typedef_type->GetID()));
|
/external/lldb/scripts/Python/interface/ |
D | SBBreakpoint.i | 96 GetID () const; 215 __swig_getmethods__["id"] = GetID 216 …if _newclass: id = property(GetID, None, doc='''A read only property that returns the ID of this b…
|
/external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
D | ItaniumABILanguageRuntime.cpp | 161 type_sp->GetID(), in GetDynamicTypeAndAddress() 180 type_sp->GetID(), in GetDynamicTypeAndAddress() 197 type_sp->GetID(), in GetDynamicTypeAndAddress() 459 … m_cxx_exception_bp_sp->GetID()); in ExceptionBreakpointsExplainStop()
|
/external/lldb/source/Commands/ |
D | CommandObjectThread.cpp | 536 process->GetThreadList().SetSelectedThreadByID (thread->GetID()); in DoExecute() 550 process->GetThreadList().SetSelectedThreadByID (thread->GetID()); in DoExecute() 552 …result.AppendMessageWithFormat ("Process %" PRIu64 " %s\n", process->GetID(), StateAsCString (stat… in DoExecute() 730 result.AppendMessageWithFormat ("in process %" PRIu64 "\n", process->GetID()); in DoExecute() 748 …t ("Resuming thread 0x%4.4" PRIx64 " in process %" PRIu64 "\n", thread->GetID(), process->GetID()); in DoExecute() 761 result.AppendMessageWithFormat ("Process %" PRIu64 " resuming\n", process->GetID()); in DoExecute() 767 …result.AppendMessageWithFormat ("Process %" PRIu64 " %s\n", process->GetID(), StateAsCString (stat… in DoExecute() 1092 result.AppendMessageWithFormat ("Process %" PRIu64 " resuming\n", process->GetID()); in DoExecute() 1098 …result.AppendMessageWithFormat ("Process %" PRIu64 " %s\n", process->GetID(), StateAsCString (stat… in DoExecute() 1196 process->GetThreadList().SetSelectedThreadByID(new_thread->GetID(), true); in DoExecute()
|
/external/lldb/source/Core/ |
D | Section.cpp | 181 user_id_t a_sect_uid = a.GetID(); in Compare() 182 user_id_t b_sect_uid = b.GetID(); in Compare() 205 s->Printf("0x%8.8" PRIx64 " %-16s ", GetID(), GetSectionTypeAsCString (m_type)); in Dump() 367 if ((*sect_iter)->GetID() == sect_id) in ReplaceSection() 441 if ((*sect_iter)->GetID() == sect_id) in FindSectionByID()
|
/external/lldb/source/API/ |
D | SBWatchpoint.cpp | 68 SBWatchpoint::GetID () in GetID() function in SBWatchpoint 75 watch_id = watchpoint_sp->GetID(); in GetID() 158 watchpoint_sp->GetTarget().DisableWatchpointByID(watchpoint_sp->GetID()); in SetEnabled()
|