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

  /bootable/recovery/
adb_install.h 22 int apply_from_adb(RecoveryUI* h, int* wipe_cache, const char* install_file);
install.h 28 // returned and *wipe_cache is true on exit, caller should wipe the
30 int install_package(const char *root_path, int* wipe_cache,
install.cpp 50 try_update_binary(const char *path, ZipArchive *zip, int* wipe_cache) {
131 *wipe_cache = 0;
159 } else if (strcmp(command, "wipe_cache") == 0) {
160 *wipe_cache = 1;
185 really_install_package(const char *path, int* wipe_cache, bool needs_mount)
245 int result = try_update_binary(path, &zip, wipe_cache);
255 install_package(const char* path, int* wipe_cache, const char* install_file,
270 result = really_install_package(path, wipe_cache, needs_mount);
adb_install.cpp 78 apply_from_adb(RecoveryUI* ui_, int* wipe_cache, const char* install_file) {
118 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, install_file, false);
recovery.cpp 58 { "wipe_cache", no_argument, NULL, 'c' },
104 * --wipe_cache - wipe cache (but not user data), then reboot
139 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
142 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
145 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
851 int wipe_cache = 0; local
866 case Device::WIPE_CACHE:
885 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache,
891 if (status == INSTALL_SUCCESS && wipe_cache) {
922 status = apply_from_adb(ui, &wipe_cache, TEMPORARY_INSTALL_FILE)
1008 int wipe_data = 0, wipe_cache = 0, show_text = 0; local
    [all...]

Completed in 95 milliseconds