Home
last modified time | relevance | path

Searched refs:IndexedDBDispatcher (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/content/child/indexed_db/
Dindexed_db_dispatcher.cc35 static base::LazyInstance<ThreadLocalPointer<IndexedDBDispatcher> >::Leaky
40 IndexedDBDispatcher* const kHasBeenDeleted =
41 reinterpret_cast<IndexedDBDispatcher*>(0x1);
47 IndexedDBDispatcher::IndexedDBDispatcher(ThreadSafeSender* thread_safe_sender) in IndexedDBDispatcher() function in content::IndexedDBDispatcher
52 IndexedDBDispatcher::~IndexedDBDispatcher() { in ~IndexedDBDispatcher()
64 IndexedDBDispatcher* IndexedDBDispatcher::ThreadSpecificInstance( in ThreadSpecificInstance()
73 IndexedDBDispatcher* dispatcher = new IndexedDBDispatcher(thread_safe_sender); in ThreadSpecificInstance()
79 void IndexedDBDispatcher::OnWorkerRunLoopStopped() { delete this; } in OnWorkerRunLoopStopped()
81 WebIDBMetadata IndexedDBDispatcher::ConvertMetadata( in ConvertMetadata()
124 void IndexedDBDispatcher::OnMessageReceived(const IPC::Message& msg) { in OnMessageReceived()
[all …]
Dwebidbdatabase_impl.cc45 IndexedDBDispatcher* dispatcher = in ~WebIDBDatabaseImpl()
46 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in ~WebIDBDatabaseImpl()
78 IndexedDBDispatcher* dispatcher = in createTransaction()
79 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in createTransaction()
85 IndexedDBDispatcher* dispatcher = in close()
86 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in close()
97 IndexedDBDispatcher* dispatcher = in get()
98 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in get()
116 IndexedDBDispatcher* dispatcher = in put()
117 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in put()
[all …]
Dwebidbfactory_impl.cc26 IndexedDBDispatcher* dispatcher = in getDatabaseNames()
27 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in getDatabaseNames()
38 IndexedDBDispatcher* dispatcher = in open()
39 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in open()
51 IndexedDBDispatcher* dispatcher = in deleteDatabase()
52 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in deleteDatabase()
Dwebidbcursor_impl.cc40 IndexedDBDispatcher* dispatcher = in ~WebIDBCursorImpl()
41 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in ~WebIDBCursorImpl()
47 IndexedDBDispatcher* dispatcher = in advance()
48 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in advance()
63 IndexedDBDispatcher* dispatcher = in continueFunction()
64 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in continueFunction()
158 IndexedDBDispatcher* dispatcher = in ResetPrefetchCache()
159 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in ResetPrefetchCache()
Dindexed_db_dispatcher.h45 class CONTENT_EXPORT IndexedDBDispatcher
52 explicit IndexedDBDispatcher(ThreadSafeSender* thread_safe_sender);
53 virtual ~IndexedDBDispatcher();
57 static IndexedDBDispatcher* ThreadSpecificInstance(
246 DISALLOW_COPY_AND_ASSIGN(IndexedDBDispatcher);
Dwebidbcursor_impl_unittest.cc27 class MockDispatcher : public IndexedDBDispatcher {
30 : IndexedDBDispatcher(thread_safe_sender), in MockDispatcher()
Dindexed_db_dispatcher_unittest.cc57 IndexedDBDispatcher dispatcher(thread_safe_sender.get()); in TEST()
Dindexed_db_message_filter.cc37 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()) in OnMessageReceived()
/external/chromium_org/content/renderer/
Drender_thread_impl.h84 class IndexedDBDispatcher; variable
409 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_;
Drender_thread_impl.cc347 main_thread_indexed_db_dispatcher_.reset(new IndexedDBDispatcher( in Init()