Home
last modified time | relevance | path

Searched refs:path_type (Results 1 – 3 of 3) sorted by relevance

/external/autotest/server/cros/ap_configurators/
Dpyauto_utils.py35 def __init__(self, path, path_type='dir'): argument
42 assert path_type in ('file', 'dir'), 'Invalid path_type: %s' % path_type
43 self._path_type = path_type
/external/python/cpython3/Lib/
Dos.py1033 path_type = type(path)
1035 path_repr = path_type.__fspath__(path)
1037 if hasattr(path_type, '__fspath__'):
1041 "not " + path_type.__name__)
1046 "not {}".format(path_type.__name__,
/external/syslinux/core/fs/pxe/
Dpxe.c412 enum url_type path_type = url_type(src); in pxe_chdir() local
414 if (path_type == URL_SUFFIX) in pxe_chdir()