Home
last modified time | relevance | path

Searched refs:objectStoreName (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DInspectorIndexedDBAgent.cpp203 …onContext* executionContext, IDBDatabase* idbDatabase, const String& objectStoreName, const String… in transactionForDatabase() argument
206 …IDBTransaction* idbTransaction = idbDatabase->transaction(executionContext, objectStoreName, mode,… in transactionForDatabase()
212 …jectStore* objectStoreForTransaction(IDBTransaction* idbTransaction, const String& objectStoreName) in objectStoreForTransaction() argument
215 IDBObjectStore* idbObjectStore = idbTransaction->objectStore(objectStoreName, exceptionState); in objectStoreForTransaction()
482 …tate, PassRefPtr<RequestDataCallback> requestCallback, const String& objectStoreName, const String… in create() argument
484 …return adoptRef(new DataLoader(scriptState, requestCallback, objectStoreName, indexName, idbKeyRan… in create()
522 …tate, PassRefPtr<RequestDataCallback> requestCallback, const String& objectStoreName, const String… in DataLoader() argument
525 , m_objectStoreName(objectStoreName) in DataLoader()
656 …st String& securityOrigin, const String& databaseName, const String& objectStoreName, const String… in requestData() argument
674 …oader> dataLoader = DataLoader::create(scriptState, requestCallback, objectStoreName, indexName, i… in requestData()
[all …]
DInspectorIndexedDBAgent.h58 …st String& securityOrigin, const String& databaseName, const String& objectStoreName, const String…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DIndexedDBModel.js186 clearObjectStore: function(databaseId, objectStoreName, callback) argument
188 …this._agent.clearObjectStore(databaseId.securityOrigin, databaseId.name, objectStoreName, callback…
348 …loadObjectStoreData: function(databaseId, objectStoreName, idbKeyRange, skipCount, pageSize, callb… argument
350 …this._requestData(databaseId, databaseId.name, objectStoreName, "", idbKeyRange, skipCount, pageSi…
362 …loadIndexData: function(databaseId, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, … argument
364 …this._requestData(databaseId, databaseId.name, objectStoreName, indexName, idbKeyRange, skipCount,…
377 …_requestData: function(databaseId, databaseName, objectStoreName, indexName, idbKeyRange, skipCoun… argument
405 …this._agent.requestData(databaseId.securityOrigin, databaseName, objectStoreName, indexName, skipC…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DResourcesPanel.js1614 for (var objectStoreName in this._database.objectStores) {
1615 var objectStore = this._database.objectStores[objectStoreName];
1624 for (var objectStoreName in this._idbObjectStoreTreeElements) {
1625 if (!objectStoreNames[objectStoreName])
1626 this._objectStoreRemoved(objectStoreName);
1662 _objectStoreRemoved: function(objectStoreName) argument
1664 var objectStoreTreeElement = this._idbObjectStoreTreeElements[objectStoreName];
1667 delete this._idbObjectStoreTreeElements[objectStoreName];
1672 for (var objectStoreName in this._idbObjectStoreTreeElements)
1673 this._objectStoreRemoved(objectStoreName);