| /freebsd/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBProcessDocstrings.i | 21 ) lldb::SBProcess; 26 ) lldb::SBProcess::PutSTDIN; 32 ) lldb::SBProcess::GetSTDOUT; 38 ) lldb::SBProcess::GetSTDERR; 44 ) lldb::SBProcess::RemoteAttachToProcessWithID; 48 ) lldb::SBProcess::RemoteLaunch; 55 ) lldb::SBProcess::GetThreadAtIndex; 59 ) lldb::SBProcess::GetThreadByID; 63 ) lldb::SBProcess::GetThreadByIndexID; 67 ) lldb::SBProcess::GetSelectedThread; [all …]
|
| H A D | SBProcessExtensions.i | 1 STRING_EXTENSION_OUTSIDE(SBProcess) 2 %extend lldb::SBProcess { 63 '''An accessor function that returns a modules_access() object which allows lazy thread access from a lldb.SBProcess object.''' 67 '''An accessor function that returns a list() that contains all threads in a lldb.SBProcess object.''' 75 '''Iterate over all threads in a lldb.SBProcess object.''' 79 '''Return the number of threads in a lldb.SBProcess object.'''
|
| H A D | SBProgressDocstrings.i | 73 …to the total will always guarauntee a progress end event being sent.") lldb::SBProcess::Increment;
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBProcess.cpp | 56 SBProcess::SBProcess() { LLDB_INSTRUMENT_VA(this); } in SBProcess() function in SBProcess 60 SBProcess::SBProcess(const SBProcess &rhs) : m_opaque_wp(rhs.m_opaque_wp) { in SBProcess() function in SBProcess 64 SBProcess::SBProcess(const lldb::ProcessSP &process_sp) in SBProcess() function in SBProcess 69 const SBProcess &SBProcess::operator=(const SBProcess &rhs) { in operator =() 78 SBProcess::~SBProcess() = default; 80 const char *SBProcess::GetBroadcasterClassName() { in GetBroadcasterClassName() 86 const char *SBProcess::GetPluginName() { in GetPluginName() 96 const char *SBProcess::GetShortPluginName() { in GetShortPluginName() 106 lldb::ProcessSP SBProcess::GetSP() const { return m_opaque_wp.lock(); } in GetSP() 108 void SBProcess::SetSP(const ProcessSP &process_sp) { m_opaque_wp = process_sp; } in SetSP() [all …]
|
| H A D | SBExecutionContext.cpp | 42 SBExecutionContext::SBExecutionContext(const lldb::SBProcess &process) in SBExecutionContext() 89 SBProcess SBExecutionContext::GetProcess() const { in GetProcess() 92 SBProcess sb_process; in GetProcess()
|
| H A D | SBQueue.cpp | 183 lldb::SBProcess GetProcess() { in GetProcess() 184 SBProcess result; in GetProcess() 308 SBProcess SBQueue::GetProcess() { in GetProcess()
|
| H A D | SBTarget.cpp | 164 SBProcess SBTarget::GetProcess() { in GetProcess() 167 SBProcess sb_process; in GetProcess() 241 SBProcess SBTarget::LoadCore(const char *core_file) { in LoadCore() 248 SBProcess SBTarget::LoadCore(const char *core_file, lldb::SBError &error) { in LoadCore() 251 SBProcess sb_process; in LoadCore() 270 SBProcess SBTarget::LaunchSimple(char const **argv, char const **envp, in LaunchSimple() 276 return SBProcess(); in LaunchSimple() 305 SBProcess SBTarget::Launch(SBListener &listener, char const **argv, in Launch() 315 SBProcess sb_process; in Launch() 388 SBProcess SBTarget::Launch(SBLaunchInfo &sb_launch_info, SBError &error) { in Launch() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBProcess.h | 29 class LLDB_API SBProcess { 39 SBProcess(); 41 SBProcess(const lldb::SBProcess &rhs); 43 const lldb::SBProcess &operator=(const lldb::SBProcess &rhs); 45 ~SBProcess(); 233 static lldb::SBProcess GetProcessFromEvent(const lldb::SBEvent &event); 603 SBProcess(const lldb::ProcessSP &process_sp);
|
| H A D | SBTarget.h | 74 lldb::SBProcess GetProcess(); 194 lldb::SBProcess Launch(SBListener &listener, char const **argv, 201 SBProcess LoadCore(const char *core_file); 202 SBProcess LoadCore(const char *core_file, lldb::SBError &error); 230 SBProcess LaunchSimple(const char **argv, const char **envp, 233 SBProcess Launch(SBLaunchInfo &launch_info, SBError &error); 235 SBProcess Attach(SBAttachInfo &attach_info, SBError &error); 253 lldb::SBProcess AttachToProcessWithID(SBListener &listener, lldb::pid_t pid, 275 lldb::SBProcess AttachToProcessWithName(SBListener &listener, 298 lldb::SBProcess ConnectRemote(SBListener &listener, const char *url, [all …]
|
| H A D | SBQueue.h | 35 lldb::SBProcess GetProcess(); 56 friend class SBProcess;
|
| H A D | SBSaveCoreOptions.h | 79 SBError SetProcess(lldb::SBProcess process); 139 friend class SBProcess;
|
| H A D | SBExecutionContext.h | 37 SBExecutionContext(const lldb::SBProcess &process); 51 SBProcess GetProcess() const;
|
| H A D | SBDebugger.h | 299 void HandleProcessEvent(const lldb::SBProcess &process, 304 void HandleProcessEvent(const lldb::SBProcess &process, 309 void HandleProcessEvent(const lldb::SBProcess &process, 313 void HandleProcessEvent(const lldb::SBProcess &process, 676 friend class SBProcess; variable
|
| H A D | SBThread.h | 191 lldb::SBProcess GetProcess(); 239 friend class SBProcess; variable
|
| H A D | SBDefines.h | 96 class LLDB_API SBProcess; variable 141 typedef bool (*SBBreakpointHitCallback)(void *baton, lldb::SBProcess &process,
|
| H A D | SBProcessInfo.h | 57 friend class SBProcess;
|
| H A D | SBMemoryRegionInfoList.h | 47 friend class SBProcess;
|
| H A D | SBThreadCollection.h | 49 friend class SBProcess;
|
| H A D | SBAddressRangeList.h | 47 friend class SBProcess; variable
|
| H A D | SBAddressRange.h | 63 friend class SBProcess; variable
|
| H A D | SBFile.h | 23 friend class SBProcess; variable
|
| H A D | SBUnixSignals.h | 54 friend class SBProcess;
|
| H A D | SBMemoryRegionInfo.h | 121 friend class SBProcess;
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | AddressRangeListImpl.h | 18 class SBProcess; variable 45 friend class lldb::SBProcess;
|
| /freebsd/contrib/llvm-project/lldb/bindings/lua/ |
| H A D | lua-typemaps.swig | 86 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated 90 // Also SBProcess::ReadMemory. 105 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated 109 // Also SBProcess::ReadMemory. 178 // Typemap for handling SBProcess::PutSTDIN 184 // Typemap for handling SBProcess::WriteMemory, SBTarget::GetInstructions...
|