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

/external/qemu/include/qemu/
H A Dnotify.h29 QLIST_HEAD(, Notifier) notifiers; member in struct:NotifierList
33 { QLIST_HEAD_INITIALIZER((head).notifiers) }
56 QLIST_HEAD(, NotifierWithReturn) notifiers; member in struct:NotifierWithReturnList
60 { QLIST_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.h37 // The struct to distinguish the notifiers.
83 // The struct to hold the information of notifiers. The information will be
168 // should return notifiers for the specified notifier group.
175 // Collects the current notifier list and fills to |notifiers|. Caller takes
176 // the ownership of the elements of |notifiers|.
177 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) = 0;
/external/qemu/util/
H A Dnotify.c21 QLIST_INIT(&list->notifiers);
26 QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
38 QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
45 QLIST_INIT(&list->notifiers);
51 QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
64 QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
/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.cc499 std::vector<Notifier*> notifiers; local
501 provider_->GetNotifierList(&notifiers);
503 UpdateContentsView(notifiers);
529 std::vector<Notifier*> notifiers; local
531 provider_->GetNotifierList(&notifiers);
533 UpdateContentsView(notifiers);
540 const std::vector<Notifier*>& notifiers) {
588 size_t notifier_count = notifiers.size();
590 NotifierButton* button = new NotifierButton(provider_, notifiers[i], this);
539 UpdateContentsView( const std::vector<Notifier*>& notifiers) argument
H A Dnotifier_settings_view.h95 // Given a new list of notifiers, updates the view to reflect it.
96 void UpdateContentsView(const std::vector<Notifier*>& notifiers);
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocation.cpp308 void Geolocation::sendError(GeoNotifierVector& notifiers, PositionError* error) argument
310 GeoNotifierVector::const_iterator end = notifiers.end();
311 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
315 void Geolocation::sendPosition(GeoNotifierVector& notifiers, Geoposition* position) argument
317 GeoNotifierVector::const_iterator end = notifiers.end();
318 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
322 void Geolocation::stopTimer(GeoNotifierVector& notifiers) argument
324 GeoNotifierVector::const_iterator end = notifiers.end();
325 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
351 void Geolocation::cancelRequests(GeoNotifierVector& notifiers) argument
367 extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached) argument
[all...]
H A DGeolocation.h115 // Removes notifiers that use a cached position from |notifiers| and
117 static void extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached);
119 // Copies notifiers from |src| vector to |dest| set.
127 // Sets a fatal error on the given notifiers.
130 // Sets a fatal error on all notifiers.
133 // Runs the success callbacks on all notifiers. A position must be available
137 // Sends the given error to all notifiers, unless the error is not fatal and
151 // Processes the notifiers that were waiting for a permission decision. If
163 // Runs the success callbacks for the set of notifiers awaitin
[all...]
/external/chromium_org/chrome/browser/notifications/
H A Dmessage_center_settings_controller.cc200 std::vector<Notifier*>* notifiers) {
201 DCHECK(notifiers);
236 notifiers->push_back(new Notifier(
243 int app_count = notifiers->size();
264 notifiers->push_back(new Notifier(
293 notifiers->push_back(screenshot_notifier);
297 std::sort(notifiers->begin() + app_count, notifiers->end(), *comparator);
299 std::sort(notifiers->begin() + app_count, notifiers
199 GetNotifierList( std::vector<Notifier*>* notifiers) argument
[all...]
H A Dmessage_center_settings_controller.h44 // The class to bridge between the settings UI of notifiers and the preference
71 std::vector<message_center::Notifier*>* notifiers) OVERRIDE;
/external/chromium_org/chrome/browser/apps/
H A Dephemeral_app_browsertest.cc77 const NotifierList& notifiers) {
78 for (NotifierList::const_iterator it = notifiers.begin();
79 it != notifiers.end(); ++it) {
738 // of notifiers to show in the UI.
739 NotifierList notifiers; local
740 STLElementDeleter<NotifierList> notifier_deleter(&notifiers);
742 settings_provider->GetNotifierList(&notifiers);
743 EXPECT_TRUE(IsNotifierInList(notifier_id, notifiers));
744 STLDeleteElements(&notifiers);
749 // Inactive ephemeral apps should not be included in the list of notifiers t
76 IsNotifierInList(const message_center::NotifierId& notifier_id, const NotifierList& notifiers) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/notification_provider/
H A Dnotification_provider_api.cc201 // to change permission levels of web notifiers, because the list of allowed
203 // are able to change permission levels of application type notifiers.
241 // Only application type notifiers have advanced settings.
292 std::vector<linked_ptr<api::notification_provider::Notifier> > notifiers; local
295 api::notification_provider::GetAllNotifiers::Results::Create(notifiers)));
/external/chromium_org/net/quic/
H A Dquic_protocol.h1049 std::set<QuicAckNotifier*> notifiers; member in struct:net::SerializedPacket

Completed in 1211 milliseconds