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.cc38 static base::LazyInstance<ThreadLocalPointer<IndexedDBDispatcher> >::Leaky
43 IndexedDBDispatcher* const kHasBeenDeleted =
44 reinterpret_cast<IndexedDBDispatcher*>(0x1);
52 IndexedDBDispatcher::IndexedDBDispatcher(ThreadSafeSender* thread_safe_sender) in IndexedDBDispatcher() function in content::IndexedDBDispatcher
57 IndexedDBDispatcher::~IndexedDBDispatcher() { in ~IndexedDBDispatcher()
69 IndexedDBDispatcher* IndexedDBDispatcher::ThreadSpecificInstance( in ThreadSpecificInstance()
78 IndexedDBDispatcher* dispatcher = new IndexedDBDispatcher(thread_safe_sender); in ThreadSpecificInstance()
84 void IndexedDBDispatcher::OnWorkerRunLoopStopped() { delete this; } in OnWorkerRunLoopStopped()
86 WebIDBMetadata IndexedDBDispatcher::ConvertMetadata( in ConvertMetadata()
129 void IndexedDBDispatcher::OnMessageReceived(const IPC::Message& msg) { in OnMessageReceived()
[all …]
Dwebidbdatabase_impl.cc49 IndexedDBDispatcher* dispatcher = in ~WebIDBDatabaseImpl()
50 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in ~WebIDBDatabaseImpl()
82 IndexedDBDispatcher* dispatcher = in createTransaction()
83 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in createTransaction()
89 IndexedDBDispatcher* dispatcher = in close()
90 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in close()
101 IndexedDBDispatcher* dispatcher = in get()
102 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in get()
121 IndexedDBDispatcher* dispatcher = in put()
122 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.cc42 IndexedDBDispatcher* dispatcher = in ~WebIDBCursorImpl()
43 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in ~WebIDBCursorImpl()
49 IndexedDBDispatcher* dispatcher = in advance()
50 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in advance()
69 IndexedDBDispatcher* dispatcher = in continueFunction()
70 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in continueFunction()
197 IndexedDBDispatcher* dispatcher = in ResetPrefetchCache()
198 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); in ResetPrefetchCache()
Dindexed_db_dispatcher.h49 class CONTENT_EXPORT IndexedDBDispatcher : public WorkerTaskRunner::Observer {
55 explicit IndexedDBDispatcher(ThreadSafeSender* thread_safe_sender);
56 virtual ~IndexedDBDispatcher();
60 static IndexedDBDispatcher* ThreadSpecificInstance(
262 DISALLOW_COPY_AND_ASSIGN(IndexedDBDispatcher);
Dindexed_db_dispatcher_unittest.cc46 class MockDispatcher : public IndexedDBDispatcher {
49 : IndexedDBDispatcher(sender) {} in MockDispatcher()
88 IndexedDBDispatcher dispatcher(thread_safe_sender_.get()); in TEST_F()
118 IndexedDBDispatcher dispatcher(thread_safe_sender_.get()); in TEST_F()
Dindexed_db_message_filter.cc38 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()) in OnMessageReceived()
Dwebidbcursor_impl_unittest.cc29 class MockDispatcher : public IndexedDBDispatcher {
32 : IndexedDBDispatcher(thread_safe_sender), in MockDispatcher()
/external/chromium_org/content/renderer/
Drender_thread_impl.h89 class IndexedDBDispatcher; variable
470 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_;
Drender_thread_impl.cc365 main_thread_indexed_db_dispatcher_.reset(new IndexedDBDispatcher( in Init()