/external/lldb/include/lldb/API/ |
H A D | SBThread.h | 1 //===-- SBThread.h ----------------------------------------------*- C++ -*-===// 21 class SBThread class in namespace:lldb 36 SBThread (); 38 SBThread (const lldb::SBThread &thread); 40 SBThread (const lldb::ThreadSP& lldb_object_sp); 42 ~SBThread(); 132 /// be allowed to run. If any of the SBThread functions for stepping are 140 /// Likewise the SBThread::Resume() call will again allow the thread to run 177 static SBThread [all...] |
H A D | SBProcess.h | 114 lldb::SBThread 117 lldb::SBThread 120 lldb::SBThread 123 lldb::SBThread 129 // are APIs to create SBThread objects through the interface and add 132 lldb::SBThread 136 SetSelectedThread (const lldb::SBThread &thread); 281 friend class SBThread;
|
H A D | SBFrame.h | 129 lldb::SBThread 225 friend class SBThread;
|
H A D | SBDefines.h | 67 class SBThread;
|
H A D | SBError.h | 76 friend class SBThread;
|
H A D | SBEvent.h | 77 friend class SBThread;
|
H A D | SBFileSpec.h | 70 friend class SBThread;
|
H A D | SBSymbolContext.h | 63 friend class SBThread;
|
H A D | SBAddress.h | 119 friend class SBThread;
|
H A D | SBStream.h | 87 friend class SBThread;
|
H A D | SBBreakpoint.h | 23 SBThread &thread,
|
H A D | SBValue.h | 331 lldb::SBThread 437 friend class SBThread;
|
/external/lldb/tools/lldb-perf/lib/ |
H A D | TestCase.h | 37 lldb::SBThread thread; 51 thread = lldb::SBThread(); 55 StepOver (lldb::SBThread t) 62 StepOut (lldb::SBThread t) 72 thread = lldb::SBThread(); 80 thread = lldb::SBThread(); 87 thread = lldb::SBThread(); 171 lldb::SBThread & 190 lldb::SBThread m_thread;
|
H A D | Xcode.h | 19 #include "lldb/API/SBThread.h" 48 Next (SBThread thread); 56 static SBThread
|
H A D | Xcode.cpp | 78 SBThread thread(process.GetThreadAtIndex(p)); 86 SBThread thread_dup = frame.GetThread(); 125 Xcode::Next (SBThread thread) 146 SBThread 152 SBThread thread(process.GetThreadAtIndex(thread_num)); 158 return SBThread();
|
/external/lldb/scripts/Python/interface/ |
H A D | SBThread.i | 1 //===-- SWIG Interface for SBThread -----------------------------*- C++ -*-===// 13 "Represents a thread of execution. SBProcess contains SBThread(s). 21 SBThread supports frame iteration. For example (from test/python_api/ 40 ) SBThread; 41 class SBThread 44 SBThread (); 46 SBThread (const lldb::SBThread &thread); 48 ~SBThread(); 56 static SBThread [all...] |
H A D | SBProcess.i | 143 identifier use either the thread ID or the IndexID. See help on SBThread 146 lldb::SBThread 152 lldb::SBThread 158 lldb::SBThread 164 lldb::SBThread 170 lldb::SBThread 174 SetSelectedThread (const lldb::SBThread &thread); 414 if _newclass: threads = property(get_process_thread_list, None, doc='''A read only property that returns a list() of lldb.SBThread objects for this process.''') 439 if _newclass: selected_thread = property(GetSelectedThread, SetSelectedThread, doc='''A read/write property that gets/sets the currently selected thread in this process. The getter returns a lldb.SBThread object and the setter takes an lldb.SBThread objec [all...] |
H A D | SBBreakpoint.i | 86 SBThread &thread,
|
/external/lldb/source/API/ |
H A D | SBThread.cpp | 1 //===-- SBThread.cpp --------------------------------------------*- C++ -*-===// 12 #include "lldb/API/SBThread.h" 47 SBThread::GetBroadcasterClassName () 55 SBThread::SBThread () : function in class:SBThread 60 SBThread::SBThread (const ThreadSP& lldb_object_sp) : function in class:SBThread 65 SBThread::SBThread (const SBThread function in class:SBThread [all...] |
H A D | Android.mk | 49 SBThread.cpp \
|
H A D | SBProcess.cpp | 36 #include "lldb/API/SBThread.h" 258 SBThread 263 SBThread sb_thread; 275 log->Printf ("SBProcess(%p)::GetSelectedThread () => SBThread(%p)", process_sp.get(), thread_sp.get()); 281 SBThread 286 SBThread sb_thread; 297 log->Printf ("SBProcess(%p)::CreateOSPluginThread (tid=0x%" PRIx64 ", context=0x%" PRIx64 ") => SBThread(%p)", process_sp.get(), tid, context, thread_sp.get()); 456 SBProcess::SetSelectedThread (const SBThread &thread) 507 SBThread 512 SBThread sb_threa [all...] |
/external/lldb/test/api/multithreaded/ |
H A D | test_breakpoint_callback.cpp | 23 SBThread &thread,
|
H A D | test_listener_event_process_state.cpp | 41 SBThread thread = process.GetThreadAtIndex(i);
|
/external/lldb/test/python_api/default-constructor/ |
H A D | sb_process.py | 24 obj.SetSelectedThread(lldb.SBThread())
|
/external/lldb/tools/driver/ |
H A D | Driver.cpp | 36 #include "lldb/API/SBThread.h" 813 SBThread curr_thread (process.GetSelectedThread()); 814 SBThread thread; 823 SBThread plan_thread; 824 SBThread other_thread; 1045 if (event_type == SBThread::eBroadcastBitStackChanged 1046 || event_type == SBThread::eBroadcastBitThreadSelected) 1048 SBThread thread = SBThread::GetThreadFromEvent (event); 1373 SBThread [all...] |