/llvm-project/lldb/tools/debugserver/source/ |
H A D | ChangeLog | 3 * MachProcess.cpp (MachProcess::PrepareForAttach): No longer use the 6 (MachProcess::CleanupAfterAttach): Ditto. 7 (MachProcess::SBForkChildForPTraceDebugging): Ditto. 21 * MachProcess.cpp (MachProcess::PrepareForAttach): Added logging when 49 * MachProcess.cpp (MachProcess::PrepareForAttach): New function. 50 (MachProcess::CheckForProcess): New function. 51 (MachProcess::CleanupAfterAttach): New function. 53 (MachProcess::SBForkChildForPTraceDebugging): Convert to using 55 * MachProcess.h: Declare PrepareForAttach, CleanupAfterAttach and 78 * MachTask.h (MachProcess::GetDYLDAllImageInfosAddress): New prototype. [all …]
|
H A D | DNBBreakpoint.h | 23 class MachProcess; variable 139 void DisableAllBreakpoints(MachProcess *process); 140 void DisableAllWatchpoints(MachProcess *process);
|
H A D | DNB.cpp | 50 #include "MacOSX/MachProcess.h" 55 typedef std::shared_ptr<MachProcess> MachProcessSP; 111 // MachProcess object. 350 MachProcessSP processSP(new MachProcess); in DNBProcessLaunch() 508 MachProcessSP processSP(new MachProcess); in DNBProcessAttach() 723 // If the PrepareForAttach returns a valid token, use MachProcess to check in DNBProcessAttachWait() 726 const void *attach_token = MachProcess::PrepareForAttach( in DNBProcessAttachWait() 751 pid = MachProcess::CheckForProcess(attach_token, launch_flavor); in DNBProcessAttachWait() 857 MachProcess::CleanupAfterAttach(attach_token, launch_flavor, success, in DNBProcessDetach() 1514 // MachProcess in DNBGetDeploymentInfo() [all...] |
H A D | DNBBreakpoint.cpp | 196 void DNBBreakpointList::DisableAllBreakpoints(MachProcess *process) { in DisableAllBreakpoints() 202 void DNBBreakpointList::DisableAllWatchpoints(MachProcess *process) { in DisableAllWatchpoints()
|
H A D | CMakeLists.txt | 218 MacOSX/MachProcess.mm
|
/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
H A D | MachProcess.mm | 1 //===-- MachProcess.cpp -----------------------------------------*- C++ -*-===// 45 #include "MachProcess.h" 522 MachProcess::MachProcess() function 562 MachProcess::~MachProcess() { function 567 pid_t MachProcess::SetProcessID(pid_t pid) { 578 nub_state_t MachProcess::GetState() { 584 const char *MachProcess::ThreadGetName(nub_thread_t tid) { 588 nub_state_t MachProcess [all...] |
H A D | MachTask.h | 29 class MachProcess; variable 49 MachTask(MachProcess *process); 87 MachProcess *Process() { return m_process; } in Process() 88 const MachProcess *Process() const { return m_process; } in Process() 94 MachProcess *m_process; // The mach process that owns this MachTask
|
H A D | MachThread.h | 33 class MachProcess; variable 38 MachThread(MachProcess *process, bool is_64_bit, 42 MachProcess *Process() { return m_process; } in Process() 43 const MachProcess *Process() const { return m_process; } in Process() 136 MachProcess *m_process; // The process that owns this thread
|
H A D | MachThreadList.h | 38 void ProcessWillResume(MachProcess *process, 40 uint32_t ProcessDidStop(MachProcess *process); 96 uint32_t UpdateThreadList(MachProcess *process, bool update,
|
H A D | MachProcess.h | 43 class MachProcess { 46 MachProcess(); 47 ~MachProcess(); 99 MachProcess *process, DNBError &err); 104 bool no_stdio, MachProcess *process, int disable_aslr, DNBError &err); 151 MachProcess *process,
|
H A D | MachException.h | 19 class MachProcess; variable 98 kern_return_t Reply(MachProcess *process, int signal);
|
H A D | MachThreadList.cpp | 256 MachThreadList::UpdateThreadList(MachProcess *process, bool update, in UpdateThreadList() 375 MachProcess *process, const DNBThreadResumeActions &thread_actions) { in ProcessWillResume() 449 uint32_t MachThreadList::ProcessDidStop(MachProcess *process) { in ProcessDidStop()
|
H A D | MachTask.mm | 41 #include "MachProcess.h" 74 MachTask::MachTask(MachProcess *process) 706 MachProcess *mach_proc = mach_task->Process();
|
H A D | MachException.cpp | 315 kern_return_t MachException::Message::Reply(MachProcess *process, int signal) { in Reply()
|
H A D | MachThread.cpp | 16 #include "MachProcess.h" 27 MachThread::MachThread(MachProcess *process, bool is_64_bit, in MachThread()
|
/llvm-project/lldb/tools/debugserver/debugserver.xcodeproj/ |
H A D | project.pbxproj | 27 26CE05B1115C36350022F371 /* MachProcess.mm in Sources */ = {isa = PBXBuildFile; fileRef = 26C637F00C71334A0024798E /* MachProcess.mm */; }; 55 456F674F1AD46CE9002850C2 /* MachProcess.mm in Sources */ = {isa = PBXBuildFile; fileRef = 26C637F00C71334A0024798E /* MachProcess.mm */; }; 141 26C637F00C71334A0024798E /* MachProcess.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = MachProcess.mm; sourceTree = "<group>"; }; 142 26C637F10C71334A0024798E /* MachProcess.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachProcess.h; sourceTree = "<group>"; }; 336 26C637F10C71334A0024798E /* MachProcess.h */, 337 26C637F00C71334A0024798E /* MachProcess [all...] |