Home
last modified time | relevance | path

Searched refs:ismount (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Lib/test/
Dtest_ntpath.py721 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 …]
Dtest_posixpath.py179 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/
Dmount06.c46 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/
Dutil.py38 test_fn=os.path.ismount):
80 assert not os.path.ismount(mnt_dir)
/third_party/python/Tools/scripts/
Dfindlinksto.py31 if os.path.ismount(dirname):
/third_party/python/Lib/
Dposixpath.py186 def ismount(path): function
Dntpath.py262 def ismount(path): function
/third_party/python/Doc/library/
Dos.path.rst59 :func:`islink`, and :func:`ismount` now return ``False`` instead of
286 .. function:: ismount(path)
/third_party/python/Misc/NEWS.d/
D3.6.0b1.rst1190 posixpath.ismount now correctly recognizes mount points which the user does
D3.5.3rc1.rst1157 posixpath.ismount now correctly recognizes mount points which the user does
D3.7.0a1.rst1996 implemented on POSIX). This is similar to ``os.path.ismount(p)``. Patch by
D3.8.0a1.rst4154 :func:`~os.path.ismount`, and :mod:`pathlib.Path` methods that return a
/third_party/python/Doc/whatsnew/
D3.8.rst1054 :func:`~os.path.isfile`, :func:`~os.path.islink`, and :func:`~os.path.ismount`
D3.4.rst1188 :func:`os.path.ismount` now recognizes volumes mounted below a drive
/third_party/python/Misc/
DHISTORY4309 - 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()