Home
last modified time | relevance | path

Searched refs:SBProcess (Results 1 – 25 of 91) sorted by relevance

1234

/external/llvm-project/lldb/source/API/
DSBProcess.cpp53 SBProcess::SBProcess() : m_opaque_wp() { in SBProcess() function in SBProcess
54 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBProcess); in SBProcess()
59 SBProcess::SBProcess(const SBProcess &rhs) : m_opaque_wp(rhs.m_opaque_wp) { in SBProcess() function in SBProcess
60 LLDB_RECORD_CONSTRUCTOR(SBProcess, (const lldb::SBProcess &), rhs); in SBProcess()
63 SBProcess::SBProcess(const lldb::ProcessSP &process_sp) in SBProcess() function in SBProcess
65 LLDB_RECORD_CONSTRUCTOR(SBProcess, (const lldb::ProcessSP &), process_sp); in SBProcess()
68 const SBProcess &SBProcess::operator=(const SBProcess &rhs) { in operator =()
69 LLDB_RECORD_METHOD(const lldb::SBProcess &, in operator =()
70 SBProcess, operator=,(const lldb::SBProcess &), rhs); in operator =()
78 SBProcess::~SBProcess() = default;
[all …]
DSBExecutionContext.cpp46 SBExecutionContext::SBExecutionContext(const lldb::SBProcess &process) in SBExecutionContext()
48 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (const lldb::SBProcess &), in SBExecutionContext()
97 SBProcess SBExecutionContext::GetProcess() const { in GetProcess()
98 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBProcess, SBExecutionContext, in GetProcess()
101 SBProcess sb_process; in GetProcess()
146 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (const lldb::SBProcess &)); in RegisterMethods()
154 LLDB_REGISTER_METHOD_CONST(lldb::SBProcess, SBExecutionContext, GetProcess, in RegisterMethods()
DSBTarget.cpp176 SBProcess SBTarget::GetProcess() { in GetProcess()
177 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBProcess, SBTarget, GetProcess); in GetProcess()
179 SBProcess sb_process; in GetProcess()
252 SBProcess SBTarget::LoadCore(const char *core_file) { in LoadCore()
253 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, LoadCore, (const char *), in LoadCore()
260 SBProcess SBTarget::LoadCore(const char *core_file, lldb::SBError &error) { in LoadCore()
261 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, LoadCore, in LoadCore()
264 SBProcess sb_process; in LoadCore()
284 SBProcess SBTarget::LaunchSimple(char const **argv, char const **envp, in LaunchSimple()
286 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, LaunchSimple, in LaunchSimple()
[all …]
DSBQueue.cpp191 lldb::SBProcess GetProcess() { in GetProcess()
192 SBProcess result; in GetProcess()
320 SBProcess SBQueue::GetProcess() { in GetProcess()
321 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBProcess, SBQueue, GetProcess); in GetProcess()
354 LLDB_REGISTER_METHOD(lldb::SBProcess, SBQueue, GetProcess, ()); in RegisterMethods()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/
DTestBreakpointSetRestart.py33 if lldb.SBProcess.GetStateFromEvent(event) == lldb.eStateRunning:
43 if lldb.SBProcess.GetStateFromEvent(
44 event) == lldb.eStateStopped and lldb.SBProcess.GetRestartedFromEvent(event):
46 if lldb.SBProcess.GetStateFromEvent(event) == lldb.eStateRunning:
51 lldb.SBProcess.GetStateFromEvent(event)))
/external/llvm-project/lldb/include/lldb/API/
DSBProcess.h23 class LLDB_API SBProcess {
33 SBProcess();
35 SBProcess(const lldb::SBProcess &rhs);
37 const lldb::SBProcess &operator=(const lldb::SBProcess &rhs);
39 SBProcess(const lldb::ProcessSP &process_sp);
41 ~SBProcess();
208 static lldb::SBProcess GetProcessFromEvent(const lldb::SBEvent &event);
DSBTarget.h67 lldb::SBProcess GetProcess();
173 lldb::SBProcess Launch(SBListener &listener, char const **argv,
180 SBProcess LoadCore(const char *core_file);
181 SBProcess LoadCore(const char *core_file, lldb::SBError &error);
209 SBProcess LaunchSimple(const char **argv, const char **envp,
212 SBProcess Launch(SBLaunchInfo &launch_info, SBError &error);
214 SBProcess Attach(SBAttachInfo &attach_info, SBError &error);
232 lldb::SBProcess AttachToProcessWithID(SBListener &listener, lldb::pid_t pid,
254 lldb::SBProcess AttachToProcessWithName(SBListener &listener,
277 lldb::SBProcess ConnectRemote(SBListener &listener, const char *url,
[all …]
DSBExecutionContext.h32 SBExecutionContext(const lldb::SBProcess &process);
46 SBProcess GetProcess() const;
DSBQueue.h37 lldb::SBProcess GetProcess();
58 friend class SBProcess;
DSBDebugger.h119 void HandleProcessEvent(const lldb::SBProcess &process,
123 void HandleProcessEvent(const lldb::SBProcess &process,
126 void HandleProcessEvent(const lldb::SBProcess &process,
343 friend class SBProcess; variable
/external/llvm-project/lldb/utils/lui/
Ddebuggerdriver.py54 lldb.SBProcess.GetBroadcasterClassName(),
55 lldb.SBProcess.eBroadcastBitStateChanged
56 | lldb.SBProcess.eBroadcastBitInterrupt
57 | lldb.SBProcess.eBroadcastBitSTDOUT
58 | lldb.SBProcess.eBroadcastBitSTDERR
59 | lldb.SBProcess.eBroadcastBitProfileData
Dstatuswin.py35 if lldb.SBProcess.EventIsProcessEvent(event):
36 state = lldb.SBProcess.GetStateFromEvent(event)
/external/llvm-project/lldb/tools/intel-features/intel-pt/
DDecoder.h159 void StartProcessorTrace(lldb::SBProcess &sbprocess,
163 void StopProcessorTrace(lldb::SBProcess &sbprocess, lldb::SBError &sberror,
166 void GetInstructionLogAtOffset(lldb::SBProcess &sbprocess, lldb::tid_t tid,
171 void GetProcessorTraceInfo(lldb::SBProcess &sbprocess, lldb::tid_t tid,
198 void CheckDebuggerID(lldb::SBProcess &sbprocess, lldb::SBError &sberror);
201 void RemoveDeadProcessesAndThreads(lldb::SBProcess &sbprocess);
214 void FetchAndDecode(lldb::SBProcess &sbprocess, lldb::tid_t tid,
220 void ReadTraceDataAndImageInfo(lldb::SBProcess &sbprocess, lldb::tid_t tid,
226 void DecodeProcessorTrace(lldb::SBProcess &sbprocess, lldb::tid_t tid,
DPTDecoder.h183 void StartProcessorTrace(lldb::SBProcess &sbprocess,
201 void StopProcessorTrace(lldb::SBProcess &sbprocess, lldb::SBError &sberror,
237 void GetInstructionLogAtOffset(lldb::SBProcess &sbprocess, lldb::tid_t tid,
262 void GetProcessorTraceInfo(lldb::SBProcess &sbprocess, lldb::tid_t tid,
DPTDecoder.cpp92 void PTDecoder::StartProcessorTrace(lldb::SBProcess &sbprocess, in StartProcessorTrace()
103 void PTDecoder::StopProcessorTrace(lldb::SBProcess &sbprocess, in StopProcessorTrace()
113 void PTDecoder::GetInstructionLogAtOffset(lldb::SBProcess &sbprocess, in GetInstructionLogAtOffset()
133 void PTDecoder::GetProcessorTraceInfo(lldb::SBProcess &sbprocess, in GetProcessorTraceInfo()
DDecoder.cpp24 void Decoder::RemoveDeadProcessesAndThreads(lldb::SBProcess &sbprocess) { in RemoveDeadProcessesAndThreads()
33 lldb::SBProcess process; in RemoveDeadProcessesAndThreads()
75 void Decoder::StartProcessorTrace(lldb::SBProcess &sbprocess, in StartProcessorTrace()
150 void Decoder::StopProcessorTrace(lldb::SBProcess &sbprocess, in StopProcessorTrace()
251 void Decoder::ReadTraceDataAndImageInfo(lldb::SBProcess &sbprocess, in ReadTraceDataAndImageInfo()
307 void Decoder::DecodeProcessorTrace(lldb::SBProcess &sbprocess, lldb::tid_t tid, in DecodeProcessorTrace()
743 void Decoder::GetInstructionLogAtOffset(lldb::SBProcess &sbprocess, in GetInstructionLogAtOffset()
794 void Decoder::GetProcessorTraceInfo(lldb::SBProcess &sbprocess, lldb::tid_t tid, in GetProcessorTraceInfo()
854 void Decoder::FetchAndDecode(lldb::SBProcess &sbprocess, lldb::tid_t tid, in FetchAndDecode()
930 void Decoder::CheckDebuggerID(lldb::SBProcess &sbprocess, in CheckDebuggerID()
/external/llvm-project/lldb/bindings/interface/
DSBProcess.i33 ) SBProcess;
34 class SBProcess
47 SBProcess ();
49 SBProcess (const lldb::SBProcess& rhs);
51 ~SBProcess();
328 static lldb::SBProcess
425 STRING_EXTENSION(SBProcess)
DSBTarget.i96 lldb::SBProcess
196 lldb::SBProcess
240 lldb::SBProcess
245 lldb::SBProcess
266 lldb::SBProcess
269 lldb::SBProcess
272 lldb::SBProcess
292 lldb::SBProcess
317 lldb::SBProcess
343 lldb::SBProcess
DSBExecutionContext.i20 SBExecutionContext (const lldb::SBProcess &process);
31 SBProcess
/external/llvm-project/lldb/test/API/api/multithreaded/
Dtest_listener_event_process_state.cpp.template33 SBProcess process = SBProcess::GetProcessFromEvent(event);
36 …if (SBProcess::GetStateFromEvent(event) != lldb::eStateStopped || SBProcess::GetRestartedFromEvent…
Dlistener_test.cpp.template42 SBProcess process = target.Launch(g_listener,
52 SBProcess process = target.LaunchSimple (0, 0, working_dir.get());
63 // SBProcess::eBroadcastBitStateChanged);
Dtest_breakpoint_callback.cpp.template22 SBProcess &process,
41 SBProcess process = target.LaunchSimple (0, 0, working_dir.get());
Dtest_listener_resume.cpp.template36 SBProcess process = SBProcess::GetProcessFromEvent(event);
/external/llvm-project/lldb/test/API/api/multiple-debuggers/
Dmulti-process-driver.cpp41 wait_for_stop_event (SBProcess process, SBListener listener) in wait_for_stop_event()
48 if (event.GetType() == SBProcess::eBroadcastBitStateChanged) in wait_for_stop_event()
123 SBProcess process = target.Launch (launch_info, error); in do_one_debugger()
128 … uint32_t rc = broadcaster.AddListener (listener, SBProcess::eBroadcastBitStateChanged); in do_one_debugger()
/external/llvm-project/lldb/test/API/macosx/thread-names/
DTestInterruptThreadNames.py34 rc = broadcaster.AddListener(listener, lldb.SBProcess.eBroadcastBitStateChanged)
99 if event.GetType() == lldb.SBProcess.eBroadcastBitStateChanged:
117 if event.GetType() == lldb.SBProcess.eBroadcastBitStateChanged:

1234