Home
last modified time | relevance | path

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

/external/autotest/client/bin/
Dlocal_host.py100 link_to = os.path.join(os.path.dirname(path),
102 if link_to not in closure:
103 paths.add(link_to)
/external/toolchain-utils/binary_search_tool/
Dbisect_driver.py87 def log_to_file(path, execargs, link_from=None, link_to=None): argument
95 if link_from and link_to:
96 log.write('%s -> %s\n' % (link_from, link_to))
/external/libchrome/base/files/
Dfile_util_unittest.cc647 FilePath link_to = temp_dir_.GetPath().Append(FPL("to_file")); in TEST_F() local
648 CreateTextFile(link_to, bogus_content); in TEST_F()
650 ASSERT_TRUE(CreateSymbolicLink(link_to, link_from)) in TEST_F()
659 EXPECT_EQ(link_to.value(), result.value()); in TEST_F()
663 link_to = temp_dir_.GetPath().Append(FPL("to_dir")); in TEST_F()
664 ASSERT_TRUE(CreateDirectory(link_to)); in TEST_F()
665 ASSERT_TRUE(CreateSymbolicLink(link_to, link_from)) in TEST_F()
669 EXPECT_FALSE(CreateSymbolicLink(link_to, link_to)); in TEST_F()
670 EXPECT_FALSE(ReadSymbolicLink(link_to, &result)); in TEST_F()
683 FilePath link_to = temp_dir_.GetPath().Append(FPL("to_file")); in TEST_F() local
[all …]
/external/python/cpython3/Lib/
Dpathlib.py423 link_to = os.link variable in _NormalAccessor
426 def link_to(self, target): member in _NormalAccessor
1361 def link_to(self, target): member in Path
1365 self._accessor.link_to(self, target)
/external/python/cpython3/Doc/library/
Dpathlib.rst1146 .. method:: Path.link_to(target)
1216 :func:`os.link` :meth:`Path.link_to`
/external/python/cpython3/Lib/test/
Dtest_pathlib.py1847 p.link_to(q)
1855 q.link_to(r)
1866 p.link_to(q)
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a4.rst258 `pathlib.path.link_to()` is now implemented. It creates a hard link pointing
/external/python/cpython3/Doc/whatsnew/
D3.8.rst1086 Added :meth:`pathlib.Path.link_to()` which creates a hard link pointing