Home | History | Annotate | Download | only in services

Lines Matching full:process

42   ScopedProcess process(base::Bind(&ExitWithCode, kCustomExitCode));
44 int exit_code = process.WaitForExit(&got_signaled);
49 // process.
51 int exit_code2 = process.WaitForExit(&got_signaled2);
59 ScopedProcess process(base::Bind(&RaiseAndExit, SIGABRT));
61 int exit_code = process.WaitForExit(&got_signaled);
67 ScopedProcess process(base::Bind(&DoNothing));
69 ASSERT_EQ(0, kill(process.GetPid(), SIGKILL));
70 int exit_code = process.WaitForExit(&got_signaled);
81 { ScopedProcess process(base::Bind(&DoExit)); }
89 // If the child process is dead for real, there will be no writing end
100 // that process.WaitForClosureToRun() should return false, even though the
116 // Start a process with a closure that takes a little bit to run.
117 ScopedProcess process(
119 EXPECT_TRUE(process.WaitForClosureToRun());