Searched refs:pid_str (Results 1 – 7 of 7) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_symbolizer_mac.cc | 59 char pid_str[16]; in ExecuteWithDefaultArgs() local 60 internal_snprintf(pid_str, sizeof(pid_str), "%d", parent_pid_); in ExecuteWithDefaultArgs() 65 execl(path_to_binary, path_to_binary, "-p", pid_str, "-d", (char *)0); in ExecuteWithDefaultArgs() 67 execl(path_to_binary, path_to_binary, "-p", pid_str, (char *)0); in ExecuteWithDefaultArgs()
|
/external/lldb/tools/darwin-debug/ |
D | darwin-debug.cpp | 302 char pid_str[64]; in main() local 303 const int pid_str_len = ::snprintf (pid_str, sizeof(pid_str), "%i", ::getpid()); in main() 304 const int bytes_sent = ::send (s, pid_str, pid_str_len, 0); in main()
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationServer.cpp | 521 char pid_str[256]; in AcceptPortFromInferior() local 522 ::memset (pid_str, 0, sizeof(pid_str)); in AcceptPortFromInferior() 524 const size_t pid_str_len = file_conn.Read (pid_str, sizeof(pid_str), 0, status, NULL); in AcceptPortFromInferior() 527 int pid = atoi (pid_str); in AcceptPortFromInferior()
|
/external/linux-tools-perf/src/tools/perf/util/ |
D | thread_map.c | 157 static struct thread_map *thread_map__new_by_pid_str(const char *pid_str) in thread_map__new_by_pid_str() argument 167 struct strlist *slist = strlist__new(false, pid_str); in thread_map__new_by_pid_str()
|
/external/lldb/tools/debugserver/source/ |
D | debugserver.cpp | 670 char pid_str[64]; in PortWasBoundCallback() local 671 const int pid_str_len = ::snprintf (pid_str, sizeof(pid_str), "%u", port); in PortWasBoundCallback() 672 const int bytes_sent = ::send (s, pid_str, pid_str_len, 0); in PortWasBoundCallback()
|
/external/linux-tools-perf/src/tools/perf/ |
D | builtin-kvm.c | 111 const char *pid_str; member 1250 if (kvm->pid_str) { in parse_target_str() 1251 kvm->pid_list = intlist__new(kvm->pid_str); in parse_target_str() 1354 OPT_STRING('p', "pid", &kvm->pid_str, "pid", in kvm_events_report()
|
/external/lldb/source/Host/macosx/ |
D | Host.mm | 283 char pid_str[256]; 284 ::memset (pid_str, 0, sizeof(pid_str)); 286 const size_t pid_str_len = file_conn.Read (pid_str, sizeof(pid_str), 0, status, NULL); 289 int pid = atoi (pid_str);
|