Home | History | Annotate | Download | only in base

Lines Matching refs:success

52                        bool* success) {
106 if (success)
107 *success = (ret_pid != -1);
678 bool success = (sigaction(SIGPIPE, &action, NULL) == 0);
681 success &= (signal(SIGILL, handler) != SIG_ERR);
682 success &= (signal(SIGABRT, handler) != SIG_ERR);
683 success &= (signal(SIGFPE, handler) != SIG_ERR);
684 success &= (signal(SIGBUS, handler) != SIG_ERR);
685 success &= (signal(SIGSEGV, handler) != SIG_ERR);
686 success &= (signal(SIGSYS, handler) != SIG_ERR);
688 return success;
874 // environment. Redirects stderr to /dev/null. Returns true on success
875 // (application launched and exited cleanly, with exit code indicating success).
978 // Always wait for exit code (even if we know we'll declare success).
980 bool success = WaitForExitCode(pid, &exit_code);
983 // success (because the child may exit due to |SIGPIPE|).
985 if (!success || exit_code != EXIT_SUCCESS)