Home
last modified time | relevance | path

Searched refs:exist_ok (Results 1 – 25 of 91) sorted by relevance

1234

/external/pigweed/pw_docgen/py/pw_docgen/
Ddocgen.py81 def mkdir(dirname: str, exist_ok: bool = False) -> None:
84 os.makedirs(dirname, exist_ok=exist_ok)
115 mkdir(directory, exist_ok=True)
/external/python/cpython3/kokoro/
Dbuild.py34 os.makedirs(build_dir, exist_ok=True)
35 os.makedirs(install_dir, exist_ok=True)
108 os.makedirs(dest_dir, exist_ok=True)
142 os.makedirs(dest_dir, exist_ok=True)
/external/python/setuptools/pkg_resources/
Dpy31compat.py6 def _makedirs_31(path, exist_ok=False): argument
10 if not exist_ok or exc.errno != errno.EEXIST:
/external/pigweed/pw_arduino_build/py/pw_arduino_build/
Dcore_installer.py171 os.makedirs(install_dir, exist_ok=True)
172 os.makedirs(cache_dir, exist_ok=True)
368 os.makedirs(package_path, exist_ok=True)
389 os.makedirs(package_path, exist_ok=True)
412 os.makedirs(package_path, exist_ok=True)
/external/mesa3d/.gitlab-ci/tracie/
Ddump_trace_images.py43 log_path.parent.mkdir(parents=True, exist_ok=True)
72 os.makedirs(outputdir, exist_ok=True)
93 outputdir_path.mkdir(parents=True, exist_ok=True)
119 outputdir_path.mkdir(parents=True, exist_ok=True)
Dtracie.py57 os.makedirs(os.path.dirname(trace_path), exist_ok=True)
173 os.makedirs(results_path, exist_ok=True)
245 os.makedirs(RESULTS_PATH, exist_ok=True)
/external/pigweed/pw_arduino_build/py/
Dfile_operations_test.py43 folder_path.mkdir(parents=True, exist_ok=True)
45 file_path.touch(exist_ok=True)
/external/python/cpython3/PC/layout/support/
Dpip.py47 dest.mkdir(parents=True, exist_ok=False)
53 ns.temp.mkdir(parents=True, exist_ok=True)
/external/python/cpython3/PC/layout/
Dmain.py349 ns.temp.mkdir(parents=True, exist_ok=True)
356 ns.temp.mkdir(parents=True, exist_ok=True)
391 ns.zip.parent.mkdir(parents=True, exist_ok=True)
397 ns.copy.mkdir(parents=True, exist_ok=True)
423 (ns.copy / dest).parent.mkdir(parents=True, exist_ok=True)
441 (ns.temp / "Lib" / dest).parent.mkdir(parents=True, exist_ok=True)
450 (ns.copy / dest).parent.mkdir(parents=True, exist_ok=True)
480 ns.catalog.parent.mkdir(parents=True, exist_ok=True)
/external/pigweed/pw_build/py/pw_build/
Dmirror_tree.py50 dest.parent.mkdir(parents=True, exist_ok=True)
92 directory.mkdir(parents=True, exist_ok=True)
/external/libchrome/libchrome_tools/
Dupdate_libchrome.py144 os.makedirs(output_root, mode=0o755, exist_ok=True)
162 os.makedirs(os.path.dirname(target_path), mode=0o755, exist_ok=True)
/external/swiftshader/third_party/llvm-10.0/scripts/
Dupdate.py218 os.makedirs(LLVM_OBJS, exist_ok=True)
251 os.makedirs(path.dirname(dst), exist_ok=True)
275 os.makedirs(path.dirname(dst), exist_ok=True)
/external/toolchain-utils/llvm_tools/
Dbisect_clang_crashes.py83 os.makedirs(os.path.dirname(state_file), exist_ok=True)
85 os.makedirs(temporary_directory, exist_ok=True)
/external/toolchain-utils/cwp/cr-os/
Dfetch_gn_descs.py175 os.makedirs(out_dir, exist_ok=True)
187 os.makedirs(os.path.dirname(results_file), exist_ok=True)
/external/oss-fuzz/infra/cifuzz/
Dclusterfuzz_deployment.py105 os.makedirs(build_dir, exist_ok=True)
127 os.makedirs(corpus_dir, exist_ok=True)
Dcontinuous_integration.py138 os.makedirs(git_workspace, exist_ok=True)
204 os.makedirs(git_workspace, exist_ok=True)
Dbuild_fuzzers.py59 os.makedirs(self.out_dir, exist_ok=True)
61 os.makedirs(self.work_dir, exist_ok=True)
/external/pigweed/pw_bloat/py/pw_bloat/
Dno_bloaty.py27 os.makedirs(os.path.dirname(sys.argv[1]), exist_ok=True)
Dno_toolchains.py30 os.makedirs(os.path.dirname(sys.argv[1]), exist_ok=True)
/external/lz4/tests/
Dtest-lz4-versions.py61 os.makedirs(tmp_dir, exist_ok=True)
83 os.makedirs(r_dir, exist_ok=True)
/external/python/setuptools/setuptools/tests/
Dfiles.py31 pkg_resources.py31compat.makedirs(full_name, exist_ok=True)
/external/mesa3d/docs/_exts/
Dredirects.py15 os.makedirs(os.path.dirname(path), exist_ok=True)
/external/llvm-project/debuginfo-tests/dexter/dex/utils/
DWorkingDirectory.py24 os.makedirs(dir_, exist_ok=True)
/external/python/cpython3/Lib/
Dpathlib.py1286 def touch(self, mode=0o666, exist_ok=True): argument
1290 if exist_ok:
1302 if not exist_ok:
1307 def mkdir(self, mode=0o777, parents=False, exist_ok=False): argument
1316 self.parent.mkdir(parents=True, exist_ok=True)
1317 self.mkdir(mode, parents=False, exist_ok=exist_ok)
1321 if not exist_ok or not self.is_dir():
/external/zstd/build/meson/
DInstallSymlink.py18 install_dir.mkdir(mode=dir_mode, parents=True, exist_ok=True)

1234