Home
last modified time | relevance | path

Searched refs:working_dir (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A Dappcert.pl120 $working_dir = $opt{'w'};
122 $working_dir = '';
124 if ($working_dir =~ /'/) {
131 $working_dir));
196 if ($working_dir) {
198 if (! -d $working_dir) {
199 if (! mkpath($working_dir) || ! -d $working_dir) {
205 $working_dir = create_tmp_dir($working_dir);
213 if (! -d $working_dir) {
238 $tmp_dir = "$working_dir/tmp";
[all …]
H A Dsymreport.pl77 if (! defined($working_dir) || ! -d $working_dir) {
79 "cannot locate working directory: %s\n"), $working_dir));
162 $tout .= "\n $working_dir\n\n";
418 my $cnt_file = "$working_dir/ProblemCount";
515 my $report_file = "$working_dir/Report";
H A DAppcertUtil.pm54 $working_dir
262 my $object_directory = $working_dir;
316 $outfile = "$working_dir/$outfile/info.file";
360 $outfile = "$working_dir/$outfile/info.dump";
414 $outfile = "$working_dir/$outfile/profile.dynamic.ldd";
498 $outfile = "$working_dir/$outfile/profile.dynamic";
626 $return_code_file = "$working_dir/ResultCode";
1223 $outfile = "$working_dir/$outfile/info.arch";
1484 my $cache_file = "$working_dir/AbiIndex";
H A Dsymcheck.pl95 if (! defined($working_dir) || ! -d $working_dir) {
97 "cannot locate working directory: %s\n"), $working_dir));
H A Dsymprof.pl79 if (! defined($working_dir) || ! -d $working_dir) {
81 "cannot locate working directory: %s\n"), $working_dir));
/illumos-gate/usr/src/lib/librestart/common/
H A Dlibrestart.h283 char *working_dir; /* NULL for :default */ member
H A Dlibrestart.c3094 cip->working_dir = strdup(cip->pwd.pw_dir); in restarter_get_method_context()
3095 if (cip->working_dir == NULL) { in restarter_get_method_context()
3100 cip->working_dir = strdup(cip->vbuf); in restarter_get_method_context()
3101 if (cip->working_dir == NULL) { in restarter_get_method_context()
3416 free(cip->working_dir); in restarter_get_method_context()
3770 if (cip->working_dir != NULL) { in restarter_set_method_context()
3772 r = chdir(cip->working_dir); in restarter_set_method_context()
3804 free(mcp->working_dir); in restarter_free_method_context()
/illumos-gate/usr/src/cmd/svc/startd/
H A Dmethod.c536 strerror(rsmc_errno), mcp->working_dir); in exec_method()