/external/qemu/ |
notify.h | 2 * Notifier lists 19 typedef struct Notifier Notifier; 21 struct Notifier 23 void (*notify)(Notifier *notifier); 24 QTAILQ_ENTRY(Notifier) node; 29 QTAILQ_HEAD(, Notifier) notifiers; 37 void notifier_list_add(NotifierList *list, Notifier *notifier); [all...] |
notify.c | 2 * Notifier lists 22 void notifier_list_add(NotifierList *list, Notifier *notifier) 24 QTAILQ_INSERT_HEAD(&list->notifiers, notifier, node); 27 void notifier_list_remove(NotifierList *list, Notifier *notifier) 29 QTAILQ_REMOVE(&list->notifiers, notifier, node); 34 Notifier *notifier, *next; local 36 QTAILQ_FOREACH_SAFE(notifier, &list->notifiers, node, next) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
LifecycleContext.h | 42 typedef LifecycleNotifier<T> Notifier; 57 Notifier& lifecycleNotifier(); 60 PassOwnPtr<Notifier> createLifecycleNotifier(); 62 OwnPtr<Notifier> m_lifecycleNotifier; 80 inline typename LifecycleContext<T>::Notifier& LifecycleContext<T>::lifecycleNotifier() 88 inline PassOwnPtr<typename LifecycleContext<T>::Notifier> LifecycleContext<T>::createLifecycleNotifier() 90 return LifecycleContext<T>::Notifier::create(static_cast<T*>(this));
|
/external/chromium_org/ui/message_center/ |
fake_notifier_settings_provider.h | 19 const std::vector<Notifier*>& notifiers); 28 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) OVERRIDE; 30 virtual void SetNotifierEnabled(const Notifier& notifier, 42 bool WasEnabled(const Notifier& notifier); 45 void AddGroup(NotifierGroup* group, const std::vector<Notifier*>& notifiers); 47 // For testing, this method can be used to specify a notifier that has a learn 55 std::vector<Notifier*> notifiers; 61 std::map<const Notifier*, bool> enabled_ [all...] |
notifier_settings.cc | 53 Notifier::Notifier(const NotifierId& notifier_id, 61 Notifier::~Notifier() {
|
notifier_settings.h | 59 // The identifier of the app notifier. Empty if it's WEB_PAGE. 82 // The default constructor which doesn't specify the notifier. Used for tests. 88 struct MESSAGE_CENTER_EXPORT Notifier { 89 Notifier(const NotifierId& notifier_id, const string16& name, bool enabled); 90 ~Notifier(); 94 // The human-readable name of the notifier such like the extension name. 101 // The icon image of the notifier. The extension icon or favicon. 105 DISALLOW_COPY_AND_ASSIGN(Notifier); 115 // Icon of a notifier group. 118 // Display name of a notifier group [all...] |
fake_notifier_settings_provider.cc | 24 const std::vector<Notifier*>& notifiers) 67 std::vector<Notifier*>* notifiers) { 73 void FakeNotifierSettingsProvider::SetNotifierEnabled(const Notifier& notifier, 75 enabled_[¬ifier] = enabled; 103 bool FakeNotifierSettingsProvider::WasEnabled(const Notifier& notifier) { 104 return enabled_[¬ifier]; 108 NotifierGroup* group, const std::vector<Notifier*>& notifiers) {
|
/external/chromium_org/net/cert/ |
cert_database_mac.cc | 24 class CertDatabase::Notifier { 26 // Creates a new Notifier that will forward Keychain events to |cert_db|. 29 Notifier(CertDatabase* cert_db, base::MessageLoop* message_loop) 37 base::Bind(&Notifier::Init, 43 ~Notifier() { 47 SecKeychainRemoveCallback(&Notifier::KeychainCallback); 64 OSStatus status = SecKeychainAddCallback(&Notifier::KeychainCallback, 83 OSStatus CertDatabase::Notifier::KeychainCallback( 87 Notifier* that = reinterpret_cast<Notifier*>(context) [all...] |
cert_database.h | 102 class Notifier; 103 friend class Notifier; 104 scoped_ptr<Notifier> notifier_;
|
cert_database_nss.cc | 24 class CertDatabase::Notifier : public NSSCertDatabase::Observer { 26 explicit Notifier(CertDatabase* cert_db) : cert_db_(cert_db) { 30 virtual ~Notifier() { 50 DISALLOW_COPY_AND_ASSIGN(Notifier); 57 notifier_.reset(new Notifier(this));
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
mediastreamtrack.h | 34 #include "talk/app/webrtc/notifier.h" 41 class MediaStreamTrack : public Notifier<T> { 54 Notifier<T>::FireOnChanged(); 62 Notifier<T>::FireOnChanged();
|
notifier.h | 38 // Implement a template version of a notifier. 40 class Notifier : public T { 42 Notifier() {
|
localaudiosource.h | 32 #include "talk/app/webrtc/notifier.h" 44 class LocalAudioSource : public Notifier<AudioSourceInterface> {
|
mediastream.h | 37 #include "talk/app/webrtc/notifier.h" 41 class MediaStream : public Notifier<MediaStreamInterface> {
|
videosource.h | 32 #include "talk/app/webrtc/notifier.h" 57 class VideoSource : public Notifier<VideoSourceInterface>,
|
/external/chromium_org/ui/message_center/cocoa/ |
settings_entry_view.h | 25 message_center::Notifier* notifier_; 27 // The image that will be displayed next to the notifier name, loaded 31 // The button that can be displayed after the notifier name, that when 35 // The button that contains the label, notifier icon and checkbox. 44 notifier:(message_center::Notifier*)notifier
|
settings_controller.h | 61 std::vector<message_center::Notifier*> notifiers_; 69 // notifier; i.e. we should show the "Learn More" button. 73 - (void)setSettingsNotifier:(message_center::Notifier*)notifier 77 - (void)learnMoreClicked:(message_center::Notifier*)notifier;
|
/external/chromium_org/third_party/libjingle/source/talk/examples/plus/testutil/ |
libjingleplus_unittest.cc | 41 LibjinglePlus *libjingleplus = new LibjinglePlus(new Notifier);
|
libjingleplus_main.cc | 85 // Create a LibjinglePlus object and give it the notifier interface 86 LibjinglePlus ljp(new Notifier);
|
/external/chromium_org/ui/message_center/views/ |
notifier_settings_view.h | 29 // A class to show the list of notifier extensions / URL patterns and allow 58 Notifier* notifier, 66 const Notifier& notifier() const; 82 const scoped_ptr<Notifier> notifier_; 94 void UpdateContentsView(const std::vector<Notifier*>& notifiers);
|
notifier_settings_view_unittest.cc | 14 Notifier* NewNotifier(const std::string& id, 18 return new Notifier(notifier_id, base::UTF8ToUTF16(title), enabled); 26 TestingNotifierSettingsProvider(const std::vector<Notifier*>& notifiers, 83 std::vector<Notifier*> notifiers;
|
/external/chromium_org/chrome/browser/notifications/ |
message_center_settings_controller.cc | 46 using message_center::Notifier; 83 bool operator() (Notifier* n1, Notifier* n2) { 92 bool SimpleCompareNotifiers(Notifier* n1, Notifier* n2) { 177 std::vector<Notifier*>* notifiers) { 213 notifiers->push_back(new Notifier( 220 if (notifier::ChromeNotifierServiceFactory::UseSyncedNotifications( 222 notifier::ChromeNotifierService* sync_notifier_service = 223 notifier::ChromeNotifierServiceFactory::GetInstance()->GetForProfile [all...] |
message_center_settings_controller.h | 66 std::vector<message_center::Notifier*>* notifiers) OVERRIDE; 67 virtual void SetNotifierEnabled(const message_center::Notifier& notifier, 98 // The views displaying notifier settings. 108 // The list of all configurable notifier groups. This is each profile that is
|
/external/chromium_org/content/browser/devtools/ |
devtools_protocol.h | 24 typedef base::Callback<void(const std::string& message)> Notifier; 133 void SetNotifier(const Notifier& notifier); 154 Notifier notifier_;
|
/external/chromium_org/chrome/browser/notifications/sync_notifier/ |
chrome_notifier_service.h | 26 struct Notifier; 29 namespace notifier { namespace 79 virtual notifier::SyncedNotification* FindNotificationById( 85 std::vector<message_center::Notifier*>* notifiers); 102 void AddForTest(scoped_ptr<notifier::SyncedNotification> notification); 117 void Add(scoped_ptr<notifier::SyncedNotification> notification); 120 void UpdateInMessageCenter(notifier::SyncedNotification* notification); 123 void Display(notifier::SyncedNotification* notification); 177 ScopedVector<notifier::SyncedNotification> notification_data_; 190 } // namespace notifier [all...] |