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

  /frameworks/av/media/audioserver/
main_audioserver.cpp 55 pid_t childPid;
61 if (doLog && (childPid = fork()) != 0) {
72 int ret = waitid(P_PID, childPid, &info, WEXITED | WSTOPPED | WCONTINUED);
  /external/honggfuzz/linux/
arch.c 240 pid_t childPid = run->pid;
247 if (childPid != ptracePid && kill(ptracePid, 0) == -1) {
272 if (childPid != ptracePid) {
273 if (arch_traceWaitForPidStop(childPid) == false) {
274 LOG_F("PID: %d not in a stopped state", childPid);
276 if (kill(childPid, SIGCONT) == -1) {
277 PLOG_F("Restarting PID: %d failed", childPid);
284 pid_t childPid = run->pid;
318 if (ptracePid == childPid) {
322 if (pid == childPid && (WIFEXITED(status) || WIFSIGNALED(status)))
    [all...]
  /frameworks/base/tools/incident_report/
main.cpp 453 pid_t childPid = -1;
515 childPid = fork();
516 if (childPid == -1) {
519 } else if (childPid == 0) {
587 if (childPid != -1) {
590 waitpid(childPid, &status, 0);
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 116 int childPid = getChildProcessPid(process);
119 Os.stat("/proc/" + childPid + "/fd/0").st_ino,
120 Os.stat("/proc/" + childPid + "/fd/1").st_ino,
121 Os.stat("/proc/" + childPid + "/fd/2").st_ino);
  /external/selinux/policycoreutils/newrole/
newrole.c 1036 pid_t childPid = 0;
1181 childPid = fork();
1182 if (childPid < 0) {
1192 } else if (childPid) {
    [all...]

Completed in 134 milliseconds