Searched refs:GetID (Results 1 - 25 of 101) sorted by relevance

12345

/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUserID.h62 GetID () const { return m_uid; } function in struct:lldb_private::UserID
96 operator () (const UserID& rhs) const { return m_uid == rhs.GetID(); }
115 return lhs.GetID() == rhs.GetID();
120 return lhs.GetID() != rhs.GetID();
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Breakpoint/
H A DStoppoint.cpp37 Stoppoint::GetID () const function in class:Stoppoint
H A DBreakpointLocationCollection.cpp43 BreakpointLocationSP old_bp_loc = FindByIDPair (bp_loc->GetBreakpoint().GetID(), bp_loc->GetID());
72 return m_break_id == bp_loc->GetBreakpoint().GetID()
73 && m_break_loc_id == bp_loc->GetID();
H A DBreakpointIDList.cpp222 BreakpointID::GetCanonicalReference (&canonical_id_str, bp_id, bp_loc->GetID());
298 break_id_t cur_bp_id = breakpoint->GetID();
310 if ((bp_loc->GetID() >= start_loc_id) && (bp_loc->GetID() <= end_loc_id))
313 BreakpointID::GetCanonicalReference (&canonical_id_str, cur_bp_id, bp_loc->GetID());
323 if (bp_loc->GetID() <= end_loc_id)
326 BreakpointID::GetCanonicalReference (&canonical_id_str, cur_bp_id, bp_loc->GetID());
H A DWatchpointList.cpp45 return wp_sp->GetID();
115 return m_watch_id == wp->GetID();
154 return wp_sp->GetID();
165 return wp_sp->GetID();
204 IDs.push_back((*pos)->GetID());
H A DBreakpointSite.cpp73 if (m_owners.GetByIndex(i)->GetBreakpoint().GetID() == bp_id)
86 GetID(),
97 s->Printf ("breakpoint site: %d at 0x%8.8" PRIx64, GetID(), GetLoadAddress());
H A DBreakpointLocation.cpp219 return m_options_ap->InvokeCallback (context, m_owner.GetID(), GetID());
221 return m_owner.InvokeCallback (context, GetID());
525 m_owner.GetTarget().GetProcessSP()->RemoveOwnerFromBreakpointSite (GetBreakpoint().GetID(),
526 GetID(), m_bp_site_sp);
543 BreakpointID::GetCanonicalReference(s, m_owner.GetID(), GetID());
690 GetID(),
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
H A DUserID.cpp21 strm.Printf("{0x%8.8" PRIx64 "}", uid.GetID());
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.cpp43 log->Printf("tid %lu resume_state = %s", GetID(),
54 process->m_suspend_tids.push_back(GetID());
57 process->m_run_tids.push_back(GetID());
62 process->m_step_tids.push_back(GetID());
H A DProcessFreeBSD.cpp137 error = m_monitor->Detach(GetID());
175 log->Printf("process %lu resuming (%s)", GetID(), do_step ? "step" : "continue");
177 m_monitor->SingleStep(GetID(), resume_signal);
179 m_monitor->Resume(GetID(), resume_signal);
189 log->Printf("ProcessFreeBSD::%s (pid = %" PRIu64 ")", __FUNCTION__, GetID());
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DStoppoint.h46 GetID () const;
H A DStoppointLocation.h111 GetID () const function in class:lldb_private::StoppointLocation
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlan.cpp167 m_thread.GetID(),
244 m_thread.GetID(),
251 m_thread.GetID(),
263 m_thread.GetID(),
270 m_thread.GetID(),
282 m_thread.GetID(),
289 m_thread.GetID(),
301 m_thread.GetID(),
308 m_thread.GetID(),
322 m_thread.GetID(),
[all...]
H A DThreadPlanBase.cpp126 log->Printf("Base plan discarding thread plans for thread tid = 0x%4.4" PRIx64 " (breakpoint hit.)", m_thread.GetID());
154 log->Printf("Base plan discarding thread plans for thread tid = 0x%4.4" PRIx64 " (exception.)", m_thread.GetID());
162 log->Printf("Base plan discarding thread plans for thread tid = 0x%4.4" PRIx64 " (exec.)", m_thread.GetID());
171 log->Printf("Base plan discarding thread plans for thread tid = 0x%4.4" PRIx64 " (signal.)", m_thread.GetID());
H A DStackID.cpp34 s->Printf(" (Block {0x%8.8" PRIx64 "})", sc.block->GetID());
36 s->Printf(" (Symbol{0x%8.8x})", sc.symbol->GetID());
H A DThreadPlanStepRange.cpp343 log->Printf ("Removing next branch breakpoint: %d.", m_next_branch_bp_sp->GetID());
344 GetTarget().RemoveBreakpointByID (m_next_branch_bp_sp->GetID());
397 bp_site_id = bp_site->GetID();
401 m_next_branch_bp_sp->GetID(),
405 m_next_branch_bp_sp->SetThreadID(m_thread.GetID());
427 else if (!bp_site_sp->IsBreakpointAtThisSite (m_next_branch_bp_sp->GetID()))
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp45 process.GetID(),
46 GetID());
54 process_sp ? process_sp->GetID() : LLDB_INVALID_PROCESS_ID,
55 GetID());
207 bool read_all_registers_at_once = !gdb_process->GetGDBRemote().GetpPacketSupported (GetID());
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DPOSIXThread.cpp116 log->Printf ("POSIXThread::%s (tid = %" PRIi64 ") setting thread resume state to running", __FUNCTION__, GetID());
140 SetName(Host::GetThreadName(GetProcess()->GetID(), GetID()).c_str());
246 if (monitor.ReadThreadPointer (GetID(), addr))
274 log->Printf ("POSIXThread::%s (tid = %" PRIi64 ") setting thread resume state to %s", __FUNCTION__, GetID(), StateAsCString(resume_state));
307 status = monitor.Resume(GetID(), GetResumeSignal());
312 status = monitor.SingleStep(GetID(), GetResumeSignal());
329 __FUNCTION__, message.PrintKind(), GetID());
466 lldb::break_id_t bp_id = bp_site->GetID();
514 wp_sp->GetID()));
[all...]
H A DProcessPOSIX.cpp124 log->Printf ("ProcessPOSIX::%s(pid = %" PRIi64 ")", __FUNCTION__, GetID());
308 else if (kill(GetID(), SIGSTOP))
325 if (kill(GetID(), signal))
363 platform_sp->GetProcessInfo(GetID(), process_info);
399 if (message.GetTID() == GetID())
405 m_monitor->Detach(GetID());
424 if (message.GetTID() == GetID())
677 user_id_t watchID = wp->GetID();
744 user_id_t watchID = wp->GetID();
827 log->Printf ("ProcessPOSIX::%s() (pid = %" PRIi64 ")", __FUNCTION__, GetID());
[all...]
H A DRegisterContextPOSIXProcessMonitor_mips64.cpp42 return monitor.ReadGPR(m_thread.GetID(), &m_gpr_mips64, GetGPRSize());
56 return monitor.WriteGPR(m_thread.GetID(), &m_gpr_mips64, GetGPRSize());
71 return monitor.ReadRegisterValue(m_thread.GetID(),
126 return monitor.WriteRegisterValue(m_thread.GetID(),
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp141 log->Printf ("OperatingSystemPython::GetDynamicRegisterInfo() fetching thread register definitions from python for pid %" PRIu64, m_process->GetID());
186 log->Printf ("OperatingSystemPython::UpdateThreadList() fetching thread data from python for pid %" PRIu64, m_process->GetID());
353 thread->GetID(),
364 thread->GetID(),
367 PythonString reg_context_data(m_interpreter->OSPlugin_RegisterContextData (m_python_object_sp, thread->GetID()));
387 log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ") forcing a dummy register context", thread->GetID());
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBreakpointLocation.h32 GetID ();
H A DSBWatchpoint.h39 GetID ();
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/
H A DQueue.h60 GetID ();
75 /// This is currently the same as GetID(). If it changes in the future,
79 /// Both the GetID and GetIndexID are being retained for Queues to
81 /// possibility of GetID changing to a different source in the future.
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.cpp50 log->Printf ("%p HistoryThread::~HistoryThread (tid=0x%" PRIx64 ")", this, GetID());

Completed in 374 milliseconds

12345