Searched refs:exist_ok (Results 1 – 6 of 6) sorted by relevance
/development/vndk/tools/definition-tool/tests/ |
D | compat.py | 33 def makedirs(path, exist_ok): argument 34 if exist_ok and os.path.exists(path):
|
D | test_elfdump.py | 55 makedirs(cls.test_dir, exist_ok=True)
|
/development/vndk/tools/header-checker/tests/ |
D | gen_all.py | 37 os.makedirs(os.path.dirname(output_path), exist_ok=True)
|
/development/vndk/tools/abi-tool/ |
D | vndk_abi_tool.py | 24 def makedirs(path, exist_ok): argument 25 if exist_ok and os.path.isdir(path): 258 makedirs(os.path.dirname(out_path), exist_ok=True)
|
/development/vndk/tools/vtable-dumper/tests/ |
D | 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/definition-tool/ |
D | vndk_definition_tool.py | 29 def makedirs(path, exist_ok): argument 30 if exist_ok and os.path.isdir(path): 1917 makedirs(os.path.dirname(out), exist_ok=True) 2250 makedirs(args.output, exist_ok=True) 2636 makedirs(args.output, exist_ok=True)
|