Searched refs:exit_code (Results 26 - 50 of 74) sorted by relevance

123

/freebsd-13-stable/stand/efi/loader/
H A Defi_main.c39 efi_exit(EFI_STATUS exit_code) argument
43 BS->Exit(IH, exit_code, 0, NULL);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_netbsd_libcdep.cpp216 int exit_code = 0; local
219 exit_code = 3;
224 exit_code = 0;
229 return exit_code;
H A Dsanitizer_stoptheworld_linux_libcdep.cpp315 int exit_code = 0; local
318 exit_code = 3;
323 exit_code = 0;
328 return exit_code;
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/
H A Dgtest-death-test.h94 // bool KilledBySIGHUP(int exit_code) {
95 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
193 explicit ExitedWithCode(int exit_code);
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgoogletest-color-test.py64 return not p.exited or p.exit_code
H A Dgoogletest-throw-on-failure-test.py73 return p.exited and p.exit_code == 0
H A Dgtest_xml_outfiles_test.py112 self.assertEquals(0, p.exit_code)
H A Dgoogletest-json-output-unittest.py516 self.assertEquals(0, p.exit_code)
542 self.assertEquals(1, p.exit_code,
545 % (command, p.exit_code, 1))
583 self.assertEquals(expected_exit_code, p.exit_code,
586 % (command, p.exit_code, expected_exit_code))
H A Dgoogletest-filter-unittest.py203 return (tests_run, p.exit_code)
319 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
321 self.assertEqual(0, exit_code)
H A Dgoogletest-json-outfiles-test.py137 self.assertEquals(0, p.exit_code)
/freebsd-13-stable/contrib/ntp/sntp/libopts/
H A Dproto.h102 option_exits(int exit_code);
H A Dmakeshell.c77 option_exits(int exit_code) argument
80 printf("\nexit %d\n", exit_code);
81 exit(exit_code);
H A Dusage.c54 print_usage_details(tOptions * opts, int exit_code);
337 * @param[in] exit_code whether or not there was a usage error reported.
341 print_usage_details(tOptions * opts, int exit_code) argument
364 if ( (exit_code != EXIT_SUCCESS)
373 prt_opt_usage(opts, exit_code, pOptTitle);
399 if (exit_code == EXIT_SUCCESS)
571 int exit_code = (usage_exit_code == AO_EXIT_REQ_USAGE) local
588 if (exit_code == EXIT_SUCCESS) {
614 if ((exit_code == EXIT_SUCCESS) ||
627 option_exits(exit_code);
[all...]
/freebsd-13-stable/contrib/subversion/subversion/svnmucc/
H A Dsvnmucc.c468 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool) argument
558 *exit_code = EXIT_FAILURE;
962 *exit_code = EXIT_FAILURE;
984 int exit_code = EXIT_SUCCESS; local
996 err = sub_main(&exit_code, argc, argv, pool);
1004 exit_code = EXIT_FAILURE;
1009 return exit_code;
/freebsd-13-stable/contrib/subversion/subversion/svnrdump/
H A Dsvnrdump.c789 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool)
840 *exit_code = EXIT_FAILURE;
973 *exit_code = EXIT_FAILURE;
993 *exit_code = EXIT_FAILURE;
1026 *exit_code = EXIT_FAILURE;
1075 *exit_code = EXIT_FAILURE;
1163 int exit_code = EXIT_SUCCESS;
1175 err = sub_main(&exit_code, argc, argv, pool);
1183 exit_code = EXIT_FAILURE;
1191 return exit_code;
787 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool) argument
1161 int exit_code = EXIT_SUCCESS; local
[all...]
/freebsd-13-stable/contrib/subversion/subversion/svnserve/
H A Dsvnserve.c707 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool)
787 *exit_code = EXIT_FAILURE;
1011 *exit_code = EXIT_FAILURE;
1026 *exit_code = EXIT_FAILURE;
1036 *exit_code = EXIT_FAILURE;
1158 *exit_code = EXIT_FAILURE;
1402 int exit_code = EXIT_SUCCESS;
1412 err = sub_main(&exit_code, argc, argv, pool);
1420 exit_code = EXIT_FAILURE;
1434 return exit_code;
706 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool) argument
1401 int exit_code = EXIT_SUCCESS; local
[all...]
/freebsd-13-stable/contrib/subversion/subversion/svndumpfilter/
H A Dsvndumpfilter.c1298 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool)
1321 *exit_code = EXIT_FAILURE;
1345 *exit_code = EXIT_FAILURE;
1389 *exit_code = EXIT_FAILURE;
1435 *exit_code = EXIT_FAILURE;
1453 *exit_code = EXIT_FAILURE;
1513 *exit_code = EXIT_FAILURE;
1546 *exit_code = EXIT_FAILURE;
1574 int exit_code = EXIT_SUCCESS;
1586 err = sub_main(&exit_code, arg
1294 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool) argument
1570 int exit_code = EXIT_SUCCESS; local
[all...]
/freebsd-13-stable/crypto/heimdal/kdc/
H A Dhprop.c393 int type, exit_code; local
461 exit_code = dump_database (context, type, database, db);
463 exit_code = propagate_database (context, type, database,
473 return exit_code;
/freebsd-13-stable/sbin/ifconfig/
H A Difconfig.h144 extern int exit_code;
/freebsd-13-stable/usr.bin/m4/
H A Dextern.h94 extern int exit_code;
183 extern int error_warns; /* make warnings cause exit_code = 1 */
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest-death-test.cc155 ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { argument
196 static std::string ExitSummary(int exit_code) { argument
201 m << "Exited with exit status " << exit_code; local
205 if (WIFEXITED(exit_code)) {
206 m << "Exited with exit status " << WEXITSTATUS(exit_code);
207 } else if (WIFSIGNALED(exit_code)) {
208 m << "Terminated by signal " << WTERMSIG(exit_code);
211 if (WCOREDUMP(exit_code)) {
/freebsd-13-stable/contrib/ntp/ntpd/
H A Dntpd.c592 int exit_code; local
605 exit_code = EX_OSERR;
609 exit_code = wait_child_sync_if(
611 DPRINTF(1, ("sync_if: rc=%d\n", exit_code));
612 if (exit_code <= 0) {
617 exit_code = wait_child_exit_if(
618 cpid, (exit_code < 0));
619 DPRINTF(1, ("exit_if: rc=%d\n", exit_code));
622 exit(exit_code);
/freebsd-13-stable/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp679 int exit_code = sb_interpreter.GetQuitStatus(); local
681 return exit_code;
877 if (auto exit_code = InitializeReproducer(argv[0], input_args)) {
878 return *exit_code;
897 int exit_code = 0; local
906 exit_code = 1;
910 exit_code = driver.MainLoop();
915 return exit_code;
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock_stress_test.cc316 const int exit_code = RUN_ALL_TESTS(); // Expected to fail. local
317 GTEST_CHECK_(exit_code != 0) << "RUN_ALL_TESTS() did not fail as expected";
/freebsd-13-stable/contrib/subversion/subversion/svn/
H A Dsvn.c2026 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool)
2102 *exit_code = EXIT_FAILURE;
2123 *exit_code = EXIT_FAILURE;
2717 *exit_code = EXIT_FAILURE;
2747 *exit_code = EXIT_FAILURE;
2781 *exit_code = EXIT_FAILURE;
3317 int exit_code = EXIT_SUCCESS;
3329 err = sub_main(&exit_code, argc, argv, pool);
3337 exit_code = EXIT_FAILURE;
3345 return exit_code;
2022 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool) argument
3313 int exit_code = EXIT_SUCCESS; local
[all...]

Completed in 338 milliseconds

123