HomeSort by relevance Sort by last modified time
    Searched refs:DB (Results 26 - 50 of 148) sorted by null

12 3 4 5 6

  /external/webkit/LayoutTests/storage/
sql-error-codes.js 27 function testTransaction(db, transactionCallback, expectedErrorCodeName)
29 db.transaction(transactionCallback,
35 function testTransactionThrowsException(db)
37 testTransaction(db, function(tx) { throw "Exception thrown in transaction callback."; }, "UNKNOWN_ERR");
40 function testTransactionFailureBecauseOfStatementFailure(db)
42 testTransaction(db,
48 function testInvalidStatement(db)
50 testTransaction(db, function(tx) { tx.executeSql("BAD STATEMENT"); }, "SYNTAX_ERR");
53 function testIncorrectNumberOfBindParameters(db)
55 testTransaction(db,
    [all...]
read-and-write-transactions-dont-run-together.js 11 "Test to make sure that read and write transactions on different DB handles to the same DB don't run at the same time.",
20 function runTransaction(db, readOnly)
22 var transactionFunction = (readOnly ? db.readTransaction : db.transaction);
23 transactionFunction.call(db, function(tx) {
multiple-transactions-on-different-handles.js 15 "Test to make sure that queueing multiple transactions on different DB handles does not result in a deadlock.",
30 function runTransaction(db, dbName, val)
32 db.transaction(function(tx) {
38 // Execute a write statement to make sure SQLite tries to acquire an exclusive lock on the DB file
57 var db = openTestDatabase();
58 db.transaction(function(tx) {
  /ndk/sources/host-tools/make-3.81/
vmsjobs.c 318 DB (DB_JOBS, ("child_execute_job (%s)\n", argv));
407 DB (DB_JOBS, (_("BUILTIN [%s][%s]\n"), cmd, cmd+8));
418 DB (DB_JOBS, (_("BUILTIN CD %s\n"), p));
436 DB (DB_JOBS, (_("BUILTIN RM %s\n"), p));
491 DB (DB_JOBS, (_("Redirected input from %s\n"), ifile));
498 DB (DB_JOBS, (_("Redirected error to %s\n"), efile));
505 DB (DB_JOBS, (_("Redirected output to %s\n"), ofile));
568 DB (DB_JOBS, (_("Executing %s instead\n"), cmd));
job.c 437 DB (DB_JOBS, (_("Got a SIGCHLD; %u unreaped children.\n"), dead_children));
522 DB (DB_JOBS, (_("Live child %p (%s) PID %ld %s\n"),
645 DB (DB_VERBOSE, ("Main thread handle = %p\n",
701 DB (DB_JOBS, (child_failed
708 DB (DB_JOBS, (_("Cleaning up temp batch file %s\n"),
806 DB (DB_JOBS, (_("Removing child %p PID %ld%s from chain.\n"),
869 DB (DB_JOBS, (_("Released token for child %p (%s).\n"),
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_win_unittest.cc 58 db_thread_(BrowserThread::DB) {
163 // The WDS schedules tasks to run on the DB thread so we schedule yet another
166 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
272 // The WDS schedules tasks to run on the DB thread so we schedule yet another
275 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
339 // schedules on the DB thread and once for the one we just scheduled on the UI
427 // The WDS schedules tasks to run on the DB thread so we schedule yet another
430 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
443 // Again, the WDS schedules tasks to run on the DB thread, so schedule a task
445 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE
    [all...]
native_backend_gnome_x.cc 230 // calling thread to the DB thread, and to provide an asynchronous API to
235 // caller, e.g. in the password management UI), and *block* the DB thread
487 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
493 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
501 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
508 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
515 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
522 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
632 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
653 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
    [all...]
password_store_default.cc 123 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
200 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
206 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
  /external/chromium/chrome/browser/sync/glue/
autofill_change_processor.cc 51 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
66 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
176 // This could happen because web db might have duplicates and when an entry
196 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
256 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
409 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
420 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
426 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
autofill_model_associator.cc 53 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
60 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
137 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
177 // Since we're on the DB thread, we don't have to worry about updating
203 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
237 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
243 << "Printing profiles from web db";
256 << "Iterating over sync db";
328 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
350 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
    [all...]
autofill_profile_model_associator.cc 29 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
36 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
59 << "Printing profiles from web db";
72 << "Looking for the above data in sync db..";
81 DCHECK(false) << "Guid in the web db is invalid " << guid;
92 << " Found in sync db: "
140 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
159 // We do all the web db operations outside this block.
202 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
314 NOTREACHED() << "Guid in the web db is invalid " <
    [all...]
autofill_profile_change_processor.cc 42 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
91 LOG(ERROR) << "Could not find the id in sync db " << changes[i].id;
172 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
308 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
315 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
  /frameworks/base/services/java/com/android/server/
Watchdog.java 57 static final boolean DB = false;
64 static final int TIME_TO_RESTART = DB ? 15*1000 : 60*1000;
67 static final int MEMCHECK_DEFAULT_MIN_SCREEN_OFF = DB ? 1*60 : 5*60; // 5 minutes
68 static final int MEMCHECK_DEFAULT_MIN_ALARM = DB ? 1*60 : 3*60; // 3 minutes
69 static final int MEMCHECK_DEFAULT_RECHECK_INTERVAL = DB ? 1*60 : 5*60; // 5 minutes
71 static final int REBOOT_DEFAULT_INTERVAL = DB ? 1 : 0; // never force reboot
281 if (DB || mReqRebootNoWait ||
  /external/chromium/chrome/browser/search_engines/
template_url_model_test_util.cc 54 db_thread_(BrowserThread::DB),
113 FilePath path = temp_dir_.path().AppendASCII("TestDataService.db");
127 // The I/O thread must be shutdown before the DB thread.
133 // Note that we must ensure the DB thread is stopped after WDS
179 WaitForThreadToProcessRequests(BrowserThread::DB);
  /external/clang/lib/AST/
TemplateName.cpp 159 const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
170 return DB << NameStr;
  /external/stlport/test/eh/
como.mak 67 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB
deccxx.mak 73 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB SunWS_cache cxx_repository
sgi_mipspro.mak 62 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB SunWS_cache cxx_repository
  /external/webkit/Source/WebCore/platform/leveldb/
LevelDBDatabase.cpp 35 #include <leveldb/db.h>
108 leveldb::DB* db; local
109 leveldb::Status s = leveldb::DB::Open(options, fileName.utf8().data(), &db);
116 result->m_db = WTF::adoptPtr(db);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebResourceLoadDelegate.idl 59 uuid(AF3289AA-90DB-4ca4-A112-A1E5F0517953),
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 472 inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
474 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
476 return DB;
DeclarationName.h 540 inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
542 DB.AddTaggedVal(N.getAsOpaqueInteger(),
544 return DB;
  /external/mksh/src/
tree.c 895 #define DB(x) if (iop->flag & x) shf_puts("|" #x, shf);
908 DB(IOEVAL)
909 DB(IOSKIP)
910 DB(IOCLOB)
911 DB(IORDUP)
912 DB(IONAMEXP)
913 DB(IOBASH)
914 DB(IOHERESTR)
915 DB(IONDELIM)
937 #undef DB
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 106 AM, CM, BK, CF, ES, FM, MD, NO, LR, RF, DB, SG, BH, HS, MT, DS, RG, CN, UUT, UUQ, UUP, UUH,
  /external/openssl/crypto/srp/
srp_grps.h 108 bn_pack4(43DB,5BFC,E0FD,108E),
120 bn_pack4(ECFB,8504,58DB,EF0A),
182 bn_pack4(43DB,5BFC,E0FD,108E),
194 bn_pack4(ECFB,8504,58DB,EF0A),
288 bn_pack4(43DB,5BFC,E0FD,108E),
300 bn_pack4(ECFB,8504,58DB,EF0A),
426 bn_pack4(43DB,5BFC,E0FD,108E),
438 bn_pack4(ECFB,8504,58DB,EF0A),

Completed in 830 milliseconds

12 3 4 5 6