Searched refs:wipe_cache (Results 1 – 5 of 5) sorted by relevance
/bootable/recovery/ |
D | install.cpp | 50 try_update_binary(const char *path, ZipArchive *zip, int* wipe_cache) { in try_update_binary() argument 131 *wipe_cache = 0; in try_update_binary() 160 *wipe_cache = 1; in try_update_binary() 185 really_install_package(const char *path, int* wipe_cache, bool needs_mount) in really_install_package() argument 245 int result = try_update_binary(path, &zip, wipe_cache); in really_install_package() 255 install_package(const char* path, int* wipe_cache, const char* install_file, in install_package() argument 270 result = really_install_package(path, wipe_cache, needs_mount); in install_package()
|
D | adb_install.cpp | 78 apply_from_adb(RecoveryUI* ui_, int* wipe_cache, const char* install_file) { in apply_from_adb() argument 118 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, install_file, false); in apply_from_adb()
|
D | adb_install.h | 22 int apply_from_adb(RecoveryUI* h, int* wipe_cache, const char* install_file);
|
D | install.h | 30 int install_package(const char *root_path, int* wipe_cache,
|
D | recovery.cpp | 852 int wipe_cache = 0; in prompt_and_wait() local 886 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache, in prompt_and_wait() 892 if (status == INSTALL_SUCCESS && wipe_cache) { in prompt_and_wait() 923 status = apply_from_adb(ui, &wipe_cache, TEMPORARY_INSTALL_FILE); in prompt_and_wait() 1009 int wipe_data = 0, wipe_cache = 0, show_text = 0; in main() local 1018 case 'w': wipe_data = wipe_cache = 1; break; in main() 1019 case 'c': wipe_cache = 1; break; in main() 1102 status = install_package(update_package, &wipe_cache, TEMPORARY_INSTALL_FILE, true); in main() 1103 if (status == INSTALL_SUCCESS && wipe_cache) { in main() 1123 if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR; in main() [all …]
|