Home
last modified time | relevance | path

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

12

/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/python/cpython3/Lib/test/
Dtest_ntpath.py650 self.assertTrue(ntpath.ismount("c:\\"))
651 self.assertTrue(ntpath.ismount("C:\\"))
652 self.assertTrue(ntpath.ismount("c:/"))
653 self.assertTrue(ntpath.ismount("C:/"))
654 self.assertTrue(ntpath.ismount("\\\\.\\c:\\"))
655 self.assertTrue(ntpath.ismount("\\\\.\\C:\\"))
657 self.assertTrue(ntpath.ismount(b"c:\\"))
658 self.assertTrue(ntpath.ismount(b"C:\\"))
659 self.assertTrue(ntpath.ismount(b"c:/"))
660 self.assertTrue(ntpath.ismount(b"C:/"))
[all …]
Dtest_posixpath.py176 self.assertIs(posixpath.ismount("/"), True)
177 self.assertIs(posixpath.ismount(b"/"), True)
181 self.assertIs(posixpath.ismount(ABSTFN), False)
184 self.assertIs(posixpath.ismount(ABSTFN), False)
188 self.assertIs(posixpath.ismount('/\udfff'), False)
189 self.assertIs(posixpath.ismount(b'/\xff'), False)
190 self.assertIs(posixpath.ismount('/\x00'), False)
191 self.assertIs(posixpath.ismount(b'/\x00'), False)
199 self.assertIs(posixpath.ismount(ABSTFN), False)
217 self.assertIs(posixpath.ismount(ABSTFN), True)
[all …]
/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/pyfakefs/pyfakefs/tests/
Dfake_filesystem_test.py1102 self.assertFalse(self.path.ismount(''))
1103 self.assertTrue(self.path.ismount('!'))
1104 self.assertFalse(self.path.ismount('!mount!'))
1106 self.assertTrue(self.path.ismount('!mount'))
1107 self.assertTrue(self.path.ismount('!mount!'))
1111 self.assertTrue(self.path.ismount('!'))
1112 self.assertTrue(self.path.ismount('c:!'))
1113 self.assertFalse(self.path.ismount('c:'))
1114 self.assertTrue(self.path.ismount('z:!'))
1116 self.assertTrue(self.path.ismount('!mount'))
[all …]
/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/cpython2/Lib/plat-riscos/
Driscospath.py243 ismount= islink variable
/external/autotest/client/tests/ffsb/
Dffsb.py13 while not os.path.ismount(pth):
/external/autotest/client/cros/bluetooth/
Dbluetooth_semiauto_helper.py187 if os.path.ismount(d):
/external/llvm-project/llvm/tools/opt-viewer/
Doptrecord.py342 if not os.path.ismount(os.path.join(dir, d))]
/external/libchrome/build/
Dvs_toolchain.py384 if sys.platform.startswith('linux') and not os.path.ismount(toolchain_dir):
/external/python/cpython3/Lib/
Dposixpath.py186 def ismount(path): function
Dntpath.py262 def ismount(path): function
/external/python/cpython2/Doc/library/
Dos.path.rst16 :func:`splitunc` and :func:`ismount` do handle them correctly.
191 .. function:: ismount(path)
/external/python/parse_type/tasks/_vendor/
Dpath.py1011 def ismount(self): member in Path
1013 return self.module.ismount(self)
/external/python/cpython3/Doc/library/
Dos.path.rst59 :func:`islink`, and :func:`ismount` now return ``False`` instead of
286 .. function:: ismount(path)

12