Home
last modified time | relevance | path

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

12

/external/python/cpython3/Lib/test/
Dtest_ntpath.py397 self.assertTrue(ntpath.ismount("c:\\"))
398 self.assertTrue(ntpath.ismount("C:\\"))
399 self.assertTrue(ntpath.ismount("c:/"))
400 self.assertTrue(ntpath.ismount("C:/"))
401 self.assertTrue(ntpath.ismount("\\\\.\\c:\\"))
402 self.assertTrue(ntpath.ismount("\\\\.\\C:\\"))
404 self.assertTrue(ntpath.ismount(b"c:\\"))
405 self.assertTrue(ntpath.ismount(b"C:\\"))
406 self.assertTrue(ntpath.ismount(b"c:/"))
407 self.assertTrue(ntpath.ismount(b"C:/"))
[all …]
Dtest_macpath.py112 ismount = macpath.ismount
113 self.assertEqual(ismount("a:"), True)
114 self.assertEqual(ismount("a:b"), False)
115 self.assertEqual(ismount("a:b:"), True)
116 self.assertEqual(ismount(""), False)
117 self.assertEqual(ismount(":"), False)
119 self.assertEqual(ismount(b"a:"), True)
120 self.assertEqual(ismount(b"a:b"), False)
121 self.assertEqual(ismount(b"a:b:"), True)
122 self.assertEqual(ismount(b""), False)
[all …]
Dtest_posixpath.py169 self.assertIs(posixpath.ismount("/"), True)
170 self.assertIs(posixpath.ismount(b"/"), True)
174 self.assertIs(posixpath.ismount(ABSTFN), False)
177 self.assertIs(posixpath.ismount(ABSTFN), False)
187 self.assertIs(posixpath.ismount(ABSTFN), False)
205 self.assertIs(posixpath.ismount(ABSTFN), True)
227 self.assertIs(posixpath.ismount(ABSTFN), True)
659 self.assertPathEqual(self.path.ismount)
/external/autotest/client/site_tests/hardware_UsbMount/
Dhardware_UsbMount.py47 if not os.path.ismount(storage['mountpoint']):
68 if os.path.ismount(storage['mountpoint']):
76 if not os.path.ismount(storage['mountpoint']):
93 if not os.path.ismount(storage['mountpoint']):
102 if not os.path.ismount(storage['mountpoint']):
/external/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
/external/python/cpython2/Lib/test/
Dtest_posixpath.py202 self.assertIs(posixpath.ismount("/"), True)
206 self.assertIs(posixpath.ismount(ABSTFN), False)
209 self.assertIs(posixpath.ismount(ABSTFN), False)
219 self.assertIs(posixpath.ismount(ABSTFN), False)
237 self.assertIs(posixpath.ismount(ABSTFN), True)
259 self.assertIs(posixpath.ismount(ABSTFN), True)
/external/autotest/client/site_tests/hardware_MultiReaderPowerConsumption/
Dhardware_MultiReaderPowerConsumption.py31 if self._storage and os.path.ismount(self._storage['mountpoint']):
34 if self._ramdisk_path and os.path.ismount(self._ramdisk_path.name):
/external/python/cpython3/Tools/scripts/
Dfindlinksto.py31 if os.path.ismount(dirname):
/external/python/cpython2/Tools/scripts/
Dfindlinksto.py31 if os.path.ismount(dirname):
/external/python/cpython2/Lib/
Dos2emxpath.py110 def ismount(path): function
Dmacpath.py93 def ismount(s): function
Dposixpath.py182 def ismount(path): function
Dntpath.py232 def ismount(path): function
/external/python/cpython2/Demo/threads/
Dfind.py149 if not os.path.ismount(fullname):
/external/autotest/client/tests/wb_kupdate/
Dwb_kupdate.py23 elif not os.path.ismount(mount_point) and old_cleanup:
/external/python/cpython3/Lib/
Dmacpath.py118 def ismount(s): function
Dposixpath.py190 def ismount(path): function
Dntpath.py260 def ismount(path): function
/external/u-boot/tools/patman/
Dcheckpatch.py29 while not os.path.ismount(path):
/external/autotest/client/tests/ffsb/
Dffsb.py13 while not os.path.ismount(pth):
/external/python/cpython2/Lib/plat-riscos/
Driscospath.py243 ismount= islink variable
/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt-viewer/
Doptrecord.py329 if not os.path.ismount(os.path.join(dir, d))]
/external/autotest/client/cros/bluetooth/
Dbluetooth_semiauto_helper.py185 if os.path.ismount(d):
/external/python/cpython2/Doc/library/
Dos.path.rst16 :func:`splitunc` and :func:`ismount` do handle them correctly.
191 .. function:: ismount(path)
/external/python/cpython3/Doc/library/
Dos.path.rst276 .. function:: ismount(path)

12