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

  /external/qemu/
notify.c 19 QTAILQ_INIT(&list->notifiers);
24 QTAILQ_INSERT_HEAD(&list->notifiers, notifier, node);
29 QTAILQ_REMOVE(&list->notifiers, notifier, node);
36 QTAILQ_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
notify.h 29 QTAILQ_HEAD(, Notifier) notifiers; member in struct:NotifierList
33 { QTAILQ_HEAD_INITIALIZER((head).notifiers) }
  /external/chromium_org/ui/message_center/
fake_notifier_settings_provider.cc 24 const std::vector<Notifier*>& notifiers)
33 item.notifiers = notifiers;
67 std::vector<Notifier*>* notifiers) {
68 notifiers->clear();
69 for (size_t i = 0; i < items_[active_item_index_].notifiers.size(); ++i)
70 notifiers->push_back(items_[active_item_index_].notifiers[i]);
108 NotifierGroup* group, const std::vector<Notifier*>& notifiers) {
111 item.notifiers = notifiers
    [all...]
fake_notifier_settings_provider.h 14 // notifiers and records which callbacks were called. For use in tests.
19 const std::vector<Notifier*>& notifiers);
28 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) OVERRIDE;
45 void AddGroup(NotifierGroup* group, const std::vector<Notifier*>& notifiers);
55 std::vector<Notifier*> notifiers; member in struct:message_center::FakeNotifierSettingsProvider::NotifierGroupItem
notifier_settings.h 38 // The struct to distinguish the notifiers.
86 // The struct to hold the information of notifiers. The information will be
165 // should return notifiers for the specified notifier group.
172 // Collects the current notifier list and fills to |notifiers|. Caller takes
173 // the ownership of the elements of |notifiers|.
174 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) = 0;
  /external/chromium_org/ui/message_center/views/
notifier_settings_view_unittest.cc 26 TestingNotifierSettingsProvider(const std::vector<Notifier*>& notifiers,
28 : FakeNotifierSettingsProvider(notifiers),
83 std::vector<Notifier*> notifiers; local
84 notifiers.push_back(NewNotifier("id", "title", /*enabled=*/true));
85 notifiers.push_back(NewNotifier("id2", "other title", /*enabled=*/false));
87 notifiers, NotifierId(NotifierId::APPLICATION, "id")));
notifier_settings_view.cc 511 std::vector<Notifier*> notifiers; local
513 provider_->GetNotifierList(&notifiers);
515 UpdateContentsView(notifiers);
541 std::vector<Notifier*> notifiers; local
543 provider_->GetNotifierList(&notifiers);
545 UpdateContentsView(notifiers);
549 const std::vector<Notifier*>& notifiers) {
610 size_t notifier_count = notifiers.size();
612 NotifierButton* button = new NotifierButton(provider_, notifiers[i], this);
notifier_settings_view.h 93 // Given a new list of notifiers, updates the view to reflect it.
94 void UpdateContentsView(const std::vector<Notifier*>& notifiers);
  /external/chromium_org/chrome/browser/notifications/
message_center_settings_controller.cc 177 std::vector<Notifier*>* notifiers) {
178 DCHECK(notifiers);
213 notifiers->push_back(new Notifier(
226 sync_notifier_service->GetSyncedNotificationServices(notifiers);
229 std::sort(notifiers->begin(), notifiers->end(), *comparator);
231 std::sort(notifiers->begin(), notifiers->end(), SimpleCompareNotifiers);
235 int app_count = notifiers->size();
255 notifiers->push_back(new Notifier
    [all...]
message_center_settings_controller.h 39 // The class to bridge between the settings UI of notifiers and the preference
66 std::vector<message_center::Notifier*>* notifiers) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.cpp 461 void Geolocation::sendError(GeoNotifierVector& notifiers, PositionError* error)
463 GeoNotifierVector::const_iterator end = notifiers.end();
464 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it) {
471 void Geolocation::sendPosition(GeoNotifierVector& notifiers, Geoposition* position)
473 GeoNotifierVector::const_iterator end = notifiers.end();
474 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
478 void Geolocation::stopTimer(GeoNotifierVector& notifiers)
480 GeoNotifierVector::const_iterator end = notifiers.end();
481 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
507 void Geolocation::cancelRequests(GeoNotifierVector& notifiers)
    [all...]
Geolocation.h 163 // Removes notifiers that use a cached position from |notifiers| and
165 static void extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached);
167 // Copies notifiers from |src| vector to |dest| set.
175 // Sets a fatal error on the given notifiers.
178 // Sets a fatal error on all notifiers.
181 // Runs the success callbacks on all notifiers. A position must be available
185 // Sends the given error to all notifiers, unless the error is not fatal and
199 // Processes the notifiers that were waiting for a permission decision. If
222 // Runs the success callbacks for the set of notifiers awaiting a cache
    [all...]
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service.h 83 // |notifiers|.
85 std::vector<message_center::Notifier*>* notifiers);
chrome_notifier_service.cc 337 std::vector<message_center::Notifier*>* notifiers) {
376 notifiers->push_back(notifier_service);
  /external/chromium_org/net/quic/
quic_protocol.h 914 std::set<QuicAckNotifier*> notifiers; member in struct:net::SerializedPacket
    [all...]

Completed in 126 milliseconds