Searched defs:transactionPtr (Results 1 - 3 of 3) sorted by relevance
/external/webkit/Source/WebCore/storage/ |
H A D | IDBIndexBackendImpl.cpp | 103 void IDBIndexBackendImpl::openCursor(PassRefPtr<IDBKeyRange> prpKeyRange, unsigned short direction, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) argument 108 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr; 113 void IDBIndexBackendImpl::openKeyCursor(PassRefPtr<IDBKeyRange> prpKeyRange, unsigned short direction, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) argument 118 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr;
|
H A D | IDBDatabaseBackendImpl.cpp | 100 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendImpl::createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) argument 102 ASSERT(transactionPtr->mode() == IDBTransaction::VERSION_CHANGE); 113 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr; 142 void IDBDatabaseBackendImpl::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) argument 150 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr;
|
H A D | IDBObjectStoreBackendImpl.cpp | 121 void IDBObjectStoreBackendImpl::put(PassRefPtr<SerializedScriptValue> prpValue, PassRefPtr<IDBKey> prpKey, PutMode putMode, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) argument 123 if (transactionPtr->mode() == IDBTransaction::READ_ONLY) { 132 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr; 384 RefPtr<IDBTransactionBackendInterface> transactionPtr = transaction; local 437 RefPtr<IDBTransactionBackendInterface> transactionPtr = transaction; local 438 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::deleteIndexInternal, objectStore, index, transactionPtr), 452 void IDBObjectStoreBackendImpl::openCursor(PassRefPtr<IDBKeyRange> prpRange, unsigned short direction, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) argument 457 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr;
|
Completed in 58 milliseconds