HomeSort by relevance Sort by last modified time
    Searched refs:notifier (Results 26 - 50 of 325) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/qemu/include/qemu/
notify.h 2 * Notifier lists
19 typedef struct Notifier Notifier;
21 struct Notifier
23 void (*notify)(Notifier *notifier, void *data);
24 QLIST_ENTRY(Notifier) node;
29 QLIST_HEAD(, Notifier) notifiers;
37 void notifier_list_add(NotifierList *list, Notifier *notifier);
    [all...]
  /external/chromium_org/components/invalidation/
invalidation_service_util.h 8 #include "jingle/notifier/base/notifier_options.h"
16 // Parses the given command line for notifier options.
17 notifier::NotifierOptions ParseNotifierOptions(
push_client_channel.h 15 #include "jingle/notifier/listener/push_client_observer.h"
17 namespace notifier { namespace
19 } // namespace notifier
27 public NON_EXPORTED_BASE(notifier::PushClientObserver) {
31 explicit PushClientChannel(scoped_ptr<notifier::PushClient> push_client);
48 // notifier::PushClient::Observer implementation.
51 notifier::NotificationsDisabledReason reason) OVERRIDE;
53 const notifier::Notification& notification) OVERRIDE;
79 scoped_ptr<notifier::PushClient> push_client_;
p2p_invalidator.h 24 #include "jingle/notifier/base/notifier_options.h"
25 #include "jingle/notifier/listener/push_client.h"
26 #include "jingle/notifier/listener/push_client_observer.h"
28 namespace notifier { namespace
30 } // namespace notifier
90 public NON_EXPORTED_BASE(notifier::PushClientObserver) {
97 P2PInvalidator(scoped_ptr<notifier::PushClient> push_client,
118 notifier::NotificationsDisabledReason reason) OVERRIDE;
120 const notifier::Notification& notification) OVERRIDE;
135 scoped_ptr<notifier::PushClient> push_client_
    [all...]
