Home
last modified time | relevance | path

Searched refs:symlink_path (Results 1 – 5 of 5) sorted by relevance

/third_party/flutter/build/skia/
Dmake_skia_include_dir.py34 symlink_path = argv[2]
37 dst_path = os.path.abspath(symlink_path)
/third_party/gn/src/base/files/
Dfile_util_posix.cc279 const FilePath& symlink_path) { in CreateSymbolicLink() argument
280 DCHECK(!symlink_path.empty()); in CreateSymbolicLink()
282 return ::symlink(target_path.value().c_str(), symlink_path.value().c_str()) != in CreateSymbolicLink()
286 bool ReadSymbolicLink(const FilePath& symlink_path, FilePath* target_path) { in ReadSymbolicLink() argument
287 DCHECK(!symlink_path.empty()); in ReadSymbolicLink()
290 ssize_t count = ::readlink(symlink_path.value().c_str(), buf, std::size(buf)); in ReadSymbolicLink()
/third_party/python/Lib/test/support/
Dos_helper.py174 symlink_path = TESTFN + "can_symlink"
176 os.symlink(TESTFN, symlink_path)
181 os.remove(symlink_path)
/third_party/libuv/test/
Dtest-fs.c2600 const char* symlink_path = "test_file_symlink"; in TEST_IMPL() local
2616 unlink(symlink_path); in TEST_IMPL()
2617 s = uv_fs_symlink(NULL, &req, path, symlink_path, 0, NULL); in TEST_IMPL()
2637 checkme.path = symlink_path; in TEST_IMPL()
2640 r = uv_fs_lutime(NULL, &req, symlink_path, atime, mtime, NULL); in TEST_IMPL()
2655 checkme.path = symlink_path; in TEST_IMPL()
2657 r = uv_fs_lutime(loop, &req, symlink_path, atime, mtime, lutime_cb); in TEST_IMPL()
2664 unlink(symlink_path); in TEST_IMPL()
/third_party/ltp/testcases/kernel/fs/fsstress/
Dfsstress.c276 int symlink_path(const char *, pathname_t *);
1303 int symlink_path(const char *name1, pathname_t * name) in symlink_path() function
1319 rval = symlink_path(name1, &newname); in symlink_path()
2493 e = symlink_path(val, &f) < 0 ? errno : 0; in symlink_f()