Searched refs:pid_str (Results 1 - 6 of 6) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cc59 char pid_str[16]; variable
60 internal_snprintf(pid_str, sizeof(pid_str), "%d", parent_pid_);
65 execl(path_to_binary, path_to_binary, "-p", pid_str, "-d", (char *)0);
67 execl(path_to_binary, path_to_binary, "-p", pid_str, (char *)0);
/external/lldb/tools/darwin-debug/
H A Ddarwin-debug.cpp302 char pid_str[64]; local
303 const int pid_str_len = ::snprintf (pid_str, sizeof(pid_str), "%i", ::getpid());
304 const int bytes_sent = ::send (s, pid_str, pid_str_len, 0);
308 perror("error: send (s, pid_str, pid_str_len, 0)");
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp521 char pid_str[256];
522 ::memset (pid_str, 0, sizeof(pid_str));
524 const size_t pid_str_len = file_conn.Read (pid_str, sizeof(pid_str), 0, status, NULL);
527 int pid = atoi (pid_str);
/external/linux-tools-perf/src/tools/perf/util/
H A Dthread_map.c157 static struct thread_map *thread_map__new_by_pid_str(const char *pid_str) argument
167 struct strlist *slist = strlist__new(false, pid_str);
/external/lldb/tools/debugserver/source/
H A Ddebugserver.cpp670 char pid_str[64]; local
671 const int pid_str_len = ::snprintf (pid_str, sizeof(pid_str), "%u", port);
672 const int bytes_sent = ::send (s, pid_str, pid_str_len, 0);
676 perror("error: send (s, pid_str, pid_str_len, 0)");
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-kvm.c111 const char *pid_str; member in struct:perf_kvm_stat
1250 if (kvm->pid_str) {
1251 kvm->pid_list = intlist__new(kvm->pid_str);
1354 OPT_STRING('p', "pid", &kvm->pid_str, "pid",

Completed in 206 milliseconds