Searched refs:notifiers (Results 1 - 15 of 15) sorted by relevance

/external/qemu/
H A Dnotify.c19 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) {
H A Dnotify.h29 QTAILQ_HEAD(, Notifier) notifiers; member in struct:NotifierList
33 { QTAILQ_HEAD_INITIALIZER((head).notifiers) }
/external/chromium_org/ui/message_center/
H A Dfake_notifier_settings_provider.cc24 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
23 FakeNotifierSettingsProvider( const std::vector<Notifier*>& notifiers) argument
66 GetNotifierList( std::vector<Notifier*>* notifiers) argument
107 AddGroup( NotifierGroup* group, const std::vector<Notifier*>& notifiers) argument
[all...]
H A Dfake_notifier_settings_provider.h14 // 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
H A Dnotifier_settings.h38 // 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/
H A Dnotifier_settings_view_unittest.cc26 TestingNotifierSettingsProvider(const std::vector<Notifier*>& notifiers, argument
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")));
H A Dnotifier_settings_view.cc511 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);
548 UpdateContentsView( const std::vector<Notifier*>& notifiers) argument
H A Dnotifier_settings_view.h93 // 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/
H A Dmessage_center_settings_controller.cc177 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
176 GetNotifierList( std::vector<Notifier*>* notifiers) argument
[all...]
H A Dmessage_center_settings_controller.h39 // 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/
H A DGeolocation.cpp461 void Geolocation::sendError(GeoNotifierVector& notifiers, PositionError* error) argument
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) argument
473 GeoNotifierVector::const_iterator end = notifiers.end();
474 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
478 void Geolocation::stopTimer(GeoNotifierVector& notifiers) argument
480 GeoNotifierVector::const_iterator end = notifiers.end();
481 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
507 void Geolocation::cancelRequests(GeoNotifierVector& notifiers) argument
523 extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached) argument
[all...]
H A DGeolocation.h163 // 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 awaitin
[all...]
/external/chromium_org/chrome/browser/notifications/sync_notifier/
H A Dchrome_notifier_service.h83 // |notifiers|.
85 std::vector<message_center::Notifier*>* notifiers);
H A Dchrome_notifier_service.cc337 std::vector<message_center::Notifier*>* notifiers) {
376 notifiers->push_back(notifier_service);
336 GetSyncedNotificationServices( std::vector<message_center::Notifier*>* notifiers) argument
/external/chromium_org/net/quic/
H A Dquic_protocol.h914 std::set<QuicAckNotifier*> notifiers; member in struct:net::SerializedPacket

Completed in 378 milliseconds