Searched refs:install_file (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/rs/ |
H A D | build_rs.py | 48 def install_file(src, dst): function 136 install_file(lib_path, lib_install) 183 install_file(built_path, install_path) 209 install_file(os.path.join(headers_src, header), headers_dst) 211 install_file(android_path('bionic/libc/include/stdatomic.h'), headers_dst) 247 install_file(built_lib, os.path.join(lib_dir, bc_lib + '.bc')) 257 install_file(built_lib, os.path.join(lib_dir, lib_name)) 262 install_file(built_lib, os.path.join(lib_dir, lib_name)) 268 install_file(jar_dir, os.path.join(lib_dir, 'renderscript-v8.jar')) 281 install_file(android_path('frameworks/rs/rsDefines.h'), headers_dst_base) [all …]
|
/aosp12/packages/modules/ArtPrebuilt/ |
H A D | update-art-module-prebuilts.py | 241 install_dir, install_file = os.path.split(entry.install_path) 252 check_call(["mkdir", install_file], cwd=install_dir) 254 check_call(["unzip", "-DD", source_file, "-d", install_file], 258 elif source_file != install_file: 259 check_call(["mv", source_file, install_file], cwd=install_dir)
|
/aosp12/bootable/recovery/otautil/include/otautil/ |
H A D | paths.h | 68 void set_temporary_install_file(const std::string& install_file) { in set_temporary_install_file() argument 69 temporary_install_file_ = install_file; in set_temporary_install_file()
|
/aosp12/bootable/recovery/install/ |
H A D | install.cpp | 635 const std::string& install_file = Paths::Get().temporary_install_file(); in InstallPackage() local 636 if (!android::base::WriteStringToFile(log_content, install_file)) { in InstallPackage() 637 PLOG(ERROR) << "failed to write " << install_file; in InstallPackage()
|
/aosp12/bootable/recovery/ |
H A D | recovery.cpp | 584 const std::string& install_file = Paths::Get().temporary_install_file(); in log_failure_code() local 585 if (!android::base::WriteStringToFile(log_content, install_file)) { in log_failure_code() 586 PLOG(ERROR) << "Failed to write " << install_file; in log_failure_code()
|