Home | History | Annotate | Download | only in base

Lines Matching defs:success

42                        bool* success) {
88 if (success)
89 *success = (ret_pid != -1);
515 bool success = (sigaction(SIGPIPE, &action, NULL) == 0);
518 success &= (signal(SIGSEGV, &StackDumpSignalHandler) != SIG_ERR);
519 success &= (signal(SIGILL, &StackDumpSignalHandler) != SIG_ERR);
520 success &= (signal(SIGBUS, &StackDumpSignalHandler) != SIG_ERR);
521 success &= (signal(SIGFPE, &StackDumpSignalHandler) != SIG_ERR);
522 return success;
625 // environment. Redirects stderr to /dev/null. Returns true on success
626 // (application launched and exited cleanly, with exit code indicating success).
705 // Always wait for exit code (even if we know we'll declare success).
707 bool success = WaitForExitCode(pid, &exit_code);
710 // success (because the child may exit due to |SIGPIPE|).
712 if (!success || exit_code != EXIT_SUCCESS)