Searched refs:m_pid (Results 1 - 10 of 10) sorted by relevance

/external/lldb/tools/debugserver/source/
H A DRNBContext.h54 m_pid(INVALID_NUB_PROCESS),
67 nub_process_t ProcessID() const { return m_pid; }
68 bool HasValidProcessID() const { return m_pid != INVALID_NUB_PROCESS; }
123 nub_process_t m_pid; member in class:RNBContext
H A DRNBContext.cpp74 if (m_pid != INVALID_NUB_PROCESS)
80 m_pid = pid;
258 nub_state_t pid_state = DNBProcessGetState(m_pid);
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.h68 GetPID() const { return m_pid; }
201 lldb::pid_t m_pid; member in class:ProcessMonitor
265 lldb::pid_t m_pid; // pid of the process to be attached. member in struct:ProcessMonitor::AttachArgs
H A DProcessMonitor.cpp677 : OperationArgs(monitor), m_pid(pid) { }
706 m_pid(LLDB_INVALID_PROCESS_ID),
767 m_pid(pid),
997 monitor->m_pid = pid;
1058 lldb::pid_t pid = args->m_pid;
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp74 m_pid (0),
123 m_pid = ::getpid ();
125 m_pid = pid;
126 return m_pid; // Return actualy PID in case a zero pid was passed in
229 if (m_cpu_type == 0 && m_pid != 0)
230 m_cpu_type = MachProcess::GetCPUTypeForLocalProcess (m_pid);
316 m_pid = INVALID_NUB_PROCESS;
408 ::ptrace (PT_KILL, m_pid, 0, 0);
411 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Kill() DoSIGSTOP() ::ptrace (PT_KILL, pid=%u, 0, 0) => 0x%8.8x (%s)", m_pid, err.Error(), err.AsString());
544 nub_process_t pid = m_pid;
[all...]
H A DMachProcess.h159 pid_t ProcessID () const { return m_pid; }
160 bool ProcessIDIsValid () const { return m_pid > 0; }
268 pid_t m_pid; // Process ID of child process member in class:MachProcess
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.h73 GetPID() const { return m_pid; }
193 lldb::pid_t m_pid; member in class:ProcessMonitor
257 lldb::pid_t m_pid; // pid of the process to be attached. member in struct:ProcessMonitor::AttachArgs
H A DProcessMonitor.cpp909 : OperationArgs(monitor), m_pid(pid) { }
938 m_pid(LLDB_INVALID_PROCESS_ID),
997 m_pid(LLDB_INVALID_PROCESS_ID),
1223 monitor->m_pid = pid;
1291 lldb::pid_t pid = args->m_pid;
1373 monitor->m_pid = pid;
1626 int ret = tgkill(m_pid, tid, SIGSTOP);
1641 lldb::pid_t wait_pid = ::waitpid (-1*m_pid, &status, __WALL);
/external/lldb/include/lldb/Target/
H A DProcess.h122 m_pid (LLDB_INVALID_PROCESS_ID)
135 m_pid (pid)
148 m_pid = LLDB_INVALID_PROCESS_ID;
245 return m_pid;
251 m_pid = pid;
257 return m_pid != LLDB_INVALID_PROCESS_ID;
321 lldb::pid_t m_pid; member in class:lldb_private::ProcessInfo
/external/lldb/source/Target/
H A DProcess.cpp236 if (m_pid != LLDB_INVALID_PROCESS_ID)
237 s.Printf (" pid = %" PRIu64 "\n", m_pid);
324 if (m_pid != LLDB_INVALID_PROCESS_ID)
327 s.Printf ("%-6" PRIu64 " %-6" PRIu64 " ", m_pid, m_parent_pid);

Completed in 163 milliseconds