/bootable/recovery/ |
bootloader.h | 27 * that is used for recovery and the bootloader to talk to 31 * reboot into recovery or to update radio or bootloader firmware. 33 * is complete (to boot into recovery for any final cleanup) 38 * The recovery field is only written by linux and used 39 * for the system to send a message to recovery or the 50 char recovery[768]; member in struct:bootloader_message 52 // The 'recovery' field used to be 1024 bytes. It has only ever 53 // been used to store the recovery command line, so 768 bytes
|
Android.mk | 21 recovery.cpp \ 30 LOCAL_MODULE := recovery 63 # This binary is in the recovery ramdisk, which is otherwise a copy of root.
|
recovery.cpp | 63 #define LAST_LOG_FILE "/cache/recovery/last_log" 65 static const char *CACHE_LOG_DIR = "/cache/recovery"; 66 static const char *COMMAND_FILE = "/cache/recovery/command"; 67 static const char *INTENT_FILE = "/cache/recovery/intent"; 68 static const char *LOG_FILE = "/cache/recovery/log"; 69 static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install"; 70 static const char *LOCALE_FILE = "/cache/recovery/last_locale"; 73 static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log"; 83 * The recovery tool communicates with the main system through /cache files. 84 * /cache/recovery/command - INPUT - command line for tool, one arg per lin [all...] |
/external/chromium_org/sql/ |
recovery_unittest.cc | 13 #include "sql/recovery.h" 97 // If the Recovery handle goes out of scope without being 100 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 101 ASSERT_TRUE(recovery.get()); 115 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 116 ASSERT_TRUE(recovery.get()) 133 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 168 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 207 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(db, db_path); local 378 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 391 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 406 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 431 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 458 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 515 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 552 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 591 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 636 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local 672 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local [all...] |
/device/asus/tilapia/recovery/ |
Android.mk | 5 LOCAL_C_INCLUDES += bootable/recovery 33 LOCAL_C_INCLUDES += bootable/recovery \ 34 device/asus/tilapia/recovery/lib
|
/bootable/diskinstaller/ |
android_img_system_layout.conf | 23 recovery {
|
android_img_data_layout.conf | 23 recovery {
|
/device/asus/deb/recovery/ |
Android.mk | 5 LOCAL_C_INCLUDES += bootable/recovery
|
/device/asus/flo/recovery/ |
Android.mk | 5 LOCAL_C_INCLUDES += bootable/recovery
|
/device/asus/grouper/recovery/ |
Android.mk | 5 LOCAL_C_INCLUDES += bootable/recovery
|
/device/lge/hammerhead/recovery/ |
Android.mk | 5 LOCAL_C_INCLUDES += bootable/recovery
|
/device/lge/mako/recovery/ |
Android.mk | 5 LOCAL_C_INCLUDES += bootable/recovery
|
/device/samsung/manta/recovery/ |
Android.mk | 5 LOCAL_C_INCLUDES += bootable/recovery 18 LOCAL_C_INCLUDES += bootable/recovery
|
/device/asus/deb/ |
BoardConfig.mk | 27 TARGET_RECOVERY_FSTAB = device/asus/deb/recovery.fstab
|
/device/asus/flo/ |
BoardConfig.mk | 27 TARGET_RECOVERY_FSTAB = device/asus/flo/recovery.fstab
|
/external/chromium_org/chrome/browser/component_updater/ |
recovery_component_installer.cc | 35 // File name of the recovery binary on different platforms. 76 CrxComponent recovery; local 77 recovery.name = "recovery"; 78 recovery.installer = new RecoveryComponentInstaller(version, prefs); 79 recovery.version = version; 80 recovery.pk_hash.assign(kSha2Hash, &kSha2Hash[sizeof(kSha2Hash)]); 81 if (cus->RegisterComponent(recovery) != ComponentUpdateService::kOk) { 82 NOTREACHED() << "Recovery component registration failed."; 98 NOTREACHED() << "Recovery component update error: " << error [all...] |
/build/target/board/vbox_x86/ |
disk_layout.conf | 34 recovery {
|
/external/chromium_org/chrome/browser/history/ |
thumbnail_database.cc | 23 #include "sql/recovery.h" 278 // Create v5 schema for recovery code. 326 // databases in the wild. Once recovery reaches stable, the number of 329 // recovery code. 435 // Recover the database to the extent possible, razing it if recovery 457 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(db, db_path); local 458 if (!recovery) { 459 // TODO(shess): Unable to create recovery connection. Thi [all...] |
top_sites_database.cc | 15 #include "sql/recovery.h" 96 // Track various failure (and success) cases in recovery code. 98 // TODO(shess): The recovery code is complete, but by nature runs in challenging 106 // Based on the thumbnail_database.cc recovery code, FAILED_SCOPER should 116 // specific failure (see sql/recovery.cc). 166 // the renumbering into the table recovery code. 194 // Recover the database to the extent possible, razing it if recovery is not 209 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(db, db_path) local [all...] |
/bootable/recovery/applypatch/ |
Android.mk | 21 LOCAL_C_INCLUDES += external/bzip2 external/zlib bootable/recovery 30 LOCAL_C_INCLUDES += bootable/recovery 42 LOCAL_C_INCLUDES += bootable/recovery
|
/bootable/recovery/minelf/ |
Android.mk | 21 LOCAL_C_INCLUDES += bootable/recovery
|
/build/core/ |
pathmap.mk | 48 recovery:bootable/recovery \
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
toplevel.ml | 29 (* Skip token for error recovery. *)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
toplevel.ml | 34 (* Skip token for error recovery. *)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
toplevel.ml | 44 (* Skip token for error recovery. *)
|