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

  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBDatabase.h 64 enum PutMode {
76 virtual void put(long long transactionId, long long objectStoreId, const WebData& value, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBObjectStore.h 83 PassRefPtr<IDBRequest> put(blink::WebIDBDatabase::PutMode, PassRefPtr<IDBAny> source, ScriptState*, ScriptValue&, PassRefPtr<IDBKey>, ExceptionState&);
105 PassRefPtr<IDBRequest> put(blink::WebIDBDatabase::PutMode, PassRefPtr<IDBAny> source, ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&);
IDBObjectStore.cpp 142 PassRefPtr<IDBRequest> IDBObjectStore::put(WebIDBDatabase::PutMode putMode, PassRefPtr<IDBAny> source, ScriptState* state, ScriptValue& value, const ScriptValue& keyValue, ExceptionState& exceptionState)
147 return put(putMode, source, state, value, key.release(), exceptionState);
150 PassRefPtr<IDBRequest> IDBObjectStore::put(WebIDBDatabase::PutMode putMode, PassRefPtr<IDBAny> source, ScriptState* state, ScriptValue& value, PassRefPtr<IDBKey> prpKey, ExceptionState& exceptionState)
189 if (putMode != WebIDBDatabase::CursorUpdate && usesInLineKeys && key) {
234 backendDB()->put(m_transaction->id(), id(), blink::WebData(valueBuffer), key.release(), static_cast<WebIDBDatabase::PutMode>(putMode), WebIDBCallbacksImpl::create(request).leakPtr(), indexIds, indexKeys);
  /external/chromium_org/content/child/indexed_db/
webidbdatabase_impl.h 51 PutMode,
indexed_db_dispatcher.h 126 blink::WebIDBDatabase::PutMode put_mode,
webidbdatabase_impl.cc 112 PutMode put_mode,
indexed_db_dispatcher.cc 326 WebIDBDatabase::PutMode put_mode,
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database.h 41 enum PutMode {
140 PutMode mode,
indexed_db_database.cc 701 IndexedDBDatabase::PutMode put_mode;
713 PutMode put_mode,
    [all...]
indexed_db_dispatcher_host.cc 551 static_cast<IndexedDBDatabase::PutMode>(params.put_mode),
    [all...]
  /external/chromium_org/content/common/indexed_db/
indexed_db_messages.h 23 IPC_ENUM_TRAITS(blink::WebIDBDatabase::PutMode)
132 IPC_STRUCT_MEMBER(blink::WebIDBDatabase::PutMode, put_mode)

Completed in 216 milliseconds