/bootable/recovery/ |
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,
|
adb_install.h | 22 int apply_from_adb(RecoveryUI* h, int* wipe_cache, const char* install_file);
|
install.cpp | 50 try_update_binary(const char *path, ZipArchive *zip, int* wipe_cache) { 130 *wipe_cache = 0; 158 } else if (strcmp(command, "wipe_cache") == 0) { 159 *wipe_cache = 1; 179 really_install_package(const char *path, int* wipe_cache) 226 return try_update_binary(path, &zip, wipe_cache); 230 install_package(const char* path, int* wipe_cache, const char* install_file) 244 result = really_install_package(path, wipe_cache);
|
recovery.cpp | 55 { "wipe_cache", no_argument, NULL, 'c' }, 92 * --wipe_cache - wipe cache (but not user data), then reboot 127 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache" 130 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache" 133 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache") 608 int* wipe_cache, Device* device) { 697 result = update_directory(new_path, unmount_when_done, wipe_cache, device); 714 result = install_package(copy, wipe_cache, TEMPORARY_INSTALL_FILE); 799 int wipe_cache; local 809 case Device::WIPE_CACHE 951 int wipe_data = 0, wipe_cache = 0, show_text = 0; local [all...] |
adb_install.cpp | 73 apply_from_adb(RecoveryUI* ui_, int* wipe_cache, const char* install_file) { 109 return install_package(ADB_SIDELOAD_FILENAME, wipe_cache, install_file);
|
default_device.cpp | 76 case 3: return WIPE_CACHE;
|
device.h | 69 APPLY_ADB_SIDELOAD, WIPE_DATA, WIPE_CACHE };
|
/device/asus/deb/recovery/ |
recovery_ui.cpp | 96 case 3: return WIPE_CACHE;
|
/device/asus/flo/recovery/ |
recovery_ui.cpp | 96 case 3: return WIPE_CACHE;
|
/device/asus/grouper/recovery/ |
recovery_ui.cpp | 95 case 3: return WIPE_CACHE;
|
/device/asus/tilapia/recovery/ |
recovery_ui.cpp | 95 case 3: return WIPE_CACHE;
|
/device/lge/hammerhead/recovery/ |
recovery_ui.cpp | 102 case 3: return WIPE_CACHE;
|
/device/lge/mako/recovery/ |
recovery_ui.cpp | 96 case 3: return WIPE_CACHE;
|
/device/samsung/manta/recovery/ |
recovery_ui.cpp | 95 case 3: return WIPE_CACHE;
|
/frameworks/base/core/java/android/os/ |
RecoverySystem.java | 376 bootCommand(context, "--wipe_cache\n--locale=" + Locale.getDefault().toString());
|
/bootable/recovery/updater/ |
install.c | [all...] |