OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs: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
459
unsigned long
pid_ul
= strtoul(argv[2], &endptr, 10);
local
460
if (
pid_ul
== ULONG_MAX || !endptr || *endptr || errno != 0)
462
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 27 milliseconds