HomeSort by relevance Sort by last modified time
    Searched refs:notifiers (Results 1 - 14 of 14) 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 22 const std::vector<Notifier*>& notifiers)
30 item.notifiers = notifiers;
64 std::vector<Notifier*>* notifiers) {
65 notifiers->clear();
66 for (size_t i = 0; i < items_[active_item_index_].notifiers.size(); ++i)
67 notifiers->push_back(items_[active_item_index_].notifiers[i]);
92 NotifierGroup* group, const std::vector<Notifier*>& notifiers) {
95 item.notifiers = notifiers
    [all...]
fake_notifier_settings_provider.h 13 // notifiers and records which callbacks were called. For use in tests.
17 FakeNotifierSettingsProvider(const std::vector<Notifier*>& notifiers);
28 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) OVERRIDE;
40 void AddGroup(NotifierGroup* group, const std::vector<Notifier*>& notifiers);
45 std::vector<Notifier*> notifiers; member in struct:message_center::FakeNotifierSettingsProvider::NotifierGroupItem
notifier_settings.h 27 // The struct to distinguish the notifiers.
65 // The struct to hold the information of notifiers. The information will be
149 // should return notifiers for the specified notifier group.
156 // Collects the current notifier list and fills to |notifiers|. Caller takes
157 // the ownership of the elements of |notifiers|.
158 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) = 0;
  /external/chromium_org/chrome/browser/notifications/
message_center_settings_controller.cc 162 std::vector<Notifier*>* notifiers) {
163 DCHECK(notifiers);
201 notifiers->push_back(new Notifier(
213 sync_notifier_service->GetSyncedNotificationServices(notifiers);
216 std::sort(notifiers->begin(), notifiers->end(), *comparator);
218 std::sort(notifiers->begin(), notifiers->end(), SimpleCompareNotifiers);
221 int app_count = notifiers->size();
241 notifiers->push_back(new Notifier
    [all...]
message_center_settings_controller.h 34 // The class to bridge between the settings UI of notifiers and the preference
58 std::vector<message_center::Notifier*>* notifiers) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.cpp 465 void Geolocation::sendError(GeoNotifierVector& notifiers, PositionError* error)
467 GeoNotifierVector::const_iterator end = notifiers.end();
468 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it) {
475 void Geolocation::sendPosition(GeoNotifierVector& notifiers, Geoposition* position)
477 GeoNotifierVector::const_iterator end = notifiers.end();
478 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
482 void Geolocation::stopTimer(GeoNotifierVector& notifiers)
484 GeoNotifierVector::const_iterator end = notifiers.end();
485 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
511 void Geolocation::cancelRequests(GeoNotifierVector& notifiers)
    [all...]
Geolocation.h 133 static void extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached);
  /external/chromium_org/ui/message_center/views/
notifier_settings_view.h 52 // Given a new list of notifiers, updates the view to reflect it.
53 void UpdateContentsView(const std::vector<Notifier*>& notifiers);
notifier_settings_view.cc 355 std::vector<Notifier*> notifiers; local
357 provider_->GetNotifierList(&notifiers);
359 UpdateContentsView(notifiers);
384 std::vector<Notifier*> notifiers; local
386 provider_->GetNotifierList(&notifiers);
388 UpdateContentsView(notifiers);
392 const std::vector<Notifier*>& notifiers) {
441 for (size_t i = 0; i < notifiers.size(); ++i) {
442 NotifierButton* button = new NotifierButton(notifiers[i], this);
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service.h 64 // |notifiers|.
66 std::vector<message_center::Notifier*>* notifiers);
chrome_notifier_service.cc 322 std::vector<message_center::Notifier*>* notifiers) {
350 notifiers->push_back(notifier_service);
  /external/chromium_org/media/audio/
cross_process_notification_unittest.cc 95 // amount of |shared_data| that the notifiers control access to.
99 const CrossProcessNotification::Notifications* notifiers)
101 notifiers_(notifiers) {
131 // "multiple notifiers" approach.
205 // Initializes two notifiers, signals the each one and make sure the others
247 // data. On regular dev machines, the number of notifiers should be 1000, but on
250 // test that the max number of notifiers will be in the range 500-512. On Mac
278 // that all notifiers had the same quality of service.
286 // ThousandNotifiersTwoThreads test but uses a single pair of notifiers +
328 // Test the maximum number of notifiers without spinning further wai
    [all...]

Completed in 377 milliseconds