Home | History | Annotate | Download | only in indexeddb

Lines Matching defs:IDBRequest

30 #include "modules/indexeddb/IDBRequest.h"
48 IDBRequest* IDBRequest::create(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction)
50 IDBRequest* request = adoptRefCountedGarbageCollectedWillBeNoop(new IDBRequest(scriptState, source, transaction));
58 IDBRequest::IDBRequest(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction)
77 IDBRequest::~IDBRequest()
83 void IDBRequest::trace(Visitor* visitor)
98 ScriptValue IDBRequest::result(ExceptionState& exceptionState)
112 PassRefPtrWillBeRawPtr<DOMError> IDBRequest::error(ExceptionState& exceptionState) const
121 ScriptValue IDBRequest::source() const
129 const String& IDBRequest::readyState() const
141 void IDBRequest::abort()
163 void IDBRequest::setCursorDetails(IndexedDB::CursorType cursorType, blink::WebIDBCursorDirection direction)
171 void IDBRequest::setPendingCursor(IDBCursor* cursor)
187 IDBCursor* IDBRequest::getResultCursor() const
198 void IDBRequest::setResultCursor(IDBCursor* cursor, IDBKey* key, IDBKey* primaryKey, PassRefPtr<SharedBuffer> value, PassOwnPtr<Vector<blink::WebBlobInfo> > blobInfo)
210 void IDBRequest::handleBlobAcks()
218 bool IDBRequest::shouldEnqueueEvent() const
230 void IDBRequest::onError(PassRefPtrWillBeRawPtr<DOMError> error)
232 IDB_TRACE("IDBRequest::onError()");
242 void IDBRequest::onSuccess(const Vector<String>& stringList)
244 IDB_TRACE("IDBRequest::onSuccess(StringList)");
254 void IDBRequest::onSuccess(PassOwnPtr<blink::WebIDBCursor> backend, IDBKey* key, IDBKey* primaryKey, PassRefPtr<SharedBuffer> value, PassOwnPtr<Vector<blink::WebBlobInfo> > blobInfo)
256 IDB_TRACE("IDBRequest::onSuccess(IDBCursor)");
275 void IDBRequest::onSuccess(IDBKey* idbKey)
277 IDB_TRACE("IDBRequest::onSuccess(IDBKey)");
287 void IDBRequest::onSuccess(PassRefPtr<SharedBuffer> valueBuffer, PassOwnPtr<Vector<blink::WebBlobInfo> > blobInfo)
289 IDB_TRACE("IDBRequest::onSuccess(SharedBuffer)");
319 void IDBRequest::onSuccess(PassRefPtr<SharedBuffer> prpValueBuffer, PassOwnPtr<Vector<blink::WebBlobInfo> > blobInfo, IDBKey* prpPrimaryKey, const IDBKeyPath& keyPath)
321 IDB_TRACE("IDBRequest::onSuccess(SharedBuffer, IDBKey, IDBKeyPath)");
341 void IDBRequest::onSuccess(int64_t value)
343 IDB_TRACE("IDBRequest::onSuccess(int64_t)");
349 void IDBRequest::onSuccess()
351 IDB_TRACE("IDBRequest::onSuccess()");
357 void IDBRequest::onSuccessInternal(IDBAny* result)
365 void IDBRequest::setResult(IDBAny* result)
371 void IDBRequest::onSuccess(IDBKey* key, IDBKey* primaryKey, PassRefPtr<SharedBuffer> value, PassOwnPtr<Vector<blink::WebBlobInfo> > blobInfo)
373 IDB_TRACE("IDBRequest::onSuccess(key, primaryKey, value)");
381 bool IDBRequest::hasPendingActivity() const
389 void IDBRequest::stop()
413 const AtomicString& IDBRequest::interfaceName() const
415 return EventTargetNames::IDBRequest;
418 ExecutionContext* IDBRequest::executionContext() const
423 bool IDBRequest::dispatchEvent(PassRefPtrWillBeRawPtr<Event> event)
425 IDB_TRACE("IDBRequest::dispatchEvent");
499 void IDBRequest::uncaughtExceptionInEventHandler()
507 void IDBRequest::transactionDidFinishAndDispatch()
522 void IDBRequest::enqueueEvent(PassRefPtrWillBeRawPtr<Event> event)
541 void IDBRequest::dequeueEvent(Event* event)