OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:childPid
(Results
1 - 4
of
4
) sorted by null
/hardware/libhardware/tests/camera2/
TestForkerEventListener.cpp
51
pid_t
childPid
= fork();
52
if (
childPid
!= 0) {
54
waitpid(
childPid
, &status, /*options*/0);
/frameworks/av/media/audioserver/
main_audioserver.cpp
45
pid_t
childPid
;
51
if (doLog && (
childPid
= fork()) != 0) {
62
int ret = waitid(P_PID,
childPid
, &info, WEXITED | WSTOPPED | WCONTINUED);
/external/skia/tools/kilobench/
kilobench.cpp
604
int
childPid
= fork();
605
if (
childPid
> 0) {
622
waitpid(
childPid
, &status, 0);
623
} else if (0 ==
childPid
) {
/external/selinux/policycoreutils/newrole/
newrole.c
1037
pid_t
childPid
= 0;
1181
childPid
= fork();
1182
if (
childPid
< 0) {
1192
} else if (
childPid
) {
[
all
...]
Completed in 2297 milliseconds