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

  /external/chromium_org/sql/
recovery.h 18 // Recovery module for sql/. The basic idea is to create a fresh
20 // original database. If recovery is successful, the recovered
21 // database is backed up over the original database. If recovery is
27 // scoped_ptr<sql::Recovery> r =
28 // sql::Recovery::Begin(orig_db, orig_db_path);
32 // sql::Recovery::Recovered(r.Pass());
40 class SQL_EXPORT Recovery {
42 ~Recovery();
44 // Begin the recovery process by opening a temporary database handle
55 static scoped_ptr<Recovery> Begin
    [all...]
recovery.cc 5 #include "sql/recovery.h"
16 scoped_ptr<Recovery> Recovery::Begin(
19 scoped_ptr<Recovery> r(new Recovery(connection));
23 return scoped_ptr<Recovery>();
30 bool Recovery::Recovered(scoped_ptr<Recovery> r) {
35 void Recovery::Unrecoverable(scoped_ptr<Recovery> r)
    [all...]
recovery_unittest.cc 12 #include "sql/recovery.h"
130 // If the Recovery handle goes out of scope without being
133 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local
134 ASSERT_TRUE(recovery.get());
148 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local
149 ASSERT_TRUE(recovery.get())
166 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local
201 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(&db(), db_path()); local
240 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(db, db_path); local
    [all...]
connection.h 31 class Recovery;
393 // For recovery module.
394 friend class Recovery;
  /external/chromium_org/third_party/leveldatabase/src/db/
corruption_test.cc 194 TEST(CorruptionTest, Recovery) {
  /build/tools/releasetools/
ota_from_target_files 183 i = cls.ITEMS.get("system/recovery-from-boot.p", None)
185 i = cls.ITEMS.get("system/etc/install-recovery.sh", None)
324 """Generate a binary patch that creates the recovery image starting
329 patching and install the new recovery image.
340 path = os.path.join(input_tmp, "SYSTEM", "etc", "recovery-resource.dat")
344 bonus_args = "-b /system/etc/recovery-resource.dat"
350 common.ZipWriteStr(output_zip, "recovery/recovery-from-boot.p", patch)
351 Item.Get("system/recovery-from-boot.p", dir=False)
354 recovery_type, recovery_device = common.GetTypeAndDevice("/recovery", OPTIONS.info_dict
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 70 # but no token is consumed during recovery...another error is found,
132 support code essentially; most of it is error recovery stuff and
182 # wack everything related to error recovery
200 single token insertion or deletion error recovery. If
204 recovery, override recoverFromMismatchedToken() and have it
252 # then we know we're missing a token; error recovery is free to
264 not parsing. Once in recovery mode, no errors are generated.
265 To get out of recovery mode, the parser must successfully match
269 2. enter recovery mode, report error
463 # where LT(1) is in the recovery token set so nothing i
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 5 * support code essentially; most of it is error recovery stuff and
37 // wack everything related to error recovery
54 * single token insertion or deletion error recovery. If
58 * recovery, override mismatchRecover() and have it call
107 // then we know we're missing a token; error recovery is free to
142 * not parsing. Once in recovery mode, no errors are generated.
143 * To get out of recovery mode, the parser must successfully match
147 * 2. enter recovery mode, report error
332 // where LT(1) is in the recovery token set so nothing is
344 /** A hook to listen in on the token consumption during error recovery
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids 789 0323 5932-USB Enhanced Keyboard, Flash-Recovery/Download
791 0325 5953-USB Enhanced Dynakey Flash-Recovery/Download
795 032b K016/K018: USB-MSR Flash-Recovery/Download
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 432 /// for automatic error recovery.
545 /// but no token is consumed during recovery...another error is found,
687 /// support code essentially; most of it is error recovery stuff and
710 /// single token insertion or deletion error recovery. If
715 /// recovery, override MismatchRecover() and have it call
730 /// <summary>A hook to listen in on the token consumption during error recovery.
741 /// not parsing. Once in recovery mode, no errors are generated.
742 /// To get out of recovery mode, the parser must successfully Match
746 /// 2. enter recovery mode, report error
    [all...]

Completed in 1755 milliseconds