Home | History | Annotate | Download | only in indexeddb

Lines Matching defs:exceptionState

34 #include "bindings/v8/ExceptionState.h"
194 TrackExceptionState exceptionState;
195 IDBOpenDBRequest* idbOpenDBRequest = idbFactory->open(scriptState(), databaseName, exceptionState);
196 if (exceptionState.hadException()) {
205 TrackExceptionState exceptionState;
206 IDBTransaction* idbTransaction = idbDatabase->transaction(executionContext, objectStoreName, mode, exceptionState);
207 if (exceptionState.hadException())
214 TrackExceptionState exceptionState;
215 IDBObjectStore* idbObjectStore = idbTransaction->objectStore(objectStoreName, exceptionState);
216 if (exceptionState.hadException())
223 TrackExceptionState exceptionState;
224 IDBIndex* idbIndex = idbObjectStore->index(indexName, exceptionState);
225 if (exceptionState.hadException())
423 TrackExceptionState exceptionState;
424 idbCursor->advance(m_skipCount, exceptionState);
425 if (exceptionState.hadException())
437 TrackExceptionState exceptionState;
438 idbCursor->continueFunction(0, 0, exceptionState);
439 if (exceptionState.hadException()) {
631 TrackExceptionState exceptionState;
632 IDBRequest* idbRequest = idbFactory->getDatabaseNames(scriptState, exceptionState);
633 if (exceptionState.hadException()) {
744 TrackExceptionState exceptionState;
745 idbObjectStore->clear(scriptState(), exceptionState);
746 ASSERT(!exceptionState.hadException());
747 if (exceptionState.hadException()) {
748 ExceptionCode ec = exceptionState.code();