invalidation_service_util.cc 15 notifier::NotifierOptions ParseNotifierOptions(
17 notifier::NotifierOptions notifier_options;
  /external/chromium_org/jingle/notifier/base/
notifier_options.cc 5 #include "jingle/notifier/base/notifier_options.h"
7 #include "jingle/notifier/base/gaia_constants.h"
9 namespace notifier { namespace
20 } // namespace notifier
notification_method.h 10 namespace notifier { namespace
29 } // namespace notifier
fake_base_task.cc 6 #include "jingle/notifier/base/fake_base_task.h"
7 #include "jingle/notifier/base/weak_xmpp_client.h"
11 namespace notifier { namespace
30 } // namespace notifier
36 class FakeWeakXmppClient : public notifier::WeakXmppClient {
39 : notifier::WeakXmppClient(parent),
54 namespace notifier { namespace
79 } // namespace notifier
fake_base_task.h 19 namespace notifier { namespace
35 } // namespace notifier
notification_method.cc 5 #include "jingle/notifier/base/notification_method.h"
9 namespace notifier { namespace
42 } // namespace notifier
  /external/chromium_org/chrome/browser/web_resource/
eula_accepted_notifier_unittest.cc 36 EulaAcceptedNotifier* notifier() { function in class:EulaAcceptedNotifierTest
54 EXPECT_TRUE(notifier()->IsEulaAccepted());
57 EXPECT_TRUE(notifier()->IsEulaAccepted());
62 EXPECT_FALSE(notifier()->IsEulaAccepted());
65 EXPECT_FALSE(notifier()->IsEulaAccepted());
70 EXPECT_FALSE(notifier()->IsEulaAccepted());
72 EXPECT_TRUE(notifier()->IsEulaAccepted());
75 EXPECT_TRUE(notifier()->IsEulaAccepted());
  /external/mockito/src/org/mockito/internal/handler/
MockHandlerFactory.java 18 InternalMockHandler notifier = new InvocationNotifierHandler(nullResultGuardian, settings); local
20 return notifier;
  /hardware/intel/img/libdrm/libdrm/nouveau/
nouveau_notifier.c 29 #define NOTIFIER(__v) \
30 struct nouveau_notifier_priv *nvnotify = nouveau_notifier(notifier); \
35 int count, struct nouveau_notifier **notifier)
40 if (!chan || !notifier || *notifier)
62 *notifier = &nvnotify->base;
67 nouveau_notifier_free(struct nouveau_notifier **notifier)
75 if (!notifier || !*notifier)
77 nvnotify = nouveau_notifier(*notifier);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationWatchers.cpp 18 bool GeolocationWatchers::add(int id, GeoNotifier* notifier)
21 if (!m_idToNotifierMap.add(id, notifier).isNewEntry)
23 m_notifierToIdMap.set(notifier, id);
46 void GeolocationWatchers::remove(GeoNotifier* notifier)
48 NotifierToIdMap::iterator iter = m_notifierToIdMap.find(notifier);
55 bool GeolocationWatchers::contains(GeoNotifier* notifier) const
57 return m_notifierToIdMap.contains(notifier);
Geolocation.cpp 145 GeoNotifier* notifier = GeoNotifier::create(this, successCallback, errorCallback, PositionOptions::create(options));
146 startRequest(notifier);
148 m_oneShots.add(notifier);
156 GeoNotifier* notifier = GeoNotifier::create(this, successCallback, errorCallback, PositionOptions::create(options));
157 startRequest(notifier);
163 } while (!m_watchers.add(watchID, notifier));
167 void Geolocation::startRequest(GeoNotifier *notifier)
172 notifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedErrorMessage));
173 else if (haveSuitableCachedPosition(notifier->options()))
174 notifier->setUseCachedPosition()
225 GeoNotifier* notifier = iter->get(); local
372 GeoNotifier* notifier = it->get(); local
386 GeoNotifier* notifier = it->get(); local
510 GeoNotifier* notifier = iter->get(); local
    [all...]
  /external/chromium_org/cc/base/
unique_notifier_unittest.cc 34 UniqueNotifier notifier(
41 notifier.Schedule();
48 notifier.Schedule();
53 notifier.Schedule();
56 // Notifier went out of scope, so we don't expect to get a notification.
  /external/chromium_org/jingle/notifier/listener/
push_client_observer.h 8 #include "jingle/notifier/listener/notification_defines.h"
10 namespace notifier { namespace
48 } // namespace notifier
  /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/junit/src/org/junit/internal/builders/
IgnoredClassRunner.java 18 public void run(RunNotifier notifier) {
19 notifier.fireTestIgnored(getDescription());
  /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/chromium_org/cloud_print/gcp20/prototype/
cloud_print_xmpp_listener.h 15 #include "jingle/notifier/listener/push_client_observer.h"
29 namespace notifier { namespace
33 } // namespace notifier
37 public notifier::PushClientObserver {
77 // notifier::PushClientObserver methods:
80 notifier::NotificationsDisabledReason reason) OVERRIDE;
82 const notifier::Notification& notification) OVERRIDE;
102 scoped_ptr<notifier::PushClient> push_client_;
  /external/chromium_org/net/quic/
quic_ack_notifier_manager.cc 89 if (it->type == STREAM_FRAME && it->stream_frame->notifier != NULL) {
90 QuicAckNotifier* notifier = it->stream_frame->notifier; local
94 notifier->AddSequenceNumber(serialized_packet.sequence_number,
99 ack_notifier_map_[serialized_packet.sequence_number].insert(notifier);
102 ack_notifiers_.insert(notifier);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/notifier/
NotifierService.java 16 package com.example.android.samplesync.notifier;
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service_factory.h 16 namespace notifier { namespace
44 } // namespace notifier

Completed in 1838 milliseconds

12 3 4 5 6 7 8 91011>>