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

  /external/chromium/chrome/browser/sync/util/
user_settings_win.cc 20 ScopedDBHandle dbhandle(this);
22 statement.prepare(dbhandle.get(),
30 LOG(FATAL) << sqlite3_errmsg(dbhandle.get());
39 ScopedDBHandle dbhandle(this);
41 query.prepare(dbhandle.get(),
user_settings.cc 35 void ExecOrDie(sqlite3* dbhandle, const char *query) {
37 statement.prepare(dbhandle, query);
39 LOG(FATAL) << query << "\n" << sqlite3_errmsg(dbhandle);
86 static void MakeSigninsTable(sqlite3* const dbhandle) {
90 ExecOrDie(dbhandle,
151 static void MakeCookiesTable(sqlite3* const dbhandle) {
155 ExecOrDie(dbhandle,
161 static void MakeClientIDTable(sqlite3* const dbhandle) {
164 ExecOrDie(dbhandle, "CREATE TABLE client_id (id) ");
167 statement.prepare(dbhandle,
    [all...]
user_settings_posix.cc 29 ScopedDBHandle dbhandle(this);
31 statement.prepare(dbhandle.get(),
40 LOG(FATAL) << sqlite3_errmsg(dbhandle.get());
47 ScopedDBHandle dbhandle(this);
49 query.prepare(dbhandle.get(),
user_settings.h 21 void ExecOrDie(sqlite3* dbhandle, const char *query);
95 // We keep a single dbhandle.
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc 51 int ExecQuery(sqlite3* dbhandle, const char* query) {
53 int result = statement.prepare(dbhandle, query);
332 sqlite3* dbhandle = LazyGetSaveHandle();
343 int result = statement.prepare(dbhandle, query.data(), query.size());
352 sqlite3* dbhandle = LazyGetSaveHandle(); local
362 SQLTransaction transaction(dbhandle);
379 update.prepare(dbhandle, "UPDATE share_info "
413 op.prepare(dbhandle, "INSERT OR REPLACE INTO models (model_id, "
    [all...]

Completed in 161 milliseconds