Home
last modified time | relevance | path

Searched refs:pending_updates_ (Results 1 – 15 of 15) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/components/sync/engine_impl/
H A Dmodel_type_worker.cc396 pending_updates_.clear(); in ApplyPendingUpdates()
562 pending_updates_.swap(candidates); in DeduplicatePendingUpdatesBasedOnServerId()
563 pending_updates_.reserve(candidates.size()); in DeduplicatePendingUpdatesBasedOnServerId()
577 pending_updates_.push_back(std::move(candidate)); in DeduplicatePendingUpdatesBasedOnServerId()
588 pending_updates_.swap(candidates); in DeduplicatePendingUpdatesBasedOnClientTagHash()
589 pending_updates_.reserve(candidates.size()); in DeduplicatePendingUpdatesBasedOnClientTagHash()
595 pending_updates_.push_back(std::move(candidate)); in DeduplicatePendingUpdatesBasedOnClientTagHash()
605 pending_updates_.push_back(std::move(candidate)); in DeduplicatePendingUpdatesBasedOnClientTagHash()
616 pending_updates_.swap(candidates); in DeduplicatePendingUpdatesBasedOnOriginatorClientItemId()
617 pending_updates_.reserve(candidates.size()); in DeduplicatePendingUpdatesBasedOnOriginatorClientItemId()
[all …]
H A Dmodel_type_worker.h246 UpdateResponseDataList pending_updates_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/webui/settings/chromeos/search/
H A Dsearch_tag_registry.cc50 for (const auto& map_entry : pending_updates_) { in ~ScopedTagUpdater()
90 auto it = pending_updates_.find(result_id); in ProcessPendingSearchTags()
91 if (it == pending_updates_.end()) { in ProcessPendingSearchTags()
92 pending_updates_.emplace(std::piecewise_construct, in ProcessPendingSearchTags()
H A Dsearch_tag_registry.h63 std::unordered_map<std::string, ConceptWithShouldAddBool> pending_updates_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/extensions/
H A Dextension_sync_service.cc263 auto it = pending_updates_.find(id); in CreateSyncData()
264 if (it != pending_updates_.end()) { in CreateSyncData()
470 pending_updates_[id] = in ApplySyncData()
560 auto it = pending_updates_.find(extension->id()); in OnExtensionInstalled()
561 if (it != pending_updates_.end()) { in OnExtensionInstalled()
571 pending_updates_.erase(it); in OnExtensionInstalled()
605 pending_updates_.erase(extension->id()); in OnExtensionUninstalled()
H A Dextension_sync_service.h153 std::map<std::string, PendingUpdate> pending_updates_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromeos/network/
H A Dshill_property_handler.cc280 if (pending_updates_[type].find(path) != pending_updates_[type].end()) in RequestProperties()
284 pending_updates_[type].insert(path); in RequestProperties()
330 pending_updates_[ManagedState::MANAGED_TYPE_NETWORK].size() == 0) { in CheckPendingStateListUpdates()
334 pending_updates_[ManagedState::MANAGED_TYPE_DEVICE].size() == 0) { in CheckPendingStateListUpdates()
561 pending_updates_[type].erase(path); in GetPropertiesCallback()
583 if (pending_updates_[type].size() == 0) in GetPropertiesCallback()
H A Dshill_property_handler.h249 TypeRequestMap pending_updates_; in COMPONENT_EXPORT() local
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/content/browser/webrtc/
H A Dwebrtc_internals.cc467 bool queue_was_empty = pending_updates_.empty(); in SendUpdate()
468 pending_updates_.push(PendingUpdate(command, std::move(value))); in SendUpdate()
675 while (!pending_updates_.empty()) { in ProcessPendingUpdates()
676 const auto& update = pending_updates_.front(); in ProcessPendingUpdates()
679 pending_updates_.pop(); in ProcessPendingUpdates()
H A Dwebrtc_internals.h289 base::queue<PendingUpdate> pending_updates_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/browser/webrtc/
H A Dwebrtc_internals.cc457 bool queue_was_empty = pending_updates_.empty(); in SendUpdate()
458 pending_updates_.push(PendingUpdate(command, std::move(value))); in SendUpdate()
659 while (!pending_updates_.empty()) { in ProcessPendingUpdates()
660 const auto& update = pending_updates_.front(); in ProcessPendingUpdates()
663 pending_updates_.pop(); in ProcessPendingUpdates()
H A Dwebrtc_internals.h287 base::queue<PendingUpdate> pending_updates_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/courgette/
H A Dadjustment_method_2.cc305 bool HasPendingUpdates() { return !pending_updates_.empty(); } in HasPendingUpdates()
309 pending_updates_[model_info] += delta_score; in AddPendingUpdate()
316 for (LabelToScore::iterator p = pending_updates_.begin(); in ApplyPendingUpdates()
317 p != pending_updates_.end(); in ApplyPendingUpdates()
324 pending_updates_.clear(); in ApplyPendingUpdates()
330 if (!pending_updates_.empty()) in Print()
331 VLOG(2) << pending_updates_.size() << " pending"; in Print()
354 LabelToScore pending_updates_; member in courgette::adjustment_method_2::AssignmentCandidates
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DNotificationManager.cpp795 if (pending_updates_.erase(group_id.get()) == 1) { in try_reuse_notification_group_id()
964 auto &updates = pending_updates_[group_id]; in add_update()
1000 auto it = pending_updates_.find(group_id); in flush_pending_updates()
1001 if (it == pending_updates_.end()) { in flush_pending_updates()
1006 pending_updates_.erase(it); in flush_pending_updates()
1354 for (const auto &it : pending_updates_) { in flush_all_pending_updates()
1369 CHECK(pending_updates_.empty()); in flush_all_pending_updates()
1772 auto it = pending_updates_.find(group_id.get()); in remove_added_notifications_from_pending_updates()
1773 if (it == pending_updates_.end()) { in remove_added_notifications_from_pending_updates()
2358 CHECK(pending_updates_.count(group_id.get()) == 0); in remove_call_notification()
[all …]
H A DNotificationManager.h380 std::unordered_map<int32, vector<td_api::object_ptr<td_api::Update>>> pending_updates_; variable