HomeSort by relevance Sort by last modified time
    Searched refs:notifier (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /external/qemu/
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...]
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...]
  /external/chromium/chrome/browser/prefs/
pref_notifier_impl_unittest.cc 75 MockPrefNotifier notifier(&pref_service_);
76 EXPECT_CALL(notifier, FireObservers(kChangedPref)).Times(1);
77 notifier.OnPreferenceChanged(kChangedPref);
81 MockPrefNotifier notifier(&pref_service_);
91 notifier.OnInitializationCompleted();
98 MockPrefNotifier notifier(&pref_service_);
99 notifier.AddPrefObserver(pref_name, &obs1_);
100 ASSERT_EQ(1u, notifier.CountObserver(pref_name, &obs1_));
101 ASSERT_EQ(0u, notifier.CountObserver(pref_name2, &obs1_));
102 ASSERT_EQ(0u, notifier.CountObserver(pref_name, &obs2_))
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
kdebug.h 21 #include <linux/notifier.h>
  /development/ndk/platforms/android-9/arch-mips/include/asm/
kdebug.h 21 #include <linux/notifier.h>
  /external/kernel-headers/original/asm-mips/
kdebug.h 4 #include <linux/notifier.h>
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
kdebug.h 21 #include <linux/notifier.h>
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
kdebug.h 21 #include <linux/notifier.h>
  /external/mockito/src/org/mockito/internal/runners/util/
FrameworkUsageValidator.java 15 private final RunNotifier notifier; field in class:FrameworkUsageValidator
17 public FrameworkUsageValidator(RunNotifier notifier) {
18 this.notifier = notifier;
27 notifier.fireTestFailure(new Failure(description, t));
  /external/mockito/src/org/mockito/internal/handler/
MockHandlerFactory.java 18 InternalMockHandler notifier = new InvocationNotifierHandler(nullResultGuardian, settings); local
20 return notifier;
  /external/chromium/chrome/browser/sync/notifier/
p2p_notifier.h 5 // A notifier that uses p2p notifications based on XMPP push
16 #include "chrome/browser/sync/notifier/sync_notifier.h"
18 #include "jingle/notifier/listener/talk_mediator.h"
25 namespace notifier { namespace
33 public notifier::TalkMediator::Delegate {
35 explicit P2PNotifier(const notifier::NotifierOptions& notifier_options);
51 const notifier::Notification& notification);
63 scoped_ptr<notifier::TalkMediator> talk_mediator_;
invalidation_notifier.h 23 #include "chrome/browser/sync/notifier/chrome_invalidation_client.h"
24 #include "chrome/browser/sync/notifier/state_writer.h"
25 #include "chrome/browser/sync/notifier/sync_notifier.h"
27 #include "jingle/notifier/base/notifier_options.h"
28 #include "jingle/notifier/communicator/login.h"
35 public notifier::LoginDelegate,
40 const notifier::NotifierOptions& notifier_options,
55 // notifier::LoginDelegate implementation.
82 const notifier::NotifierOptions notifier_options_;
94 scoped_ptr<notifier::Login> login_
    [all...]
invalidation_notifier.cc 5 #include "chrome/browser/sync/notifier/invalidation_notifier.h"
9 #include "chrome/browser/sync/notifier/sync_notifier_observer.h"
12 #include "jingle/notifier/base/const_communicator.h"
13 #include "jingle/notifier/base/notifier_options_util.h"
14 #include "jingle/notifier/communicator/connection_options.h"
23 const notifier::NotifierOptions& notifier_options,
28 DCHECK_EQ(notifier::NOTIFICATION_SERVER,
60 notifier::MakeXmppClientSettings(notifier_options_,
65 notifier::ConnectionOptions options;
68 new notifier::Login(this
    [all...]
  /external/junit/src/org/junit/runner/
Runner.java 29 * @param notifier will be notified of events while tests are being run--tests being
32 public abstract void run(RunNotifier notifier);
  /external/webkit/Source/WebCore/page/
Geolocation.cpp 150 // This will cause this notifier to be deleted.
173 RefPtr<GeoNotifier> notifier = prpNotifier; local
175 m_idToNotifierMap.set(id, notifier.get());
176 m_notifierToIdMap.set(notifier.release(), id);
189 void Geolocation::Watchers::remove(GeoNotifier* notifier)
191 NotifierToIdMap::iterator iter = m_notifierToIdMap.find(notifier);
198 bool Geolocation::Watchers::contains(GeoNotifier* notifier) const
200 return m_notifierToIdMap.contains(notifier);
288 RefPtr<GeoNotifier> notifier = startRequest(successCallback, errorCallback, options);
289 ASSERT(notifier);
312 RefPtr<GeoNotifier> notifier = GeoNotifier::create(this, successCallback, errorCallback, options); local
375 GeoNotifier* notifier = iter->get(); local
480 RefPtr<GeoNotifier> notifier = *it; local
491 RefPtr<GeoNotifier> notifier = *it; local
502 RefPtr<GeoNotifier> notifier = *it; local
550 GeoNotifier* notifier = it->get(); local
564 GeoNotifier* notifier = it->get(); local
736 GeoNotifier* notifier = iter->get(); local
    [all...]
  /external/junit/src/org/junit/internal/builders/
IgnoredClassRunner.java 18 public void run(RunNotifier notifier) {
19 notifier.fireTestIgnored(getDescription());
  /frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
NonExecutingJUnit3ClassRunner.java 35 public void run(RunNotifier notifier) {
37 result.addListener(createAdaptingListener(notifier));
  /external/junit/src/org/junit/internal/runners/
JUnit4ClassRunner.java 51 public void run(final RunNotifier notifier) {
52 new ClassRoadie(notifier, fTestClass, getDescription(), new Runnable() {
54 runMethods(notifier);
59 protected void runMethods(final RunNotifier notifier) {
61 invokeTestMethod(method, notifier);
85 protected void invokeTestMethod(Method method, RunNotifier notifier) {
91 testAborted(notifier, description, e.getCause());
94 testAborted(notifier, description, e);
98 new MethodRoadie(test, testMethod, notifier, description).run();
101 private void testAborted(RunNotifier notifier, Description description
    [all...]
ErrorReportingRunner.java 32 public void run(RunNotifier notifier) {
34 runCause(each, notifier);
54 private void runCause(Throwable child, RunNotifier notifier) {
56 notifier.fireTestStarted(description);
57 notifier.fireTestFailure(new Failure(description, child));
58 notifier.fireTestFinished(description);
  /external/webkit/Source/WebCore/platform/network/qt/
NetworkStateNotifierQt.cpp 30 NetworkStateNotifierPrivate::NetworkStateNotifierPrivate(NetworkStateNotifier* notifier)
34 , m_notifier(notifier)
36 Q_ASSERT(notifier);
NetworkStateNotifierPrivate.h 36 NetworkStateNotifierPrivate(NetworkStateNotifier* notifier);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/notifier/
NotifierService.java 16 package com.example.android.samplesync.notifier;
  /external/mockito/src/org/mockito/internal/runners/
JUnit44RunnerImpl.java 33 public void run(RunNotifier notifier) {
35 notifier.addListener(new FrameworkUsageValidator(notifier));
37 runner.run(notifier);
JUnit45AndHigherRunnerImpl.java 33 public void run(final RunNotifier notifier) {
35 notifier.addListener(new FrameworkUsageValidator(notifier));
37 runner.run(notifier);
RunnerImpl.java 17 void run(RunNotifier notifier);

Completed in 705 milliseconds

1 2 3 4 5 6