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

  /external/strace/tests/
qual_fault.c 164 char pidstr[sizeof(ret) * 3]; local
165 int len = snprintf(pidstr, sizeof(pidstr), "%d", ret);
166 assert(len > 0 && len < (int) sizeof(pidstr));
167 assert(write(pidfd, pidstr, len) == len);
  /external/strace/tests-m32/
qual_fault.c 164 char pidstr[sizeof(ret) * 3]; local
165 int len = snprintf(pidstr, sizeof(pidstr), "%d", ret);
166 assert(len > 0 && len < (int) sizeof(pidstr));
167 assert(write(pidfd, pidstr, len) == len);
  /external/strace/tests-mx32/
qual_fault.c 164 char pidstr[sizeof(ret) * 3]; local
165 int len = snprintf(pidstr, sizeof(pidstr), "%d", ret);
166 assert(len > 0 && len < (int) sizeof(pidstr));
167 assert(write(pidfd, pidstr, len) == len);
  /external/iproute2/ip/
ipnetns.c 471 int netns_identify_pid(const char *pidstr, char *name, int len)
481 snprintf(net_path, sizeof(net_path), "/proc/%s/ns/net", pidstr);
531 const char *pidstr; local
536 pidstr = "self";
541 pidstr = argv[0];
542 if (!is_pid(pidstr)) {
544 pidstr);
549 rc = netns_identify_pid(pidstr, name, sizeof(name));
ip_common.h 90 int netns_identify_pid(const char *pidstr, char *name, int len);
  /external/toybox/lib/
lib.c 862 int sig_to_num(char *pidstr)
866 if (pidstr) {
869 i = estrtol(pidstr, &s, 10);
872 if (!strncasecmp(pidstr, "sig", 3)) pidstr+=3;
875 if (!pidstr) xputs(signames[i].name);
876 else if (!strcasecmp(pidstr, signames[i].name)) return signames[i].num;
lib.h 327 int sig_to_num(char *pidstr);
  /external/valgrind/callgrind/
callgrind_control.in 354 $pidstr = "PID $pid: ";
355 if ($pid >0) { print $pidstr.$cmdline{$pid}; }
  /system/core/logd/
LogStatistics.cpp 531 std::string pidstr; local
533 pidstr = android::base::StringPrintf("%u", pid);
534 if ((tid != (pid_t)-1) && (tid != pid)) pidstr = "/" + pidstr;
536 int len = 9 - pidstr.length();
543 name += pidstr;
  /prebuilts/go/darwin-x86/src/net/http/cgi/
host_test.go 396 pidstr := res.Header.Get("X-CGI-Pid")
397 if pidstr == "" {
400 pid, err := strconv.Atoi(pidstr)
  /prebuilts/go/linux-x86/src/net/http/cgi/
host_test.go 396 pidstr := res.Header.Get("X-CGI-Pid")
397 if pidstr == "" {
400 pid, err := strconv.Atoi(pidstr)
  /external/linux-kselftest/tools/testing/selftests/x86/
protection_keys.c 119 char pidstr[32]; local
124 sprintf(pidstr, "%d", getpid());
133 cat_into_file(pidstr, TRACEDIR "/set_ftrace_pid");
    [all...]

Completed in 312 milliseconds