Home
last modified time | relevance | path

Searched refs:sh_argv (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/atf/atf-sh/
H A Datf-check.cpp439 const char* sh_argv[4]; in execute_with_shell() local
440 sh_argv[0] = shell.c_str(); in execute_with_shell()
441 sh_argv[1] = "-c"; in execute_with_shell()
442 sh_argv[2] = cmd.c_str(); in execute_with_shell()
443 sh_argv[3] = NULL; in execute_with_shell()
444 return execute(sh_argv); in execute_with_shell()
/freebsd/sbin/init/
H A Dinit.c1034 char* sh_argv[3 + SCRIPT_ARGV_SIZE]; in execute_script() local
1067 sh_argv[0] = __DECONST(char*, shell); in execute_script()
1071 sh_argv[1] = __DECONST(char*, "-o"); in execute_script()
1072 sh_argv[2] = __DECONST(char*, "verify"); in execute_script()
1077 sh_argv[i + sh_argv_len] = argv[i]; in execute_script()
1078 execv(shell, sh_argv); in execute_script()