/third_party/ltp/testcases/kernel/syscalls/faccessat2/ |
H A D | faccessat201.c | 30 static char *abs_path; variable 40 {&bad_fd, &abs_path, 0}, 43 {&bad_fd, &abs_path, AT_EACCESS}, 61 abs_path = tst_aprintf("%s/%s", tmpdir_path, RELPATH); in setup() 66 SAFE_TOUCH(abs_path, 0444, NULL); in setup() 67 SAFE_SYMLINK(abs_path, TESTSYMLINK); in setup()
|
/third_party/node/deps/uvwasi/src/ |
H A D | path_resolver.c | 187 char* abs_path; in uvwasi__normalize_absolute_path() local 193 abs_path = uvwasi__malloc(uvwasi, abs_size); in uvwasi__normalize_absolute_path() 194 if (abs_path == NULL) { in uvwasi__normalize_absolute_path() 200 err = uvwasi__normalize_path(path, path_len, abs_path, path_len); in uvwasi__normalize_absolute_path() 205 if (0 == uvwasi__is_path_sandboxed(abs_path, in uvwasi__normalize_absolute_path() 213 *normalized_path = abs_path; in uvwasi__normalize_absolute_path() 218 uvwasi__free(uvwasi, abs_path); in uvwasi__normalize_absolute_path()
|
/third_party/ltp/testcases/kernel/syscalls/faccessat/ |
H A D | faccessat01.c | 33 static char *abs_path; variable 43 {&dir_fd, &abs_path, 0}, 60 abs_path = tst_aprintf("%s/%s", tmpdir_path, FILEPATH); in setup()
|
/third_party/ltp/testcases/kernel/syscalls/fchmodat/ |
H A D | fchmodat01.c | 64 char *abs_path = tst_get_tmpdir(); in setup() local 69 sprintf(testfile2, "%s/fchmodattest%d.txt", abs_path, p); in setup() 72 free(abs_path); in setup()
|
/third_party/ltp/testcases/kernel/syscalls/futimesat/ |
H A D | futimesat01.c | 101 char *abs_path = tst_get_tmpdir(); in setup() local 103 SAFE_ASPRINTF(cleanup, &testfile3, "%s/futimesatfile3.txt", abs_path); in setup() 104 free(abs_path); in setup()
|
/third_party/gn/src/base/files/ |
H A D | file_enumerator_win.cc | 159 const FilePath abs_path = root_path_.Append(filename); in Next() local 167 DWORD attributes = GetFileAttributes(ToWCharT(&abs_path.value())); in Next() 169 pending_paths_.push(abs_path); in Next() 173 return abs_path; in Next()
|
/third_party/ltp/testcases/kernel/syscalls/fstatat/ |
H A D | fstatat01.c | 118 char *abs_path = tst_get_tmpdir(); in setup() local 120 SAFE_ASPRINTF(cleanup, &testfile3, "%s/fstatattestfile3.txt", abs_path); in setup() 121 free(abs_path); in setup()
|
/third_party/openssl/test/ |
H A D | generate_ssl_tests.pl | 14 use Cwd qw/abs_path/; 32 $input_file = abs_path(shift);
|
/third_party/musl/scripts/ |
H A D | print_so_deps.py | 142 abs_path = os.path.join(path, so_name) 143 if self.is_path_exists(abs_path): 144 if self.pull_so(abs_path) == 0:
|
/third_party/curl/tests/ |
H A D | secureserver.pl | 39 use Cwd 'abs_path'; 198 $capath = abs_path($path); 200 $certfile = abs_path($certfile);
|
H A D | sshserver.pl | 32 use Cwd 'abs_path'; 461 $clipubkeyf_config = abs_path(pp($clipubkeyf)); 462 $hstprvkeyf_config = abs_path(pp($hstprvkeyf)); 854 $identity_config = abs_path(pp($identity)); 855 $knownhosts_config = abs_path(pp($knownhosts));
|
H A D | pathhelp.pm | 56 use Cwd 'abs_path'; 300 $path = Cwd::abs_path($path); 420 $path = Cwd::abs_path($path);
|
/third_party/node/deps/v8/ |
H A D | .ycm_extra_conf.py | 151 abs_path = os.path.normpath(os.path.join(out_dir, flag[2:])) 152 v8_flags.append('-I' + abs_path)
|
/third_party/ninja/src/ |
H A D | includes_normalize-win32.cc | 161 string abs_path = AbsPath(path, err); in Relativize() local 164 vector<StringPiece> path_list = SplitStringPiece(abs_path, '/'); in Relativize()
|
/third_party/ltp/docparse/ |
H A D | testinfo.pl | 10 use Cwd qw(abs_path); 13 use constant OUTDIR => dirname(abs_path($0));
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | Test.pm | 71 use Cwd qw/getcwd abs_path/; 938 $directories{SRCTOP} = abs_path($ENV{SRCTOP} || $ENV{TOP}); 939 $directories{BLDTOP} = abs_path($ENV{BLDTOP} || $ENV{TOP}); 1086 # abs_path(). 1092 my $abscurdir = abs_path(curdir()); 1093 my $absdir = abs_path($dir); 1122 my $oldpath = abs_path($directories{$_}); 1138 my $oldpath = abs_path($ENV{$_});
|
/third_party/openssl/util/perl/OpenSSL/ |
H A D | Test.pm | 71 use Cwd qw/getcwd abs_path/; 938 $directories{SRCTOP} = abs_path($ENV{SRCTOP} || $ENV{TOP}); 939 $directories{BLDTOP} = abs_path($ENV{BLDTOP} || $ENV{TOP}); 1086 # abs_path(). 1092 my $abscurdir = abs_path(curdir()); 1093 my $absdir = abs_path($dir); 1122 my $oldpath = abs_path($directories{$_}); 1138 my $oldpath = abs_path($ENV{$_});
|
/third_party/node/deps/v8/tools/mb/ |
H A D | mb.py | 1207 def RemoveDirectory(self, abs_path): 1214 self.Run(['cmd.exe', '/c', 'rmdir', '/q', '/s', abs_path]) 1216 shutil.rmtree(abs_path, ignore_errors=True)
|
/third_party/python/Lib/test/ |
H A D | test_site.py | 603 abs_path = os.path.abspath(os.path.join(sys_prefix, line)) 604 sys_path.append(abs_path)
|
/third_party/json/tools/cpplint/ |
H A D | cpplint.py | 6524 abs_path, base_name = os.path.split(abs_filename) 6528 cfg_file = os.path.join(abs_path, "CPPLINT.cfg") 6529 abs_filename = abs_path
|
/third_party/ltp/scripts/ |
H A D | checkpatch.pl | 14 use Cwd 'abs_path'; 19 my $D = dirname(abs_path($P)); 160 open(my $script, '<', abs_path($P)) or 1090 my $root_path = abs_path($root);
|
/third_party/libabigail/src/ |
H A D | abg-dwarf-reader.cc | 11934 const string& abs_path = 11936 result = rdr.corpus()->find_translation_unit(abs_path);
|