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

  /external/webkit/Source/WebKit/chromium/src/
WebIDBObjectStoreImpl.cpp 47 : m_objectStore(objectStore)
57 return m_objectStore->name();
62 return m_objectStore->keyPath();
67 return m_objectStore->indexNames();
72 m_objectStore->get(key, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
77 m_objectStore->put(value, key, static_cast<IDBObjectStoreBackendInterface::PutMode>(putMode), IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
82 m_objectStore->deleteFunction(key, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
87 m_objectStore->clear(IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
92 RefPtr<IDBIndexBackendInterface> index = m_objectStore->createIndex(name, keyPath, unique, transaction.getIDBTransactionBackendInterface(), ec);
100 RefPtr<IDBIndexBackendInterface> index = m_objectStore->index(name, ec)
    [all...]
WebIDBObjectStoreImpl.h 64 WTF::RefPtr<WebCore::IDBObjectStoreBackendInterface> m_objectStore;
  /external/webkit/Source/WebCore/storage/
IDBObjectStore.cpp 46 : m_objectStore(idbObjectStore)
49 ASSERT(m_objectStore);
57 return m_objectStore->name();
62 return m_objectStore->keyPath();
67 return m_objectStore->indexNames();
73 m_objectStore->get(key, request, m_transaction->backend(), ec);
84 m_objectStore->put(value, key, IDBObjectStoreBackendInterface::AddOnly, request, m_transaction->backend(), ec);
95 m_objectStore->put(value, key, IDBObjectStoreBackendInterface::AddOrUpdate, request, m_transaction->backend(), ec);
106 m_objectStore->deleteFunction(key, request, m_transaction->backend(), ec);
117 m_objectStore->clear(request, m_transaction->backend(), ec)
    [all...]
IDBCursorBackendImpl.cpp 49 , m_objectStore(objectStore)
85 m_objectStore->put(value, m_cursor->primaryKey(), IDBObjectStoreBackendInterface::CursorUpdate, callbacks, m_transaction.get(), ec);
120 m_objectStore->deleteFunction(m_cursor->primaryKey(), prpCallbacks, m_transaction.get(), ec);
IDBIndex.h 52 IDBObjectStore* objectStore() const { return m_objectStore.get(); }
72 RefPtr<IDBObjectStore> m_objectStore;
IDBIndex.cpp 46 , m_objectStore(objectStore)
50 ASSERT(m_objectStore);
IDBCursorBackendImpl.h 74 RefPtr<IDBObjectStoreBackendInterface> m_objectStore;
IDBObjectStore.h 84 RefPtr<IDBObjectStoreBackendInterface> m_objectStore;

Completed in 186 milliseconds