HomeSort by relevance Sort by last modified time
    Searched full:pid_str (Results 1 - 12 of 12) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_mac.cc 59 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);
  /system/core/logd/
LogAudit.cpp 138 static const char pid_str[] = " pid="; local
139 char *pidptr = strstr(str, pid_str);
140 if (pidptr && isdigit(pidptr[sizeof(pid_str) - 1])) {
141 cp = pidptr + sizeof(pid_str) - 1;
  /system/extras/memtrack/
memtrack.h 78 bool getInformation(int pid, char *pid_str, size_t pid_str_len);
memtrack.cpp 127 bool ProcessInfo::getInformation(int pid, char *pid_str, size_t pid_str_len) {
128 memcpy(proc_file_ + kProcLen, pid_str, pid_str_len);
  /external/linux-tools-perf/src/tools/perf/util/
thread_map.c 157 static struct thread_map *thread_map__new_by_pid_str(const char *pid_str)
167 struct strlist *slist = strlist__new(false, pid_str);
  /external/lldb/tools/darwin-debug/
darwin-debug.cpp 302 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/
GDBRemoteCommunicationServer.cpp 521 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/lldb/source/Host/macosx/
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);
    [all...]
  /system/core/init/
init.cpp 294 std::string pid_str = android::base::StringPrintf("%d", pid); local
296 if (!android::base::WriteStringToFile(pid_str, file)) {
298 pid_str.c_str(), file.c_str(), strerror(errno));
    [all...]
  /external/linux-tools-perf/src/tools/perf/
builtin-kvm.c 111 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",
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
debug.ipp 421 unit_test::const_string pid_str( pid_buff );
437 WRITE_STR( pid_str );
  /external/lldb/tools/debugserver/source/
debugserver.cpp 670 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)");
    [all...]

Completed in 358 milliseconds