HomeSort by relevance Sort by last modified time
    Searched refs:namespace_id (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/content/renderer/dom_storage/
webstoragenamespace_impl.cc 24 int64 namespace_id)
25 : namespace_id_(namespace_id) {
26 DCHECK_NE(kInvalidSessionStorageNamespaceId, namespace_id);
webstoragenamespace_impl.h 18 explicit WebStorageNamespaceImpl(int64 namespace_id);
dom_storage_dispatcher.cc 102 int64 namespace_id, const GURL& origin);
105 int64 namespace_id, const GURL& origin);
154 std::string GetCachedAreaKey(int64 namespace_id, const GURL& origin) {
155 return base::Int64ToString(namespace_id) + origin.spec();
178 int64 namespace_id, const GURL& origin) {
179 std::string key = GetCachedAreaKey(namespace_id, origin);
185 new DOMStorageCachedArea(namespace_id, origin, this);
192 std::string key = GetCachedAreaKey(area->namespace_id(), area->origin());
203 int64 namespace_id, const GURL& origin) {
204 std::string key = GetCachedAreaKey(namespace_id, origin)
    [all...]
dom_storage_dispatcher.h 33 int64 namespace_id,
dom_storage_cached_area.h 30 DOMStorageCachedArea(int64 namespace_id,
34 int64 namespace_id() const { return namespace_id_; } function in class:content::DOMStorageCachedArea
webstoragearea_impl.cc 38 int64 namespace_id, const GURL& origin)
41 OpenCachedArea(connection_id_, namespace_id, origin)) {
webstoragearea_impl.h 23 WebStorageAreaImpl(int64 namespace_id, const GURL& origin);
  /external/chromium_org/content/browser/dom_storage/
session_storage_database.h 41 // Reads the (key, value) pairs for |namespace_id| and |origin|. |result| is
45 void ReadAreaValues(const std::string& namespace_id,
49 // Updates the data for |namespace_id| and |origin|. Will remove all keys
55 bool CommitAreaChanges(const std::string& namespace_id,
60 // Creates shallow copies of the areas for |namespace_id| and associates them
62 bool CloneNamespace(const std::string& namespace_id,
65 // Deletes the data for |namespace_id| and |origin|.
66 bool DeleteArea(const std::string& namespace_id, const GURL& origin);
68 // Deletes the data for |namespace_id|.
69 bool DeleteNamespace(const std::string& namespace_id);
    [all...]
session_storage_database.cc 63 void SessionStorageDatabase::ReadAreaValues(const std::string& namespace_id,
80 if (GetMapForArea(namespace_id, origin.spec(), options, &exists, &map_id) &&
87 const std::string& namespace_id,
100 if (!CreateNamespace(namespace_id, kOkIfExists, &batch))
105 if (!GetMapForArea(namespace_id, origin.spec(), leveldb::ReadOptions(),
113 if (!DeepCopyArea(namespace_id, origin, !clear_all_first,
124 if (!CreateMapForArea(namespace_id, origin, &map_id, &batch))
136 const std::string& namespace_id, const std::string& new_namespace_id) {
137 // Go through all origins in the namespace |namespace_id|, create placeholders
163 if (!GetAreasInNamespace(namespace_id, &areas)
    [all...]
dom_storage_session.h 33 int64 namespace_id() const { return namespace_id_; } function in class:content::DOMStorageSession
51 int64 namespace_id,
dom_storage_context_impl.cc 64 int64 namespace_id) {
67 StorageNamespaceMap::iterator found = namespaces_.find(namespace_id);
69 if (namespace_id == kLocalStorageNamespaceId) {
150 int64 namespace_id = AllocateSessionId(); local
151 CreateSessionNamespace(namespace_id, usage_info.persistent_namespace_id);
152 dom_storage_namespace = GetStorageNamespace(namespace_id);
248 int64 namespace_id,
252 DCHECK(namespace_id != kLocalStorageNamespaceId);
253 DCHECK(namespaces_.find(namespace_id) == namespaces_.end());
254 namespaces_[namespace_id] = new DOMStorageNamespace
    [all...]
dom_storage_host.h 35 bool OpenStorageArea(int connection_id, int namespace_id,
50 bool HasAreaOpen(int namespace_id, const GURL& origin) const;
dom_storage_namespace.h 45 DOMStorageNamespace(int64 namespace_id,
50 int64 namespace_id() const { return namespace_id_; } function in class:content::DOMStorageNamespace
dom_storage_host.cc 26 bool DOMStorageHost::OpenStorageArea(int connection_id, int namespace_id,
32 references.namespace_ = context_->GetStorageNamespace(namespace_id);
140 int namespace_id, const GURL& origin) const {
143 if (namespace_id == it->second.namespace_->namespace_id() &&
session_storage_namespace_impl.cc 29 return session_->namespace_id();
dom_storage_session.cc 68 int64 namespace_id,
71 namespace_id_(namespace_id),
session_storage_database_unittest.cc 37 std::string* namespace_id);
39 std::string* namespace_id);
49 void CheckAreaData(const std::string& namespace_id,
57 const std::string& namespace_id,
59 std::string GetMapForArea(const std::string& namespace_id,
112 std::string* namespace_id) {
124 *namespace_id = key.substr(
133 std::string* namespace_id) {
143 *namespace_id = key.substr(
221 std::string namespace_id; local
    [all...]
dom_storage_message_filter.cc 95 int64 namespace_id,
98 if (!host_->OpenStorageArea(connection_id, namespace_id, origin)) {
200 host_->HasAreaOpen(area->namespace_id(), area->origin())) {
208 params.namespace_id = area->namespace_id();
dom_storage_context_impl.h 109 DOMStorageNamespace* GetStorageNamespace(int64 namespace_id);
159 void CreateSessionNamespace(int64 namespace_id,
161 void DeleteSessionNamespace(int64 namespace_id, bool should_persist_data);
dom_storage_namespace.cc 27 int64 namespace_id,
31 : namespace_id_(namespace_id),
35 DCHECK_NE(kLocalStorageNamespaceId, namespace_id);
dom_storage_area.h 42 DOMStorageArea(int64 namespace_id,
49 int64 namespace_id() const { return namespace_id_; } function in class:content::DOMStorageArea
dom_storage_message_filter.h 51 void OnOpenStorageArea(int connection_id, int64 namespace_id,
dom_storage_area.cc 77 int64 namespace_id,
82 : namespace_id_(namespace_id),
92 DCHECK(namespace_id != kLocalStorageNamespaceId);
  /external/chromium_org/gpu/command_buffer/client/
share_group.h 55 IdHandlerInterface* GetIdHandler(int namespace_id) const {
56 return id_handlers_[namespace_id].get();
  /external/chromium_org/content/common/dom_storage/
dom_storage_messages.h 36 // The non-zero session namespace_id associated with the event or 0 if
38 IPC_STRUCT_MEMBER(int64, namespace_id)
61 int64 /* namespace_id */,

Completed in 385 milliseconds

1 2