/external/autotest/client/site_tests/hardware_UsbMount/ |
D | hardware_UsbMount.py | 47 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/ |
D | test_ntpath.py | 650 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 …]
|
D | test_posixpath.py | 176 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/ |
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
|
/external/python/cpython2/Lib/test/ |
D | test_posixpath.py | 202 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/ |
D | hardware_MultiReaderPowerConsumption.py | 31 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/ |
D | fake_filesystem_test.py | 1102 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/ |
D | findlinksto.py | 31 if os.path.ismount(dirname):
|
/external/python/cpython2/Tools/scripts/ |
D | findlinksto.py | 31 if os.path.ismount(dirname):
|
/external/python/cpython2/Lib/ |
D | os2emxpath.py | 110 def ismount(path): function
|
D | macpath.py | 93 def ismount(s): function
|
D | posixpath.py | 182 def ismount(path): function
|
D | ntpath.py | 232 def ismount(path): function
|
/external/python/cpython2/Demo/threads/ |
D | find.py | 149 if not os.path.ismount(fullname):
|
/external/autotest/client/tests/wb_kupdate/ |
D | wb_kupdate.py | 23 elif not os.path.ismount(mount_point) and old_cleanup:
|
/external/python/cpython2/Lib/plat-riscos/ |
D | riscospath.py | 243 ismount= islink variable
|
/external/autotest/client/tests/ffsb/ |
D | ffsb.py | 13 while not os.path.ismount(pth):
|
/external/autotest/client/cros/bluetooth/ |
D | bluetooth_semiauto_helper.py | 187 if os.path.ismount(d):
|
/external/llvm-project/llvm/tools/opt-viewer/ |
D | optrecord.py | 342 if not os.path.ismount(os.path.join(dir, d))]
|
/external/libchrome/build/ |
D | vs_toolchain.py | 384 if sys.platform.startswith('linux') and not os.path.ismount(toolchain_dir):
|
/external/python/cpython3/Lib/ |
D | posixpath.py | 186 def ismount(path): function
|
D | ntpath.py | 262 def ismount(path): function
|
/external/python/cpython2/Doc/library/ |
D | os.path.rst | 16 :func:`splitunc` and :func:`ismount` do handle them correctly. 191 .. function:: ismount(path)
|
/external/python/parse_type/tasks/_vendor/ |
D | path.py | 1011 def ismount(self): member in Path 1013 return self.module.ismount(self)
|
/external/python/cpython3/Doc/library/ |
D | os.path.rst | 59 :func:`islink`, and :func:`ismount` now return ``False`` instead of 286 .. function:: ismount(path)
|