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

  /external/chromium_org/sandbox/linux/suid/
linux_util.c 77 const unsigned long int pid_ul = strtoul(dent->d_name, &endptr, 10); local
78 if (pid_ul == ULONG_MAX || !endptr || *endptr || errno != 0)
90 snprintf(buf, sizeof(buf), "/proc/%lu", pid_ul);
124 *pid_out = pid_ul;
sandbox.c 441 unsigned long pid_ul = strtoul(argv[2], &endptr, 10); local
442 if (pid_ul == ULONG_MAX || !endptr || *endptr || errno != 0)
444 pid_t pid = pid_ul;
  /external/chromium/base/
linux_util.cc 212 const unsigned long int pid_ul = strtoul(dent->d_name, &endptr, 10); local
213 if (pid_ul == ULONG_MAX || *endptr)
215 pids.push_back(pid_ul);
  /external/chromium_org/base/
linux_util.cc 212 const unsigned long int pid_ul = strtoul(dent->d_name, &endptr, 10); local
213 if (pid_ul == ULONG_MAX || *endptr)
215 pids.push_back(pid_ul);

Completed in 250 milliseconds