Searched refs:ismount (Results 1 – 15 of 15) sorted by relevance
/third_party/python/Lib/test/ |
D | test_ntpath.py | 721 self.assertTrue(ntpath.ismount("c:\\")) 722 self.assertTrue(ntpath.ismount("C:\\")) 723 self.assertTrue(ntpath.ismount("c:/")) 724 self.assertTrue(ntpath.ismount("C:/")) 725 self.assertTrue(ntpath.ismount("\\\\.\\c:\\")) 726 self.assertTrue(ntpath.ismount("\\\\.\\C:\\")) 728 self.assertTrue(ntpath.ismount(b"c:\\")) 729 self.assertTrue(ntpath.ismount(b"C:\\")) 730 self.assertTrue(ntpath.ismount(b"c:/")) 731 self.assertTrue(ntpath.ismount(b"C:/")) [all …]
|
D | test_posixpath.py | 179 self.assertIs(posixpath.ismount("/"), True) 180 self.assertIs(posixpath.ismount(b"/"), True) 184 self.assertIs(posixpath.ismount(ABSTFN), False) 187 self.assertIs(posixpath.ismount(ABSTFN), False) 191 self.assertIs(posixpath.ismount('/\udfff'), False) 192 self.assertIs(posixpath.ismount(b'/\xff'), False) 193 self.assertIs(posixpath.ismount('/\x00'), False) 194 self.assertIs(posixpath.ismount(b'/\x00'), False) 202 self.assertIs(posixpath.ismount(ABSTFN), False) 220 self.assertIs(posixpath.ismount(ABSTFN), True) [all …]
|
/third_party/ltp/testcases/kernel/syscalls/mount/ |
D | mount06.c | 46 static int ismount(char *mntpoint); 80 if (!ismount(mntpoint_src) && ismount(mntpoint_des)) in main() 96 int ismount(char *mntpoint) in ismount() function
|
/third_party/libfuse/test/ |
D | util.py | 38 test_fn=os.path.ismount): 80 assert not os.path.ismount(mnt_dir)
|
/third_party/python/Tools/scripts/ |
D | findlinksto.py | 31 if os.path.ismount(dirname):
|
/third_party/python/Lib/ |
D | posixpath.py | 186 def ismount(path): function
|
D | ntpath.py | 262 def ismount(path): function
|
/third_party/python/Doc/library/ |
D | os.path.rst | 59 :func:`islink`, and :func:`ismount` now return ``False`` instead of 286 .. function:: ismount(path)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 1190 posixpath.ismount now correctly recognizes mount points which the user does
|
D | 3.5.3rc1.rst | 1157 posixpath.ismount now correctly recognizes mount points which the user does
|
D | 3.7.0a1.rst | 1996 implemented on POSIX). This is similar to ``os.path.ismount(p)``. Patch by
|
D | 3.8.0a1.rst | 4154 :func:`~os.path.ismount`, and :mod:`pathlib.Path` methods that return a
|
/third_party/python/Doc/whatsnew/ |
D | 3.8.rst | 1054 :func:`~os.path.isfile`, :func:`~os.path.islink`, and :func:`~os.path.ismount`
|
D | 3.4.rst | 1188 :func:`os.path.ismount` now recognizes volumes mounted below a drive
|
/third_party/python/Misc/ |
D | HISTORY | 4309 - Issue #9035: ismount now recognises volumes mounted below a drive root 4760 - Issue #18530: Remove additional stat call from posixpath.ismount. 12593 - Issue #1713: Fix os.path.ismount(), which returned true for symbolic links 15172 - Issue #5595: Fix UnboundedLocalError in ntpath.ismount(). 17017 - Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a 34240 posixpath: changed implementation of ismount()
|