Home
last modified time | relevance | path

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

123

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBProcess.cpp52 SBProcess::SBProcess() : m_opaque_wp() { in SBProcess() function in SBProcess
58 SBProcess::SBProcess(const SBProcess &rhs) : m_opaque_wp(rhs.m_opaque_wp) { in SBProcess() function in SBProcess
59 LLDB_RECORD_CONSTRUCTOR(SBProcess, (const lldb::SBProcess &), rhs); in SBProcess()
62 SBProcess::SBProcess(const lldb::ProcessSP &process_sp) in SBProcess() function in SBProcess
67 const SBProcess &SBProcess::operator=(const SBProcess &rhs) { in operator =()
69 SBProcess, operator=,(const lldb::SBProcess &), rhs); in operator =()
77 SBProcess::~SBProcess() = default;
110 void SBProcess::Clear() { in Clear()
778 SBProcess SBProcess::GetProcessFromEvent(const SBEvent &event) { in GetProcessFromEvent()
1342 LLDB_REGISTER_CONSTRUCTOR(SBProcess, (const lldb::SBProcess &)); in RegisterMethods()
[all …]
H A 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()
H A DSBTarget.cpp176 SBProcess SBTarget::GetProcess() { in GetProcess()
179 SBProcess sb_process; in GetProcess()
264 SBProcess sb_process; in LoadCore()
292 return LLDB_RECORD_RESULT(SBProcess()); in LaunchSimple()
335 SBProcess sb_process; in Launch()
416 SBProcess sb_process; in Launch()
464 SBProcess sb_process; in Attach()
503 SBProcess sb_process; in AttachToProcessWithID()
535 SBProcess sb_process; in AttachToProcessWithName()
558 lldb::SBProcess, SBTarget, ConnectRemote, in ConnectRemote()
[all …]
H A DSBQueue.cpp189 lldb::SBProcess GetProcess() { in GetProcess()
190 SBProcess result; in GetProcess()
319 SBProcess SBQueue::GetProcess() { in GetProcess()
320 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBProcess, SBQueue, GetProcess); in GetProcess()
353 LLDB_REGISTER_METHOD(lldb::SBProcess, SBQueue, GetProcess, ()); in RegisterMethods()
H A DSBBreakpointOptionCommon.cpp63 SBProcess sb_process(process->shared_from_this()); in PrivateBreakpointHitCallback()
H A DSBDebugger.cpp528 SBProcess process(GetCommandInterpreter().GetProcess()); in HandleCommand()
553 void SBDebugger::HandleProcessEvent(const SBProcess &process, in HandleProcessEvent()
558 (const lldb::SBProcess &, const lldb::SBEvent &, SBFile, SBFile), process, in HandleProcessEvent()
564 void SBDebugger::HandleProcessEvent(const SBProcess &process, in HandleProcessEvent()
569 (const lldb::SBProcess &, const lldb::SBEvent &, FILE *, FILE *), process, in HandleProcessEvent()
577 void SBDebugger::HandleProcessEvent(const SBProcess &process, in HandleProcessEvent()
583 (const lldb::SBProcess &, const lldb::SBEvent &, FileSP, FileSP), process, in HandleProcessEvent()
616 StateType event_state = SBProcess::GetStateFromEvent(event); in HandleProcessEvent()
1778 (const lldb::SBProcess &, const lldb::SBEvent &, FILE *, FILE *)); in RegisterMethods()
1781 (const lldb::SBProcess &, const lldb::SBEvent &, SBFile, SBFile)); in RegisterMethods()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A 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);
H A 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 …]
H A DSBExecutionContext.h32 SBExecutionContext(const lldb::SBProcess &process);
46 SBProcess GetProcess() const;
H A DSBQueue.h37 lldb::SBProcess GetProcess();
58 friend class SBProcess;
H A DSBDebugger.h157 void HandleProcessEvent(const lldb::SBProcess &process,
161 void HandleProcessEvent(const lldb::SBProcess &process,
164 void HandleProcessEvent(const lldb::SBProcess &process,
381 friend class SBProcess; variable
H A DSBDefines.h62 class LLDB_API SBProcess; variable
97 typedef bool (*SBBreakpointHitCallback)(void *baton, SBProcess &process,
H A DSBThread.h187 lldb::SBProcess GetProcess();
217 friend class SBProcess; variable
H A DSBMemoryRegionInfoList.h44 friend class SBProcess;
H A DSBProcessInfo.h57 friend class SBProcess;
H A DSBThreadCollection.h49 friend class SBProcess;
H A DSBFile.h21 friend class SBProcess; variable
H A DSBMemoryRegionInfo.h117 friend class SBProcess;
H A DSBUnixSignals.h54 friend class SBProcess;
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBProcess.i31 ) SBProcess;
32 class SBProcess
45 SBProcess ();
47 SBProcess (const lldb::SBProcess& rhs);
49 ~SBProcess();
326 static lldb::SBProcess
439 STRING_EXTENSION(SBProcess)
H A DSBTarget.i96 lldb::SBProcess
196 lldb::SBProcess
226 lldb::SBProcess
231 lldb::SBProcess
252 lldb::SBProcess
255 lldb::SBProcess
258 lldb::SBProcess
278 lldb::SBProcess
303 lldb::SBProcess
329 lldb::SBProcess
H A DSBExecutionContext.i23 SBExecutionContext (const lldb::SBProcess &process);
34 SBProcess
H A DSBQueue.i31 lldb::SBProcess
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-typemaps.swig104 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
122 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
151 // Ditto for SBProcess::PutSTDIN(const char *src, size_t src_len).
174 // For SBProcess::WriteMemory, SBTarget::GetInstructions and SBDebugger::DispatchInput.
199 // See also SBProcess::ReadMemory.
217 // See also SBProcess::ReadMemory.
/freebsd-13.1/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-typemaps.swig85 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
101 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated

123