Home
last modified time | relevance | path

Searched refs:symlink_file (Results 1 – 25 of 38) sorted by relevance

12

/external/libcxx/utils/
Dgen_link_script.py54 symlink_file = args[0]
56 return dryrun, symlink_file, public_libs
59 dryrun, symlink_file, public_libs = parse_args()
62 if not os.path.islink(symlink_file):
63 print_and_exit("symlink file %s is not a symlink" % symlink_file)
66 linked_libcxx = os.readlink(symlink_file)
74 print("GENERATING SCRIPT: '%s' as file %s" % (contents, symlink_file))
78 os.unlink(symlink_file)
79 with open(symlink_file, 'w') as f:
/external/rust/crates/tokio/src/fs/
Dmod.rs100 mod symlink_file;
101 pub use self::symlink_file::symlink_file;
Dsymlink_file.rs14 pub async fn symlink_file(src: impl AsRef<Path>, dst: impl AsRef<Path>) -> io::Result<()> { in symlink_file() function
18 asyncify(move || std::os::windows::fs::symlink_file(src, dst)).await in symlink_file()
/external/rust/cxx/gen/src/
Dfs.rs121 pub(crate) use self::symlink_file as symlink_dir;
128 pub(crate) fn symlink_file(original: impl AsRef<Path>, link: impl AsRef<Path>) -> Result<()> { in symlink_file() function
133 pub(crate) fn symlink_file(original: impl AsRef<Path>, link: impl AsRef<Path>) -> Result<()> { in symlink_file() function
137 std::os::windows::fs::symlink_file, in symlink_file()
/external/rust/cxx/gen/build/src/
Dlib.rs383 out::symlink_file(original, cxx_h)?; in make_include_dir()
384 out::symlink_file(original, shared_cxx_h)?; in make_include_dir()
387 out::symlink_file(shared_cxx_h, cxx_h)?; in make_include_dir()
409 let _ = out::symlink_file(header_path, link_path); in generate_bridge()
418 let _ = out::symlink_file(header_path, shared_h); in generate_bridge()
419 let _ = out::symlink_file(implementation_path, shared_cc); in generate_bridge()
Dpaths.rs43 pub(crate) use self::fs::symlink_file as symlink_or_copy;
54 if fs::symlink_file(original, link).is_err() { in symlink_or_copy()
Dout.rs31 pub(crate) fn symlink_file(original: impl AsRef<Path>, link: impl AsRef<Path>) -> Result<()> { in symlink_file() function
/external/rust/crates/walkdir/src/tests/
Dutil.rs146 pub fn symlink_file<P1: AsRef<Path>, P2: AsRef<Path>>( in symlink_file() method
153 use std::os::windows::fs::symlink_file; in symlink_file()
154 symlink_file(src, link_name) in symlink_file()
Drecursive.rs328 dir.symlink_file("a", "a-link"); in sym_root_file_nofollow()
359 dir.symlink_file("a", "a-link"); in sym_root_file_follow()
461 dir.symlink_file("a", "a-link"); in sym_file_nofollow()
497 dir.symlink_file("a", "a-link"); in sym_file_follow()
651 dir.symlink_file("a", "a"); in sym_self_loop_no_error()
676 dir.symlink_file("a", "a"); in sym_file_self_loop_io_error()
/external/rust/crates/same-file/src/
Dlib.rs481 use std::os::windows::fs::symlink_file; in soft_link_file()
482 symlink_file(src, dst) in soft_link_file()
/external/llvm/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp133 case sys::fs::file_type::symlink_file: in expandBundle()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFileCollector.cpp224 It->type() == sys::fs::file_type::symlink_file) { in dir_begin()
/external/llvm-project/llvm/lib/Support/
DFileCollector.cpp124 It->type() == sys::fs::file_type::symlink_file) { in addDirectoryImpl()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DFileSystem.h71 symlink_file, enumerator
1365 if (type == file_type::symlink_file && Follow) { in increment()
/external/llvm-project/llvm/include/llvm/Support/
DFileSystem.h71 symlink_file, enumerator
1411 if (type == file_type::symlink_file && Follow) { in increment()
/external/llvm-project/lldb/unittests/Host/
DFileSystemTest.cpp152 sys::fs::file_type::symlink_file, sys::fs::all_all); in addSymlink()
/external/llvm-project/llvm/tools/llvm-gsymutil/
Dllvm-gsymutil.cpp156 case sys::fs::file_type::symlink_file: in expandBundle()
/external/llvm-project/lldb/source/Symbol/
DLocateSymbolFileMacOSX.cpp231 case file_type::symlink_file: in LocateMacOSXFilesUsingDebugSymbols()
/external/llvm/include/llvm/Support/
DFileSystem.h61 symlink_file, enumerator
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFileSystem.h60 symlink_file, enumerator
/external/llvm-project/lldb/source/Core/
DDebugger.cpp533 if (ft == fs::file_type::regular_file || ft == fs::file_type::symlink_file || in LoadPluginCallback()
548 ft == fs::file_type::symlink_file || in LoadPluginCallback()
DPluginManager.cpp88 if (ft == fs::file_type::regular_file || ft == fs::file_type::symlink_file || in LoadPluginCallback()
132 ft == fs::file_type::symlink_file || ft == fs::file_type::type_unknown) { in LoadPluginCallback()
/external/llvm-project/llvm/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp592 case sys::fs::file_type::symlink_file: in expandBundle()
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_utils_test.py3923 expected = [(os.path.realpath(layout.symlink_file), device_path, False)]
3925 device_utils._IterPushableComponents(layout.symlink_file,
3947 (os.path.realpath(layout.symlink_file),
3948 posixpath.join(device_path, os.path.basename(layout.symlink_file)),
3978 (os.path.realpath(layout.symlink_file),
3982 os.path.relpath(layout.symlink_file, layout.root))), False),
/external/llvm-project/lldb/source/Target/
DPlatform.cpp596 case fs::file_type::symlink_file: { in RecurseCopy_Callback()
729 case fs::file_type::symlink_file: { in Install()

12