HomeSort by relevance Sort by last modified time
    Searched full:sync_id (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium/chrome/browser/sync/glue/
autofill_profile_change_processor.cc 137 int64 sync_id = model_associator_->GetSyncIdFromChromeId(change->key()); local
138 if (sync_api::kInvalidId == sync_id) {
143 if (!node.InitByIdLookup(sync_id)) {
144 LOG(ERROR) << "Could not find sync node for id " << sync_id;
152 int64 sync_id = model_associator_->GetSyncIdFromChromeId(change->key()); local
153 if (sync_api::kInvalidId == sync_id) {
158 if (!node.InitByIdLookup(sync_id)) {
159 LOG(ERROR) << "Could not find sync node for id " << sync_id;
163 model_associator_->Disassociate(sync_id);
211 int64 sync_id) {
265 int64 sync_id = model_associator_->GetSyncIdFromChromeId(guid); local
    [all...]
password_model_associator.h 78 virtual const std::string* GetChromeNodeFromSyncId(int64 sync_id);
89 virtual void Associate(const std::string* node, int64 sync_id);
92 virtual void Disassociate(int64 sync_id);
95 // |sync_id| with that node's id.
96 virtual bool GetSyncIdForTaggedNode(const std::string& tag, int64* sync_id);
preference_model_associator.h 76 virtual const PrefService::Preference* GetChromeNodeFromSyncId(int64 sync_id);
87 virtual void Associate(const PrefService::Preference* node, int64 sync_id);
90 virtual void Disassociate(int64 sync_id);
93 // |sync_id| with that node's id.
94 virtual bool GetSyncIdForTaggedNode(const std::string& tag, int64* sync_id);
typed_url_model_associator.h 81 virtual const std::string* GetChromeNodeFromSyncId(int64 sync_id);
92 virtual void Associate(const std::string* node, int64 sync_id);
95 virtual void Disassociate(int64 sync_id);
98 // |sync_id| with that node's id.
99 virtual bool GetSyncIdForTaggedNode(const std::string& tag, int64* sync_id);
autofill_change_processor.cc 133 int64 sync_id = model_associator_->GetSyncIdFromChromeId(tag); local
134 if (sync_api::kInvalidId == sync_id) {
140 if (!sync_node.InitByIdLookup(sync_id)) {
174 int64 sync_id = model_associator_->GetSyncIdFromChromeId(tag); local
175 if (sync_api::kInvalidId == sync_id) {
182 if (!sync_node.InitByIdLookup(sync_id)) {
242 int64 sync_id = sync_node.GetId(); local
246 sync_id, autofill));
318 int64 sync_id) {
333 model_associator_->Associate(&tag, sync_id);
    [all...]
session_model_associator.h 85 virtual const TabContents* GetChromeNodeFromSyncId(int64 sync_id);
109 virtual void Associate(const TabContents* tab, int64 sync_id);
113 virtual void Disassociate(int64 sync_id);
201 TabLinks(int64 sync_id, const TabContents* tab)
202 : sync_id_(sync_id),
206 TabLinks(int64 sync_id, const SessionTab* session_tab)
207 : sync_id_(sync_id),
212 inline int64 sync_id() const { return sync_id_; } function in class:browser_sync::SessionModelAssociator::TabLinks
233 void AddTabNode(int64 sync_id);
235 // Returns the sync_id for the next free tab node. If none are available
    [all...]
bookmark_model_associator.cc 191 int64 sync_id) {
192 SyncIdToBookmarkNodeMap::const_iterator iter = id_map_inverse_.find(sync_id);
200 int64 sync_id = GetSyncIdFromChromeId(node_id); local
201 if (sync_id == sync_api::kInvalidId)
203 if (!sync_node->InitByIdLookup(sync_id))
205 DCHECK(sync_node->GetId() == sync_id);
210 int64 sync_id) {
213 DCHECK_NE(sync_id, sync_api::kInvalidId);
215 DCHECK(id_map_inverse_.find(sync_id) == id_map_inverse_.end());
216 id_map_[node_id] = sync_id;
282 int64 sync_id = GetSyncIdFromChromeId(permanent_node->id()); local
452 int64 sync_id = *iter; local
    [all...]
password_change_processor.cc 88 int64 sync_id = model_associator_->GetSyncIdFromChromeId(tag); local
89 if (sync_api::kInvalidId == sync_id) {
94 if (!sync_node.InitByIdLookup(sync_id)) {
106 int64 sync_id = model_associator_->GetSyncIdFromChromeId(tag); local
107 if (sync_api::kInvalidId == sync_id) {
112 if (!sync_node.InitByIdLookup(sync_id)) {
preference_model_associator.cc 174 PreferenceModelAssociator::GetChromeNodeFromSyncId(int64 sync_id) {
192 const PrefService::Preference* preference, int64 sync_id) {
194 DCHECK_NE(sync_api::kInvalidId, sync_id);
196 DCHECK(id_map_inverse_.find(sync_id) == id_map_inverse_.end());
197 id_map_[preference->name()] = sync_id;
198 id_map_inverse_[sync_id] = preference->name();
201 void PreferenceModelAssociator::Disassociate(int64 sync_id) {
203 SyncIdToPreferenceNameMap::iterator iter = id_map_inverse_.find(sync_id);
211 int64* sync_id) {
216 *sync_id = sync_node.GetId()
    [all...]
autofill_model_associator.cc 358 int64 sync_id = node.GetId(); local
360 Associate(&guid, sync_id);
414 AutofillModelAssociator::GetChromeNodeFromSyncId(int64 sync_id) {
415 SyncIdToAutofillMap::const_iterator iter = id_map_inverse_.find(sync_id);
432 const std::string* autofill, int64 sync_id) {
434 DCHECK_NE(sync_api::kInvalidId, sync_id);
436 DCHECK(id_map_inverse_.find(sync_id) == id_map_inverse_.end());
437 id_map_[*autofill] = sync_id;
438 id_map_inverse_[sync_id] = *autofill;
441 void AutofillModelAssociator::Disassociate(int64 sync_id) {
    [all...]
autofill_model_associator.h 73 virtual const std::string* GetChromeNodeFromSyncId(int64 sync_id);
84 virtual void Associate(const std::string* node, int64 sync_id);
87 virtual void Disassociate(int64 sync_id);
90 // |sync_id| with that node's id.
91 virtual bool GetSyncIdForTaggedNode(const std::string& tag, int64* sync_id);
autofill_profile_model_associator.h 78 virtual const std::string* GetChromeNodeFromSyncId(int64 sync_id);
88 virtual void Associate(const std::string* node, int64 sync_id);
91 virtual void Disassociate(int64 sync_id);
95 // |sync_id| with that node's id. No current use. To Implement
97 virtual bool GetSyncIdForTaggedNode(const std::string& tag, int64* sync_id);
bookmark_model_associator.h 70 virtual const BookmarkNode* GetChromeNodeFromSyncId(int64 sync_id);
79 virtual void Associate(const BookmarkNode* node, int64 sync_id);
81 virtual void Disassociate(int64 sync_id);
92 // Stores the id of the node with the given tag in |sync_id|.
95 virtual bool GetSyncIdForTaggedNode(const std::string& tag, int64* sync_id);
autofill_change_processor.h 94 int64 sync_id);
98 int64 sync_id);
104 int64 sync_id);
model_associator.h 73 virtual const Node* GetChromeNodeFromSyncId(int64 sync_id) = 0;
82 virtual void Associate(const Node* node, int64 sync_id) = 0;
85 virtual void Disassociate(int64 sync_id) = 0;
autofill_profile_model_associator.cc 118 int64* sync_id) {
123 *sync_id = sync_node.GetId();
460 int64 sync_id) {
462 DCHECK_NE(sync_api::kInvalidId, sync_id);
464 DCHECK(id_map_inverse_.find(sync_id) == id_map_inverse_.end());
465 id_map_[*autofill] = sync_id;
466 id_map_inverse_[sync_id] = *autofill;
469 void AutofillProfileModelAssociator::Disassociate(int64 sync_id) {
471 SyncIdToAutofillMap::iterator iter = id_map_inverse_.find(sync_id);
491 int64 sync_id) {
    [all...]
session_model_associator.cc 98 SessionModelAssociator::GetChromeNodeFromSyncId(int64 sync_id) {
205 int64 sync_id;
214 tab_pool_.FreeTabNode(tab_iter->second.sync_id());
222 sync_id = tab_pool_.GetFreeTabNode();
225 sync_id = tablink->second.sync_id();
227 Associate(&tab, sync_id);
230 void SessionModelAssociator::Associate(const TabContents* tab, int64 sync_id) {
238 TabLinks t(sync_id, tab);
242 WriteTabContentsToSyncModel(*browser, *tab, sync_id, &trans)
    [all...]
password_model_associator.cc 215 int64 sync_id) {
237 const std::string* password, int64 sync_id) {
239 DCHECK_NE(sync_api::kInvalidId, sync_id);
241 DCHECK(id_map_inverse_.find(sync_id) == id_map_inverse_.end());
242 id_map_[*password] = sync_id;
243 id_map_inverse_[sync_id] = *password;
246 void PasswordModelAssociator::Disassociate(int64 sync_id) {
248 SyncIdToPasswordMap::iterator iter = id_map_inverse_.find(sync_id);
256 int64* sync_id) {
261 *sync_id = sync_node.GetId()
    [all...]
typed_url_model_associator.cc 238 int64 sync_id) {
255 const std::string* typed_url, int64 sync_id) {
257 DCHECK_NE(sync_api::kInvalidId, sync_id);
259 DCHECK(id_map_inverse_.find(sync_id) == id_map_inverse_.end());
260 id_map_[*typed_url] = sync_id;
261 id_map_inverse_[sync_id] = *typed_url;
264 void TypedUrlModelAssociator::Disassociate(int64 sync_id) {
266 SyncIdToTypedUrlMap::iterator iter = id_map_inverse_.find(sync_id);
274 int64* sync_id) {
279 *sync_id = sync_node.GetId()
    [all...]
preference_change_processor.cc 58 int64 sync_id = model_associator_->GetSyncIdFromChromeId(*name); local
62 model_associator_->Disassociate(sync_id);
74 if (sync_api::kInvalidId == sync_id) {
92 if (!node.InitByIdLookup(sync_id)) {
autofill_profile_change_processor.h 105 int64 sync_id);
typed_url_change_processor.cc 140 int64 sync_id = local
142 if (sync_api::kInvalidId != sync_id) {
143 if (!sync_node.InitByIdLookup(sync_id)) {
  /external/chromium/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 55 virtual bool GetSyncIdForTaggedNode(const std::string& tag, int64* sync_id) {
97 *sync_id = id;
115 *sync_id = node.GetId();
406 int64 sync_id) {
407 EXPECT_TRUE(sync_id);
409 model_associator_->GetChromeNodeFromSyncId(sync_id);
412 EXPECT_EQ(id, sync_id);
416 void ExpectBrowserNodeUnknown(int64 sync_id) {
417 EXPECT_FALSE(model_associator_->GetChromeNodeFromSyncId(sync_id));
420 void ExpectBrowserNodeKnown(int64 sync_id) {
425 int64 sync_id = model_associator_->GetSyncIdFromChromeId(node->id()); local
430 int64 sync_id = model_associator_->GetSyncIdFromChromeId(node->id()); local
    [all...]
profile_sync_service_session_unittest.cc 181 int64 sync_id = model_associator_->GetSyncIdFromSessionTag(machine_tag); local
182 ASSERT_NE(sync_api::kInvalidId, sync_id);
215 int64 sync_id = model_associator_->GetSyncIdFromSessionTag(machine_tag); local
216 ASSERT_NE(sync_api::kInvalidId, sync_id);
  /bionic/libc/kernel/common/video/
dsscomp.h 296 __u32 sync_id; member in struct:dsscomp_setup_mgr_data
314 __u32 sync_id; member in struct:dsscomp_setup_dispc_data

Completed in 470 milliseconds

1 2