Lines Matching full:process
41 ScopedProcess process(base::Bind(&ExitWithCode, kCustomExitCode));
43 int exit_code = process.WaitForExit(&got_signaled);
48 // process.
50 int exit_code2 = process.WaitForExit(&got_signaled2);
58 ScopedProcess process(base::Bind(&RaiseAndExit, SIGABRT));
60 int exit_code = process.WaitForExit(&got_signaled);
66 ScopedProcess process(base::Bind(&base::DoNothing));
68 ASSERT_EQ(0, kill(process.GetPid(), SIGKILL));
69 int exit_code = process.WaitForExit(&got_signaled);
80 { ScopedProcess process(base::Bind(&DoExit)); }
88 // If the child process is dead for real, there will be no writing end
99 // that process.WaitForClosureToRun() should return false, even though the
115 // Start a process with a closure that takes a little bit to run.
116 ScopedProcess process(
118 EXPECT_TRUE(process.WaitForClosureToRun());