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

  /external/chromium_org/content/child/indexed_db/
indexed_db_message_filter.h 37 int32 ipc_object_id,
indexed_db_dispatcher.cc 455 int32 ipc_object_id,
463 if (!databases_.count(ipc_object_id))
464 databases_[ipc_object_id] = new RendererWebIDBDatabaseImpl(
465 ipc_object_id, ipc_database_callbacks_id, thread_safe_sender_.get());
466 DCHECK_EQ(databases_.count(ipc_object_id), 1u);
467 callbacks->onSuccess(databases_[ipc_object_id], metadata);
552 int32 ipc_object_id = p.ipc_cursor_id; local
564 new RendererWebIDBCursorImpl(ipc_object_id, thread_safe_sender_.get());
565 cursors_[ipc_object_id] = cursor;
indexed_db_dispatcher.h 180 int32 ipc_object_id,
  /external/chromium_org/content/browser/indexed_db/
indexed_db_callbacks.cc 146 int32 ipc_object_id = ipc_database_id_; local
147 if (ipc_object_id == kNoDatabase) {
148 ipc_object_id = dispatcher_host_->Add(
156 ipc_object_id,
172 int32 ipc_object_id = dispatcher_host_->Add(cursor.get()); local
176 params.ipc_cursor_id = ipc_object_id;
indexed_db_dispatcher_host.cc 325 void IndexedDBDispatcherHost::DestroyObject(MapType* map, int32 ipc_object_id) {
326 GetOrTerminateProcess(map, ipc_object_id);
327 map->Remove(ipc_object_id);
491 int32 ipc_object_id) {
494 IndexedDBConnection* connection = map_.Lookup(ipc_object_id);
496 ->ConnectionClosed(database_url_map_[ipc_object_id], connection);
497 database_url_map_.erase(ipc_object_id);
498 parent_->DestroyObject(&map_, ipc_object_id);
    [all...]
indexed_db_dispatcher_host.h 135 void DestroyObject(MapType* map, int32 ipc_object_id);

Completed in 132 milliseconds