HomeSort by relevance Sort by last modified time
    Searched refs:exist_ok (Results 1 - 17 of 17) sorted by null

  /development/vndk/tools/definition-tool/tests/
compat.py 33 def makedirs(path, exist_ok):
34 if exist_ok and os.path.exists(path):
test_elfdump.py 56 makedirs(cls.test_dir, exist_ok=True)
  /external/lz4/tests/
test-lz4-versions.py 61 os.makedirs(tmp_dir, exist_ok=True)
83 os.makedirs(r_dir, exist_ok=True)
  /development/vndk/tools/header-checker/tests/
gen_all.py 47 os.makedirs(os.path.dirname(output_path), exist_ok=True)
  /development/vndk/tools/header-checker/utils/
utils.py 57 os.makedirs(os.path.dirname(reference_dump_path), exist_ok=True)
72 os.makedirs(os.path.dirname(reference_dump_path), exist_ok=True)
  /tools/test/connectivity/acts/framework/acts/controllers/sniffer_lib/local/
local_base.py 121 os.makedirs(capture_dir, exist_ok=True)
  /development/vndk/tools/vtable-dumper/tests/
test_vndk_vtable_dumper.py 203 os.makedirs(test_dir, exist_ok=True)
251 os.makedirs(args.test_dir, exist_ok=True)
  /development/vndk/tools/sourcedr/sourcedr/
project.py 145 os.makedirs(project_dir, exist_ok=True)
codesearch.py 231 os.makedirs(os.path.dirname(self.path), exist_ok=True)
  /external/python/cpython3/Lib/
pathlib.py     [all...]
os.py 195 def makedirs(name, mode=0o777, exist_ok=False):
196 """makedirs(name [, mode=0o777][, exist_ok=False])
201 exists, raise an OSError if exist_ok is False. Otherwise no exception is
210 makedirs(head, mode, exist_ok)
224 if not exist_ok or not path.isdir(name):
    [all...]
sysconfig.py 404 os.makedirs(pybuilddir, exist_ok=True)
  /external/python/cpython3/Lib/test/
test_pkgutil.py 364 os.makedirs(base_path, exist_ok=True)
test_os.py     [all...]
test_pathlib.py     [all...]
test_shutil.py     [all...]
  /development/vndk/tools/definition-tool/
vndk_definition_tool.py 39 def makedirs(path, exist_ok):
40 if exist_ok and os.path.isdir(path):
    [all...]

Completed in 294 milliseconds