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.pl118 $working_dir = $opt{'w'};
120 $working_dir = '';
122 if ($working_dir =~ /'/) {
129 $working_dir));
194 if ($working_dir) {
196 if (! -d $working_dir) {
197 if (! mkpath($working_dir) || ! -d $working_dir) {
198 exiter(nocreatedir($working_dir, $!));
201 if (! dir_is_empty($working_dir)) {
203 $working_dir = create_tmp_dir($working_dir);
[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.pm52 $working_dir
260 my $object_directory = $working_dir;
314 $outfile = "$working_dir/$outfile/info.file";
358 $outfile = "$working_dir/$outfile/info.dump";
412 $outfile = "$working_dir/$outfile/profile.dynamic.ldd";
496 $outfile = "$working_dir/$outfile/profile.dynamic";
624 $return_code_file = "$working_dir/ResultCode";
1221 $outfile = "$working_dir/$outfile/info.arch";
1482 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.h288 char *working_dir; /* NULL for :default */ member
H A Dlibrestart.c3108 cip->working_dir = strdup(cip->pwd.pw_dir); in restarter_get_method_context()
3109 if (cip->working_dir == NULL) { in restarter_get_method_context()
3114 cip->working_dir = strdup(cip->vbuf); in restarter_get_method_context()
3115 if (cip->working_dir == NULL) { in restarter_get_method_context()
3430 free(cip->working_dir); in restarter_get_method_context()
3449 free(cip->working_dir); in restarter_get_method_context()
3450 cip->working_dir = NULL; in restarter_get_method_context()
3792 if (cip->working_dir != NULL) { in restarter_set_method_context()
3794 r = chdir(cip->working_dir); in restarter_set_method_context()
3826 free(mcp->working_dir); in restarter_free_method_context()
/illumos-gate/usr/src/cmd/svc/startd/
H A Dmethod.c537 strerror(rsmc_errno), mcp->working_dir); in exec_method()