Home | History | Annotate | Download | only in process

Lines Matching refs:exit_code

536 // in |*exit_code|, which should be checked to determine if the application
545 int* exit_code) {
548 // exit_code must be supplied so calling function can determine success.
549 DCHECK(exit_code);
550 *exit_code = EXIT_FAILURE;
641 bool success = process.WaitForExit(exit_code);
660 int exit_code;
663 &exit_code);
664 return result == EXECUTE_SUCCESS && exit_code == EXIT_SUCCESS;
669 int exit_code;
672 true, &exit_code);
673 return result == EXECUTE_SUCCESS && exit_code == EXIT_SUCCESS;
682 int exit_code;
684 cl.argv(), &empty_environ, false, output, max_output, false, &exit_code);
686 exit_code == EXIT_SUCCESS);
691 int* exit_code) {
695 true, exit_code);