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

  /external/webkit/Source/WebCore/storage/
SQLStatementErrorCallback.h 39 class SQLError;
44 virtual bool handleEvent(SQLTransaction*, SQLError*) = 0;
SQLTransactionErrorCallback.h 38 class SQLError;
43 virtual bool handleEvent(SQLError*) = 0;
SQLTransactionErrorCallback.idl 34 boolean handleEvent(in SQLError error);
SQLError.h 39 class SQLError : public ThreadSafeRefCounted<SQLError> {
41 static PassRefPtr<SQLError> create(unsigned code, const String& message) { return adoptRef(new SQLError(code, message)); }
58 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.threadsafeCopy()) { }
ChangeVersionWrapper.cpp 33 #include "SQLError.h"
53 m_sqlError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to verify current version of database");
59 m_sqlError = SQLError::create(SQLError::VERSION_ERR, "current version of the database and `oldVersion` argument do not match");
72 m_sqlError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to set new version in database");
SQLStatementErrorCallback.idl 34 [Custom] boolean handleEvent(in SQLTransaction transaction, in SQLError error);
SQLStatement.cpp 35 #include "SQLError.h"
81 m_error = SQLError::create(result == SQLResultInterrupt ? SQLError::DATABASE_ERR : SQLError::SYNTAX_ERR, database->lastErrorMsg());
89 m_error = SQLError::create(db->isInterrupted() ? SQLError::DATABASE_ERR : SQLError::SYNTAX_ERR, "number of '?'s in statement string does not match argument count");
102 m_error = SQLError::create(SQLError::DATABASE_ERR, database->lastErrorMsg());
126 m_error = SQLError::create(SQLError::DATABASE_ERR, database->lastErrorMsg())
    [all...]
ChangeVersionWrapper.h 39 class SQLError;
48 virtual SQLError* sqlError() const { return m_sqlError.get(); }
55 RefPtr<SQLError> m_sqlError;
SQLStatement.h 43 class SQLError;
63 SQLError* sqlError() const { return m_error.get(); }
75 RefPtr<SQLError> m_error;
SQLError.idl 35 ] SQLError {
SQLTransaction.h 43 class SQLError;
59 virtual SQLError* sqlError() const = 0;
121 RefPtr<SQLError> m_transactionError;
SQLTransaction.cpp 40 #include "SQLError.h"
249 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to open a transaction, because the user deleted the database");
270 m_transactionError = SQLError::create(SQLError::DATABASE_ERR, "unable to open a transaction to the database");
278 m_transactionError = m_wrapper->sqlError();
280 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "unknown error occured setting up transaction");
305 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "the SQLTransactionCallback was null or threw an exception")
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSCustomSQLStatementErrorCallback.cpp 43 bool JSSQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLError* error)
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomSQLStatementErrorCallback.cpp 46 bool V8SQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLError* error)
  /external/webkit/Source/WebCore/inspector/
InspectorDatabaseAgent.cpp 42 #include "SQLError.h"
80 void reportTransactionFailed(InspectorFrontend::Database* frontend, int transactionId, SQLError* error)
142 virtual bool handleEvent(SQLTransaction*, SQLError* error)
196 virtual bool handleEvent(SQLError* error)

Completed in 379 milliseconds