Searched refs:link_to (Results 1 – 8 of 8) sorted by relevance
/external/autotest/client/bin/ |
D | local_host.py | 100 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/ |
D | bisect_driver.py | 87 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/ |
D | file_util_unittest.cc | 647 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/ |
D | pathlib.py | 423 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/ |
D | pathlib.rst | 1146 .. method:: Path.link_to(target) 1216 :func:`os.link` :meth:`Path.link_to`
|
/external/python/cpython3/Lib/test/ |
D | test_pathlib.py | 1847 p.link_to(q) 1855 q.link_to(r) 1866 p.link_to(q)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a4.rst | 258 `pathlib.path.link_to()` is now implemented. It creates a hard link pointing
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.8.rst | 1086 Added :meth:`pathlib.Path.link_to()` which creates a hard link pointing
|