Lines Matching refs:SBProcess
52 SBProcess::SBProcess() : m_opaque_wp() { in SBProcess() function in SBProcess
53 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBProcess); 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
64 LLDB_RECORD_CONSTRUCTOR(SBProcess, (const lldb::ProcessSP &), process_sp); in SBProcess()
67 const SBProcess &SBProcess::operator=(const SBProcess &rhs) { in operator =()
68 LLDB_RECORD_METHOD(const lldb::SBProcess &, in operator =()
69 SBProcess, operator=,(const lldb::SBProcess &), rhs); in operator =()
77 SBProcess::~SBProcess() = default;
79 const char *SBProcess::GetBroadcasterClassName() { in GetBroadcasterClassName()
80 LLDB_RECORD_STATIC_METHOD_NO_ARGS(const char *, SBProcess, in GetBroadcasterClassName()
86 const char *SBProcess::GetPluginName() { in GetPluginName()
87 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBProcess, GetPluginName); in GetPluginName()
96 const char *SBProcess::GetShortPluginName() { in GetShortPluginName()
97 LLDB_RECORD_METHOD_NO_ARGS(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()
110 void SBProcess::Clear() { in Clear()
111 LLDB_RECORD_METHOD_NO_ARGS(void, SBProcess, Clear); in Clear()
116 bool SBProcess::IsValid() const { in IsValid()
117 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBProcess, IsValid); in IsValid()
120 SBProcess::operator bool() const { in operator bool()
121 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBProcess, operator bool); in operator bool()
127 bool SBProcess::RemoteLaunch(char const **argv, char const **envp, in RemoteLaunch()
133 LLDB_RECORD_METHOD(bool, SBProcess, RemoteLaunch, in RemoteLaunch()
168 bool SBProcess::RemoteAttachToProcessWithID(lldb::pid_t pid, in RemoteAttachToProcessWithID()
170 LLDB_RECORD_METHOD(bool, SBProcess, RemoteAttachToProcessWithID, in RemoteAttachToProcessWithID()
192 uint32_t SBProcess::GetNumThreads() { in GetNumThreads()
193 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcess, GetNumThreads); in GetNumThreads()
209 SBThread SBProcess::GetSelectedThread() const { in GetSelectedThread()
210 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBThread, SBProcess, in GetSelectedThread()
226 SBThread SBProcess::CreateOSPluginThread(lldb::tid_t tid, in CreateOSPluginThread()
228 LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, CreateOSPluginThread, in CreateOSPluginThread()
244 SBTarget SBProcess::GetTarget() const { in GetTarget()
245 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBTarget, SBProcess, GetTarget); in GetTarget()
258 size_t SBProcess::PutSTDIN(const char *src, size_t src_len) { in PutSTDIN()
259 LLDB_RECORD_METHOD(size_t, SBProcess, PutSTDIN, (const char *, size_t), src, in PutSTDIN()
272 size_t SBProcess::GetSTDOUT(char *dst, size_t dst_len) const { in GetSTDOUT()
273 LLDB_RECORD_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDOUT, in GetSTDOUT()
286 size_t SBProcess::GetSTDERR(char *dst, size_t dst_len) const { in GetSTDERR()
287 LLDB_RECORD_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDERR, in GetSTDERR()
300 size_t SBProcess::GetAsyncProfileData(char *dst, size_t dst_len) const { in GetAsyncProfileData()
301 LLDB_RECORD_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetAsyncProfileData, in GetAsyncProfileData()
314 void SBProcess::ReportEventState(const SBEvent &event, SBFile out) const { in ReportEventState()
315 LLDB_RECORD_METHOD_CONST(void, SBProcess, ReportEventState, in ReportEventState()
321 void SBProcess::ReportEventState(const SBEvent &event, FILE *out) const { in ReportEventState()
322 LLDB_RECORD_METHOD_CONST(void, SBProcess, ReportEventState, in ReportEventState()
328 void SBProcess::ReportEventState(const SBEvent &event, FileSP out) const { in ReportEventState()
330 LLDB_RECORD_METHOD_CONST(void, SBProcess, ReportEventState, in ReportEventState()
339 const StateType event_state = SBProcess::GetStateFromEvent(event); in ReportEventState()
345 void SBProcess::AppendEventStateReport(const SBEvent &event, in AppendEventStateReport()
347 LLDB_RECORD_METHOD(void, SBProcess, AppendEventStateReport, in AppendEventStateReport()
353 const StateType event_state = SBProcess::GetStateFromEvent(event); in AppendEventStateReport()
362 bool SBProcess::SetSelectedThread(const SBThread &thread) { in SetSelectedThread()
363 LLDB_RECORD_METHOD(bool, SBProcess, SetSelectedThread, in SetSelectedThread()
376 bool SBProcess::SetSelectedThreadByID(lldb::tid_t tid) { in SetSelectedThreadByID()
377 LLDB_RECORD_METHOD(bool, SBProcess, SetSelectedThreadByID, (lldb::tid_t), in SetSelectedThreadByID()
392 bool SBProcess::SetSelectedThreadByIndexID(uint32_t index_id) { in SetSelectedThreadByIndexID()
393 LLDB_RECORD_METHOD(bool, SBProcess, SetSelectedThreadByIndexID, (uint32_t), in SetSelectedThreadByIndexID()
408 SBThread SBProcess::GetThreadAtIndex(size_t index) { in GetThreadAtIndex()
409 LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, GetThreadAtIndex, (size_t), in GetThreadAtIndex()
427 uint32_t SBProcess::GetNumQueues() { in GetNumQueues()
428 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcess, GetNumQueues); in GetNumQueues()
444 SBQueue SBProcess::GetQueueAtIndex(size_t index) { in GetQueueAtIndex()
445 LLDB_RECORD_METHOD(lldb::SBQueue, SBProcess, GetQueueAtIndex, (size_t), in GetQueueAtIndex()
464 uint32_t SBProcess::GetStopID(bool include_expression_stops) { in GetStopID()
465 LLDB_RECORD_METHOD(uint32_t, SBProcess, GetStopID, (bool), in GetStopID()
480 SBEvent SBProcess::GetStopEventForStopID(uint32_t stop_id) { in GetStopEventForStopID()
481 LLDB_RECORD_METHOD(lldb::SBEvent, SBProcess, GetStopEventForStopID, in GetStopEventForStopID()
497 StateType SBProcess::GetState() { in GetState()
498 LLDB_RECORD_METHOD_NO_ARGS(lldb::StateType, SBProcess, GetState); in GetState()
511 int SBProcess::GetExitStatus() { in GetExitStatus()
512 LLDB_RECORD_METHOD_NO_ARGS(int, SBProcess, GetExitStatus); in GetExitStatus()
525 const char *SBProcess::GetExitDescription() { in GetExitDescription()
526 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBProcess, GetExitDescription); in GetExitDescription()
538 lldb::pid_t SBProcess::GetProcessID() { in GetProcessID()
539 LLDB_RECORD_METHOD_NO_ARGS(lldb::pid_t, SBProcess, GetProcessID); in GetProcessID()
549 uint32_t SBProcess::GetUniqueID() { in GetUniqueID()
550 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcess, GetUniqueID); in GetUniqueID()
559 ByteOrder SBProcess::GetByteOrder() const { in GetByteOrder()
560 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::ByteOrder, SBProcess, GetByteOrder); in GetByteOrder()
571 uint32_t SBProcess::GetAddressByteSize() const { in GetAddressByteSize()
572 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBProcess, GetAddressByteSize); in GetAddressByteSize()
583 SBError SBProcess::Continue() { in Continue()
584 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Continue); in Continue()
603 SBError SBProcess::Destroy() { in Destroy()
604 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Destroy); in Destroy()
618 SBError SBProcess::Stop() { in Stop()
619 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Stop); in Stop()
633 SBError SBProcess::Kill() { in Kill()
634 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Kill); in Kill()
648 SBError SBProcess::Detach() { in Detach()
649 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBProcess, Detach); in Detach()
656 SBError SBProcess::Detach(bool keep_stopped) { in Detach()
657 LLDB_RECORD_METHOD(lldb::SBError, SBProcess, Detach, (bool), keep_stopped); in Detach()
671 SBError SBProcess::Signal(int signo) { in Signal()
672 LLDB_RECORD_METHOD(lldb::SBError, SBProcess, Signal, (int), signo); in Signal()
686 SBUnixSignals SBProcess::GetUnixSignals() { in GetUnixSignals()
687 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBUnixSignals, SBProcess, GetUnixSignals); in GetUnixSignals()
695 void SBProcess::SendAsyncInterrupt() { in SendAsyncInterrupt()
696 LLDB_RECORD_METHOD_NO_ARGS(void, SBProcess, SendAsyncInterrupt); in SendAsyncInterrupt()
704 SBThread SBProcess::GetThreadByID(tid_t tid) { in GetThreadByID()
705 LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, GetThreadByID, (lldb::tid_t), in GetThreadByID()
723 SBThread SBProcess::GetThreadByIndexID(uint32_t index_id) { in GetThreadByIndexID()
724 LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, GetThreadByIndexID, (uint32_t), in GetThreadByIndexID()
743 StateType SBProcess::GetStateFromEvent(const SBEvent &event) { in GetStateFromEvent()
744 LLDB_RECORD_STATIC_METHOD(lldb::StateType, SBProcess, GetStateFromEvent, in GetStateFromEvent()
752 bool SBProcess::GetRestartedFromEvent(const SBEvent &event) { in GetRestartedFromEvent()
753 LLDB_RECORD_STATIC_METHOD(bool, SBProcess, GetRestartedFromEvent, in GetRestartedFromEvent()
761 size_t SBProcess::GetNumRestartedReasonsFromEvent(const lldb::SBEvent &event) { in GetNumRestartedReasonsFromEvent()
762 LLDB_RECORD_STATIC_METHOD(size_t, SBProcess, GetNumRestartedReasonsFromEvent, in GetNumRestartedReasonsFromEvent()
769 SBProcess::GetRestartedReasonAtIndexFromEvent(const lldb::SBEvent &event, in GetRestartedReasonAtIndexFromEvent()
771 LLDB_RECORD_STATIC_METHOD(const char *, SBProcess, in GetRestartedReasonAtIndexFromEvent()
778 SBProcess SBProcess::GetProcessFromEvent(const SBEvent &event) { in GetProcessFromEvent()
779 LLDB_RECORD_STATIC_METHOD(lldb::SBProcess, SBProcess, GetProcessFromEvent, in GetProcessFromEvent()
789 return LLDB_RECORD_RESULT(SBProcess(process_sp)); in GetProcessFromEvent()
792 bool SBProcess::GetInterruptedFromEvent(const SBEvent &event) { in GetInterruptedFromEvent()
793 LLDB_RECORD_STATIC_METHOD(bool, SBProcess, GetInterruptedFromEvent, in GetInterruptedFromEvent()
800 SBProcess::GetStructuredDataFromEvent(const lldb::SBEvent &event) { in GetStructuredDataFromEvent()
801 LLDB_RECORD_STATIC_METHOD(lldb::SBStructuredData, SBProcess, in GetStructuredDataFromEvent()
808 bool SBProcess::EventIsProcessEvent(const SBEvent &event) { in EventIsProcessEvent()
809 LLDB_RECORD_STATIC_METHOD(bool, SBProcess, EventIsProcessEvent, in EventIsProcessEvent()
812 return (event.GetBroadcasterClass() == SBProcess::GetBroadcasterClass()) && in EventIsProcessEvent()
816 bool SBProcess::EventIsStructuredDataEvent(const lldb::SBEvent &event) { in EventIsStructuredDataEvent()
817 LLDB_RECORD_STATIC_METHOD(bool, SBProcess, EventIsStructuredDataEvent, in EventIsStructuredDataEvent()
826 SBBroadcaster SBProcess::GetBroadcaster() const { in GetBroadcaster()
827 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBBroadcaster, SBProcess, in GetBroadcaster()
839 const char *SBProcess::GetBroadcasterClass() { in GetBroadcasterClass()
840 LLDB_RECORD_STATIC_METHOD_NO_ARGS(const char *, SBProcess, in GetBroadcasterClass()
846 size_t SBProcess::ReadMemory(addr_t addr, void *dst, size_t dst_len, in ReadMemory()
848 LLDB_RECORD_DUMMY(size_t, SBProcess, ReadMemory, in ReadMemory()
873 size_t SBProcess::ReadCStringFromMemory(addr_t addr, void *buf, size_t size, in ReadCStringFromMemory()
875 LLDB_RECORD_DUMMY(size_t, SBProcess, ReadCStringFromMemory, in ReadCStringFromMemory()
897 uint64_t SBProcess::ReadUnsignedFromMemory(addr_t addr, uint32_t byte_size, in ReadUnsignedFromMemory()
899 LLDB_RECORD_METHOD(uint64_t, SBProcess, ReadUnsignedFromMemory, in ReadUnsignedFromMemory()
921 lldb::addr_t SBProcess::ReadPointerFromMemory(addr_t addr, in ReadPointerFromMemory()
923 LLDB_RECORD_METHOD(lldb::addr_t, SBProcess, ReadPointerFromMemory, in ReadPointerFromMemory()
943 size_t SBProcess::WriteMemory(addr_t addr, const void *src, size_t src_len, in WriteMemory()
945 LLDB_RECORD_DUMMY(size_t, SBProcess, WriteMemory, in WriteMemory()
968 bool SBProcess::GetDescription(SBStream &description) { in GetDescription()
969 LLDB_RECORD_METHOD(bool, SBProcess, GetDescription, (lldb::SBStream &), in GetDescription()
993 SBStructuredData SBProcess::GetExtendedCrashInformation() { in GetExtendedCrashInformation()
994 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBStructuredData, SBProcess, in GetExtendedCrashInformation()
1018 SBProcess::GetNumSupportedHardwareWatchpoints(lldb::SBError &sb_error) const { in GetNumSupportedHardwareWatchpoints()
1019 LLDB_RECORD_METHOD_CONST(uint32_t, SBProcess, in GetNumSupportedHardwareWatchpoints()
1035 uint32_t SBProcess::LoadImage(lldb::SBFileSpec &sb_remote_image_spec, in LoadImage()
1037 LLDB_RECORD_METHOD(uint32_t, SBProcess, LoadImage, in LoadImage()
1044 uint32_t SBProcess::LoadImage(const lldb::SBFileSpec &sb_local_image_spec, in LoadImage()
1048 uint32_t, SBProcess, LoadImage, in LoadImage()
1070 uint32_t SBProcess::LoadImageUsingPaths(const lldb::SBFileSpec &image_spec, in LoadImageUsingPaths()
1074 LLDB_RECORD_METHOD(uint32_t, SBProcess, LoadImageUsingPaths, in LoadImageUsingPaths()
1108 lldb::SBError SBProcess::UnloadImage(uint32_t image_token) { in UnloadImage()
1109 LLDB_RECORD_METHOD(lldb::SBError, SBProcess, UnloadImage, (uint32_t), in UnloadImage()
1130 lldb::SBError SBProcess::SendEventData(const char *event_data) { in SendEventData()
1131 LLDB_RECORD_METHOD(lldb::SBError, SBProcess, SendEventData, (const char *), in SendEventData()
1150 uint32_t SBProcess::GetNumExtendedBacktraceTypes() { in GetNumExtendedBacktraceTypes()
1151 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcess, GetNumExtendedBacktraceTypes); in GetNumExtendedBacktraceTypes()
1161 const char *SBProcess::GetExtendedBacktraceTypeAtIndex(uint32_t idx) { in GetExtendedBacktraceTypeAtIndex()
1162 LLDB_RECORD_METHOD(const char *, SBProcess, GetExtendedBacktraceTypeAtIndex, in GetExtendedBacktraceTypeAtIndex()
1177 SBThreadCollection SBProcess::GetHistoryThreads(addr_t addr) { in GetHistoryThreads()
1178 LLDB_RECORD_METHOD(lldb::SBThreadCollection, SBProcess, GetHistoryThreads, in GetHistoryThreads()
1189 bool SBProcess::IsInstrumentationRuntimePresent( in IsInstrumentationRuntimePresent()
1191 LLDB_RECORD_METHOD(bool, SBProcess, IsInstrumentationRuntimePresent, in IsInstrumentationRuntimePresent()
1210 lldb::SBError SBProcess::SaveCore(const char *file_name) { in SaveCore()
1211 LLDB_RECORD_METHOD(lldb::SBError, SBProcess, SaveCore, (const char *), in SaveCore()
1236 SBProcess::GetMemoryRegionInfo(lldb::addr_t load_addr, in GetMemoryRegionInfo()
1238 LLDB_RECORD_METHOD(lldb::SBError, SBProcess, GetMemoryRegionInfo, in GetMemoryRegionInfo()
1261 lldb::SBMemoryRegionInfoList SBProcess::GetMemoryRegions() { in GetMemoryRegions()
1262 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBMemoryRegionInfoList, SBProcess, in GetMemoryRegions()
1279 lldb::SBProcessInfo SBProcess::GetProcessInfo() { in GetProcessInfo()
1280 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBProcessInfo, SBProcess, GetProcessInfo); in GetProcessInfo()
1291 lldb::addr_t SBProcess::AllocateMemory(size_t size, uint32_t permissions, in AllocateMemory()
1293 LLDB_RECORD_METHOD(lldb::addr_t, SBProcess, AllocateMemory, in AllocateMemory()
1314 lldb::SBError SBProcess::DeallocateMemory(lldb::addr_t ptr) { in DeallocateMemory()
1315 LLDB_RECORD_METHOD(lldb::SBError, SBProcess, DeallocateMemory, (lldb::addr_t), in DeallocateMemory()
1340 void RegisterMethods<SBProcess>(Registry &R) { in RegisterMethods()
1341 LLDB_REGISTER_CONSTRUCTOR(SBProcess, ()); in RegisterMethods()
1342 LLDB_REGISTER_CONSTRUCTOR(SBProcess, (const lldb::SBProcess &)); in RegisterMethods()
1343 LLDB_REGISTER_CONSTRUCTOR(SBProcess, (const lldb::ProcessSP &)); in RegisterMethods()
1344 LLDB_REGISTER_METHOD(const lldb::SBProcess &, in RegisterMethods()
1345 SBProcess, operator=,(const lldb::SBProcess &)); in RegisterMethods()
1346 LLDB_REGISTER_STATIC_METHOD(const char *, SBProcess, in RegisterMethods()
1348 LLDB_REGISTER_METHOD(const char *, SBProcess, GetPluginName, ()); in RegisterMethods()
1349 LLDB_REGISTER_METHOD(const char *, SBProcess, GetShortPluginName, ()); in RegisterMethods()
1350 LLDB_REGISTER_METHOD(void, SBProcess, Clear, ()); in RegisterMethods()
1351 LLDB_REGISTER_METHOD_CONST(bool, SBProcess, IsValid, ()); in RegisterMethods()
1352 LLDB_REGISTER_METHOD_CONST(bool, SBProcess, operator bool, ()); in RegisterMethods()
1353 LLDB_REGISTER_METHOD(bool, SBProcess, RemoteLaunch, in RegisterMethods()
1357 LLDB_REGISTER_METHOD(bool, SBProcess, RemoteAttachToProcessWithID, in RegisterMethods()
1359 LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetNumThreads, ()); in RegisterMethods()
1360 LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBProcess, GetSelectedThread, in RegisterMethods()
1362 LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, CreateOSPluginThread, in RegisterMethods()
1364 LLDB_REGISTER_METHOD_CONST(lldb::SBTarget, SBProcess, GetTarget, ()); in RegisterMethods()
1365 LLDB_REGISTER_METHOD(size_t, SBProcess, PutSTDIN, (const char *, size_t)); in RegisterMethods()
1366 LLDB_REGISTER_METHOD_CONST(void, SBProcess, ReportEventState, in RegisterMethods()
1368 LLDB_REGISTER_METHOD_CONST(void, SBProcess, ReportEventState, in RegisterMethods()
1370 LLDB_REGISTER_METHOD_CONST(void, SBProcess, ReportEventState, in RegisterMethods()
1373 void, SBProcess, AppendEventStateReport, in RegisterMethods()
1375 LLDB_REGISTER_METHOD(bool, SBProcess, SetSelectedThread, in RegisterMethods()
1377 LLDB_REGISTER_METHOD(bool, SBProcess, SetSelectedThreadByID, (lldb::tid_t)); in RegisterMethods()
1378 LLDB_REGISTER_METHOD(bool, SBProcess, SetSelectedThreadByIndexID, in RegisterMethods()
1380 LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadAtIndex, (size_t)); in RegisterMethods()
1381 LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetNumQueues, ()); in RegisterMethods()
1382 LLDB_REGISTER_METHOD(lldb::SBQueue, SBProcess, GetQueueAtIndex, (size_t)); in RegisterMethods()
1383 LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetStopID, (bool)); in RegisterMethods()
1384 LLDB_REGISTER_METHOD(lldb::SBEvent, SBProcess, GetStopEventForStopID, in RegisterMethods()
1386 LLDB_REGISTER_METHOD(lldb::StateType, SBProcess, GetState, ()); in RegisterMethods()
1387 LLDB_REGISTER_METHOD(int, SBProcess, GetExitStatus, ()); in RegisterMethods()
1388 LLDB_REGISTER_METHOD(const char *, SBProcess, GetExitDescription, ()); in RegisterMethods()
1389 LLDB_REGISTER_METHOD(lldb::pid_t, SBProcess, GetProcessID, ()); in RegisterMethods()
1390 LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetUniqueID, ()); in RegisterMethods()
1391 LLDB_REGISTER_METHOD_CONST(lldb::ByteOrder, SBProcess, GetByteOrder, ()); in RegisterMethods()
1392 LLDB_REGISTER_METHOD_CONST(uint32_t, SBProcess, GetAddressByteSize, ()); in RegisterMethods()
1393 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Continue, ()); in RegisterMethods()
1394 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Destroy, ()); in RegisterMethods()
1395 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Stop, ()); in RegisterMethods()
1396 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Kill, ()); in RegisterMethods()
1397 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Detach, ()); in RegisterMethods()
1398 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Detach, (bool)); in RegisterMethods()
1399 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Signal, (int)); in RegisterMethods()
1400 LLDB_REGISTER_METHOD(lldb::SBUnixSignals, SBProcess, GetUnixSignals, ()); in RegisterMethods()
1401 LLDB_REGISTER_METHOD(void, SBProcess, SendAsyncInterrupt, ()); in RegisterMethods()
1402 LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadByID, in RegisterMethods()
1404 LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadByIndexID, in RegisterMethods()
1406 LLDB_REGISTER_STATIC_METHOD(lldb::StateType, SBProcess, GetStateFromEvent, in RegisterMethods()
1408 LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, GetRestartedFromEvent, in RegisterMethods()
1410 LLDB_REGISTER_STATIC_METHOD(size_t, SBProcess, in RegisterMethods()
1413 LLDB_REGISTER_STATIC_METHOD(const char *, SBProcess, in RegisterMethods()
1416 LLDB_REGISTER_STATIC_METHOD(lldb::SBProcess, SBProcess, GetProcessFromEvent, in RegisterMethods()
1418 LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, GetInterruptedFromEvent, in RegisterMethods()
1420 LLDB_REGISTER_STATIC_METHOD(lldb::SBStructuredData, SBProcess, in RegisterMethods()
1423 LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, EventIsProcessEvent, in RegisterMethods()
1425 LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, EventIsStructuredDataEvent, in RegisterMethods()
1427 LLDB_REGISTER_METHOD_CONST(lldb::SBBroadcaster, SBProcess, GetBroadcaster, in RegisterMethods()
1429 LLDB_REGISTER_STATIC_METHOD(const char *, SBProcess, GetBroadcasterClass, in RegisterMethods()
1431 LLDB_REGISTER_METHOD(uint64_t, SBProcess, ReadUnsignedFromMemory, in RegisterMethods()
1433 LLDB_REGISTER_METHOD(lldb::addr_t, SBProcess, ReadPointerFromMemory, in RegisterMethods()
1435 LLDB_REGISTER_METHOD(bool, SBProcess, GetDescription, (lldb::SBStream &)); in RegisterMethods()
1436 LLDB_REGISTER_METHOD(lldb::SBStructuredData, SBProcess, in RegisterMethods()
1438 LLDB_REGISTER_METHOD_CONST(uint32_t, SBProcess, in RegisterMethods()
1441 LLDB_REGISTER_METHOD(uint32_t, SBProcess, LoadImage, in RegisterMethods()
1444 uint32_t, SBProcess, LoadImage, in RegisterMethods()
1446 LLDB_REGISTER_METHOD(uint32_t, SBProcess, LoadImageUsingPaths, in RegisterMethods()
1449 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, UnloadImage, (uint32_t)); in RegisterMethods()
1450 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, SendEventData, in RegisterMethods()
1452 LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetNumExtendedBacktraceTypes, ()); in RegisterMethods()
1453 LLDB_REGISTER_METHOD(const char *, SBProcess, in RegisterMethods()
1455 LLDB_REGISTER_METHOD(lldb::SBThreadCollection, SBProcess, GetHistoryThreads, in RegisterMethods()
1457 LLDB_REGISTER_METHOD(bool, SBProcess, IsInstrumentationRuntimePresent, in RegisterMethods()
1459 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, SaveCore, (const char *)); in RegisterMethods()
1460 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, GetMemoryRegionInfo, in RegisterMethods()
1462 LLDB_REGISTER_METHOD(lldb::SBMemoryRegionInfoList, SBProcess, in RegisterMethods()
1464 LLDB_REGISTER_METHOD(lldb::SBProcessInfo, SBProcess, GetProcessInfo, ()); in RegisterMethods()
1465 LLDB_REGISTER_METHOD(lldb::addr_t, SBProcess, AllocateMemory, in RegisterMethods()
1467 LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, DeallocateMemory, in RegisterMethods()
1470 LLDB_REGISTER_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDOUT); in RegisterMethods()
1471 LLDB_REGISTER_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDERR); in RegisterMethods()
1472 LLDB_REGISTER_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetAsyncProfileData); in RegisterMethods()