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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLStatement.h 45 class SQLStatement FINAL : public NoBaseWillBeGarbageCollectedFinalized<SQLStatement> {
47 static PassOwnPtrWillBeRawPtr<SQLStatement> create(Database*,
49 ~SQLStatement();
60 SQLStatement(Database*, SQLStatementCallback*, SQLStatementErrorCallback*);
62 // The SQLStatementBackend owns the SQLStatement. Hence, the backend is
63 // guaranteed to be outlive the SQLStatement, and it is safe for us to refer
SQLStatement.cpp 29 #include "modules/webdatabase/SQLStatement.h"
45 PassOwnPtrWillBeRawPtr<SQLStatement> SQLStatement::create(Database* database,
48 return adoptPtrWillBeNoop(new SQLStatement(database, callback, errorCallback));
51 SQLStatement::SQLStatement(Database* database, SQLStatementCallback* callback,
58 SQLStatement::~SQLStatement()
62 void SQLStatement::trace(Visitor* visitor)
69 void SQLStatement::setBackend(SQLStatementBackend* backend
    [all...]
SQLStatementBackend.h 43 class SQLStatement;
48 static PassRefPtrWillBeRawPtr<SQLStatementBackend> create(PassOwnPtrWillBeRawPtr<SQLStatement>,
49 const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions);
60 SQLStatement* frontend();
65 SQLStatementBackend(PassOwnPtrWillBeRawPtr<SQLStatement>, const String& statement,
71 OwnPtrWillBeMember<SQLStatement> m_frontend;
SQLTransactionBackend.h 32 #include "modules/webdatabase/SQLStatement.h"
77 SQLStatement* currentStatement();
79 void executeSQL(PassOwnPtrWillBeRawPtr<SQLStatement>, const String& statement,
SQLStatementBackend.cpp 33 #include "modules/webdatabase/SQLStatement.h"
40 // The Life-Cycle of a SQLStatement i.e. Who's keeping the SQLStatement alive?
47 // --> SQLStatementBackend // OwnPtr<SQLStatement> m_frontend points to ...
48 // --> SQLStatement
53 // --> SQLStatementBackend // OwnPtr<SQLStatement> m_frontend points to ...
54 // --> SQLStatement
59 // - Inside SQLTransaction::deliverStatementCallback(), we operate on a raw SQLStatement*.
67 // This will trigger the deletion of the SQLStatementBackend and SQLStatement.
69 // Note: unlike with SQLTransaction, there is no JS representation of SQLStatement
    [all...]
SQLTransaction.cpp 204 SQLStatement* currentStatement = m_backend->currentStatement();
264 void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, SQLStatementCallback* callback, SQLStatementErrorCallback* callbackError, ExceptionState& exceptionState)
282 OwnPtrWillBeRawPtr<SQLStatement> statement = SQLStatement::create(m_database.get(), callback, callbackError);
283 m_backend->executeSQL(statement.release(), sqlStatement, arguments, permissions);
SQLTransactionBackend.cpp 435 SQLStatement* SQLTransactionBackend::currentStatement()
527 void SQLTransactionBackend::executeSQL(PassOwnPtrWillBeRawPtr<SQLStatement> statement,
528 const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions)
530 enqueueStatementBackend(SQLStatementBackend::create(statement, sqlStatement, arguments, permissions));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/
modules.target.darwin-arm.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.darwin-arm64.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.darwin-mips.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.darwin-mips64.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.darwin-x86.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.darwin-x86_64.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.linux-arm.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.linux-arm64.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.linux-mips.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.linux-mips64.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.linux-x86.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]
modules.target.linux-x86_64.mk 413 third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp \
    [all...]

Completed in 453 milliseconds