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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionBackend.cpp 421 // We also can't clear m_currentStatementBackend and m_transactionError.
424 // m_transactionError may be accessed by deliverTransactionErrorCallback().
442 return m_transactionError.get();
580 m_transactionError = SQLErrorData::create(SQLError::DATABASE_ERR, "unable to begin transaction",
592 m_transactionError = SQLErrorData::create(SQLError::DATABASE_ERR, "unable to read version",
607 m_transactionError = SQLErrorData::create(*m_wrapper->sqlError());
610 m_transactionError = SQLErrorData::create(SQLError::UNKNOWN_ERR, "unknown error occurred during transaction preflight");
    [all...]
SQLTransaction.cpp 141 ASSERT(m_transactionError);
165 m_transactionError = SQLErrorData::create(SQLError::UNKNOWN_ERR, "the SQLTransactionCallback was null or threw an exception");
177 // If we get here with an empty m_transactionError, then the backend
181 if (!m_transactionError) {
183 m_transactionError = SQLErrorData::create(*m_backend->transactionError());
185 ASSERT(m_transactionError);
186 RefPtrWillBeRawPtr<SQLError> error = SQLError::create(*m_transactionError);
189 m_transactionError = nullptr;
213 m_transactionError = SQLErrorData::create(SQLError::UNKNOWN_ERR, "the statement callback raised an exception or statement error callback did not return false");
SQLTransaction.h 110 OwnPtr<SQLErrorData> m_transactionError;
SQLTransactionBackend.h 116 OwnPtr<SQLErrorData> m_transactionError;

Completed in 2329 milliseconds