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

  /external/webkit/Source/WebCore/storage/
SQLTransactionSync.h 57 PassRefPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionCode&);
SQLTransaction.h 69 void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,
SQLTransactionSync.cpp 74 PassRefPtr<SQLResultSet> SQLTransactionSync::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionCode& ec)
SQLTransaction.cpp 90 void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> callbackError, ExceptionCode& e)
  /external/webkit/Source/WebCore/bindings/js/
JSSQLTransactionSyncCustom.cpp 44 JSValue JSSQLTransactionSync::executeSql(ExecState* exec)
90 JSValue result = toJS(exec, globalObject(), WTF::getPtr(m_impl->executeSQL(sqlStatement, sqlValues, ec)));
JSSQLTransactionCustom.cpp 45 JSValue JSSQLTransaction::executeSql(ExecState* exec)
113 m_impl->executeSQL(sqlStatement, sqlValues, callback.release(), errorCallback.release(), ec);
  /external/webkit/Source/WebCore/inspector/
InspectorDatabaseAgent.h 67 void executeSQL(ErrorString*, int databaseId, const String& query, bool* success, int* transactionId);
InspectorDatabaseAgent.cpp 174 transaction->executeSQL(m_sqlStatement, sqlValues, callback.release(), errorCallback.release(), ec);
311 void InspectorDatabaseAgent::executeSQL(ErrorString* error, int databaseId, const String& query, bool* success, int* transactionId)
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8SQLTransactionSyncCustom.cpp 53 INC_STATS("DOM.SQLTransactionSync.executeSql()");
94 v8::Handle<v8::Value> result = toV8(transaction->executeSQL(statement, sqlValues, ec));
V8SQLTransactionCustom.cpp 53 INC_STATS("DOM.SQLTransaction.executeSql()");
112 transaction->executeSQL(statement, sqlValues, callback, errorCallback, ec);
  /external/webkit/Source/WebCore/inspector/front-end/
Database.js 88 executeSql: function(query, onSuccess, onError)
102 DatabaseAgent.executeSQL(this._id, query, callback);

Completed in 637 milliseconds