HomeSort by relevance Sort by last modified time
    Searched refs:UNKNOWN_ERR (Results 1 - 9 of 9) 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,
SQLTransactionBackend.cpp 566 m_database->reportStartTransactionResult(1, SQLError::UNKNOWN_ERR, 0);
567 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to open a transaction, because the user deleted the database");
615 m_database->reportStartTransactionResult(4, SQLError::UNKNOWN_ERR, 0);
616 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "unknown error occurred during transaction preflight");
    [all...]
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 98 reportChangeVersionResult(2, SQLError::UNKNOWN_ERR, sqliteDatabase().lastError());
119 reportChangeVersionResult(4, SQLError::UNKNOWN_ERR, sqliteDatabase().lastError());
SQLStatementBackend.cpp 215 database->reportExecuteStatementResult(6, SQLError::UNKNOWN_ERR, 0);
216 m_error = SQLError::create(SQLError::UNKNOWN_ERR, "unable to execute statement, because the user deleted the database");
SQLTransactionBackendSync.cpp 134 m_database->reportStartTransactionResult(1, SQLError::UNKNOWN_ERR, 0);
199 m_database->reportCommitTransactionResult(1, SQLError::UNKNOWN_ERR, 0);
Database.cpp 199 RefPtr<SQLError> error = SQLError::create(SQLError::UNKNOWN_ERR, "database has been closed");

Completed in 52 milliseconds