HomeSort by relevance Sort by last modified time
    Searched refs:m_pid (Results 1 - 11 of 11) sorted by null

  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcess.h 36 return(m_pid);
50 int m_pid; member in class:osUtils::childProcess
  /external/lldb/tools/debugserver/source/
RNBContext.h 54 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
RNBContext.cpp 74 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/
ProcessMonitor.h 68 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
ProcessMonitor.cpp 677 : 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;
    [all...]
  /external/lldb/source/Plugins/Process/Linux/
ProcessMonitor.h 73 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
ProcessMonitor.cpp 909 : OperationArgs(monitor), m_pid(pid) { }
938 m_pid(LLDB_INVALID_PROCESS_ID),
997 m_pid(LLDB_INVALID_PROCESS_ID),
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachProcess.cpp 74 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...]
MachProcess.h 159 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/include/lldb/Target/
Process.h 122 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
    [all...]
  /external/lldb/source/Target/
Process.cpp 236 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);
    [all...]

Completed in 251 milliseconds