Searched refs:exit_code (Results 1 - 25 of 46) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilLinux.cpp25 int exit_code = system(CmdLine.c_str()); local
26 if (WIFEXITED(exit_code))
27 return WEXITSTATUS(exit_code);
28 return exit_code;
/freebsd-11-stable/contrib/netbsd-tests/fs/tmpfs/
H A Dh_funcs.subr64 exit_code=$?
65 atf_check_equal "$exit_code" "0"
66 return $exit_code
/freebsd-11-stable/contrib/subversion/subversion/svnfsfs/
H A Dsvnfsfs.c234 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool)
257 *exit_code = EXIT_FAILURE;
283 *exit_code = EXIT_FAILURE;
332 *exit_code = EXIT_FAILURE;
367 *exit_code = EXIT_FAILURE;
385 *exit_code = EXIT_FAILURE;
441 *exit_code = EXIT_FAILURE;
482 int exit_code = EXIT_SUCCESS;
494 err = sub_main(&exit_code, argc, argv, pool);
502 exit_code
231 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool) argument
479 int exit_code = EXIT_SUCCESS; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectQuit.cpp85 int exit_code; local
86 if (arg.getAsInteger(/*autodetect radix*/ 0, exit_code)) {
94 if (!m_interpreter.SetQuitExitCode(exit_code)) {
/freebsd-11-stable/contrib/subversion/subversion/svnversion/
H A Dsvnversion.c127 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool) argument
173 *exit_code = EXIT_FAILURE;
196 *exit_code = EXIT_FAILURE;
209 *exit_code = EXIT_FAILURE;
257 *exit_code = EXIT_FAILURE;
295 int exit_code = EXIT_SUCCESS; local
307 err = sub_main(&exit_code, argc, argv, pool);
315 exit_code = EXIT_FAILURE;
320 return exit_code;
/freebsd-11-stable/contrib/subversion/subversion/svnserve/
H A Dwinservice.c441 winservice_stop(DWORD exit_code)
445 winservice_status.dwWin32ExitCode = exit_code;
461 exit_code = winservice_status.dwWin32ExitCode;
440 winservice_stop(DWORD exit_code) argument
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-11-stable/crypto/heimdal/lib/roken/
H A Dresolve-test.c75 int optidx = 0, i, exit_code = 0; local
101 exit_code = 1;
184 return exit_code;
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnet/
H A Dmain.c63 usage(int exit_code) argument
80 exit(exit_code);
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Derror.c203 * @param exit_code exit() code from process.
212 hx509_err(hx509_context context, int exit_code, argument
226 errx(exit_code, "%s: %s", str, msg);
/freebsd-11-stable/usr.bin/catman/
H A Dcatman.c71 static int exit_code; /* exit code to use when finished */ variable
290 exit_code = 1;
363 exit_code = 1;
373 exit_code = 1;
399 exit_code = 1;
477 exit_code = 1;
628 exit_code = 1;
642 exit_code = 1;
707 exit_code = 1;
818 exit(exit_code);
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svnbench/
H A Dsvnbench.c393 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool)
443 *exit_code = EXIT_FAILURE;
464 *exit_code = EXIT_FAILURE;
762 *exit_code = EXIT_FAILURE;
781 *exit_code = EXIT_FAILURE;
815 *exit_code = EXIT_FAILURE;
1049 int exit_code = EXIT_SUCCESS;
1061 err = sub_main(&exit_code, argc, argv, pool);
1069 exit_code = EXIT_FAILURE;
1077 return exit_code;
389 sub_main(int *exit_code, int argc, const char *argv[], apr_pool_t *pool) argument
1045 int exit_code = EXIT_SUCCESS; local
[all...]
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtput.c127 exit_code(int token, int value) function
271 return exit_code(BOOLEAN, status);
274 return exit_code(NUMBER, 0);
355 return exit_code(STRING, 0);
357 return exit_code(STRING, 1);
/freebsd-11-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-11-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-11-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-11-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-11-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-11-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-11-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-11-stable/usr.bin/m4/
H A Dextern.h92 extern int exit_code;
181 extern int error_warns; /* make warnings cause exit_code = 1 */
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntpd.c566 int exit_code; local
579 exit_code = EX_OSERR;
583 exit_code = wait_child_sync_if(
585 DPRINTF(1, ("sync_if: rc=%d\n", exit_code));
586 if (exit_code <= 0) {
591 exit_code = wait_child_exit_if(
592 cpid, (exit_code < 0));
593 DPRINTF(1, ("exit_if: rc=%d\n", exit_code));
596 exit(exit_code);

Completed in 313 milliseconds

12