Lines Matching defs:pid
489 "List processes on a remote platform by name, pid, or many other matching attributes.",
532 lldb::pid_t pid = m_options.match_info.GetProcessInfo().GetProcessID();
533 if (pid != LLDB_INVALID_PROCESS_ID)
536 if (platform_sp->GetProcessInfo (pid, proc_info))
544 result.AppendErrorWithFormat ("no process found with pid = %" PRIu64 "\n", pid);
747 { LLDB_OPT_SET_1 , false, "pid" , 'p', required_argument, NULL, 0, eArgTypePid , "List the process info for a specific process ID." },
774 "platform process info <pid> [<pid> <pid> ...]",
825 lldb::pid_t pid = Args::StringToUInt32 (arg, LLDB_INVALID_PROCESS_ID, 0, &success);
829 if (platform_sp->GetProcessInfo (pid, proc_info))
831 ostrm.Printf ("Process information for process %" PRIu64 ":\n", pid);
836 ostrm.Printf ("error: no process information is available for process %" PRIu64 "\n", pid);