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

  /external/chromium_org/third_party/WebKit/Source/core/platform/sql/
SQLiteTransaction.cpp 34 : m_db(db)
49 ASSERT(!m_db.m_transactionInProgress);
58 m_inProgress = m_db.executeCommand("BEGIN");
60 m_inProgress = m_db.executeCommand("BEGIN IMMEDIATE");
61 m_db.m_transactionInProgress = m_inProgress;
68 ASSERT(m_db.m_transactionInProgress);
69 m_inProgress = !m_db.executeCommand("COMMIT");
70 m_db.m_transactionInProgress = m_inProgress;
76 // We do not use the 'm_inProgress = m_db.executeCommand("ROLLBACK")' construct here,
78 // m_db.executeCommand("ROLLBACK") can sometimes harmlessly fail, thus returnin
    [all...]
SQLiteDatabase.cpp 53 : m_db(0)
74 m_openError = SQLiteFileSystem::openDatabase(filename, &m_db, forWebSQLDatabase);
76 m_openErrorMessage = m_db ? sqlite3_errmsg(m_db) : "sqlite_open returned null";
79 sqlite3_close(m_db);
80 m_db = 0;
84 m_openError = sqlite3_extended_result_codes(m_db, 1);
86 m_openErrorMessage = sqlite3_errmsg(m_db);
88 sqlite3_close(m_db);
89 m_db = 0
    [all...]
SQLiteDatabase.h 63 bool isOpen() const { return m_db; }
110 ASSERT(m_sharable || currentThread() == m_openingThread || !m_db);
111 return m_db;
146 sqlite3* m_db; member in class:WebCore::SQLiteDatabase
SQLiteTransaction.h 50 SQLiteDatabase& m_db; member in class:WebCore::SQLiteTransaction

Completed in 623 milliseconds