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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLError.idl 36 const unsigned short UNKNOWN_ERR = 0;
ChangeVersionWrapper.cpp 53 database->reportChangeVersionResult(1, SQLError::UNKNOWN_ERR, sqliteError);
54 m_sqlError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to read the current version",
76 database->reportChangeVersionResult(3, SQLError::UNKNOWN_ERR, sqliteError);
77 m_sqlError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to set new version in database",
SQLError.h 54 UNKNOWN_ERR = 0,
SQLTransaction.cpp 153 m_database->reportStartTransactionResult(5, SQLError::UNKNOWN_ERR, 0);
154 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "the SQLTransactionCallback was null or threw an exception");
201 m_database->reportCommitTransactionResult(2, SQLError::UNKNOWN_ERR, 0);
202 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "the statement callback raised an exception or statement error callback did not return false");
DatabaseSync.cpp 95 reportChangeVersionResult(2, SQLError::UNKNOWN_ERR, sqliteDatabase().lastError());
116 reportChangeVersionResult(4, SQLError::UNKNOWN_ERR, sqliteDatabase().lastError());
SQLTransactionBackend.cpp 598 m_database->reportStartTransactionResult(4, SQLError::UNKNOWN_ERR, 0);
599 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "unknown error occurred during transaction preflight");
    [all...]
SQLTransactionBackendSync.cpp 133 m_database->reportStartTransactionResult(1, SQLError::UNKNOWN_ERR, 0);
198 m_database->reportCommitTransactionResult(1, SQLError::UNKNOWN_ERR, 0);
Database.cpp 179 RefPtr<SQLError> error = SQLError::create(SQLError::UNKNOWN_ERR, "database has been closed");

Completed in 66 milliseconds