Searched defs:notifier (Results 1 - 25 of 30) sorted by relevance

12

/external/qemu/
H A Dnotify.c22 void notifier_list_add(NotifierList *list, Notifier *notifier) argument
24 QTAILQ_INSERT_HEAD(&list->notifiers, notifier, node);
27 void notifier_list_remove(NotifierList *list, Notifier *notifier) argument
29 QTAILQ_REMOVE(&list->notifiers, notifier, node);
34 Notifier *notifier, *next; local
36 QTAILQ_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
37 notifier->notify(notifier);
/external/junit/src/org/junit/internal/builders/
H A DIgnoredClassRunner.java18 public void run(RunNotifier notifier) { argument
19 notifier.fireTestIgnored(getDescription());
/external/junit/src/org/junit/runner/
H A DRunner.java29 * @param notifier will be notified of events while tests are being run--tests being
32 public abstract void run(RunNotifier notifier); argument
/external/chromium/chrome/browser/chromeos/
H A Dnetwork_state_notifier_browsertest.cc31 // Initialize network state notifier.
72 NetworkStateNotifier* notifier = NetworkStateNotifier::GetInstance(); local
73 notifier->OnNetworkManagerChanged(mock_network_library_);
90 NetworkStateNotifier* notifier = NetworkStateNotifier::GetInstance(); local
91 notifier->OnNetworkManagerChanged(mock_network_library_);
108 NetworkStateNotifier* notifier = NetworkStateNotifier::GetInstance(); local
109 notifier->OnNetworkManagerChanged(mock_network_library_);
/external/chromium/chrome/browser/sync/notifier/
H A Dp2p_notifier.h5 // 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_;
/external/junit/src/org/junit/internal/runners/
H A DErrorReportingRunner.java32 public void run(RunNotifier notifier) { argument
34 runCause(each, notifier);
54 private void runCause(Throwable child, RunNotifier notifier) { argument
56 notifier.fireTestStarted(description);
57 notifier.fireTestFailure(new Failure(description, child));
58 notifier.fireTestFinished(description);
H A DClassRoadie.java25 public ClassRoadie(RunNotifier notifier, TestClass testClass, argument
27 fNotifier= notifier;
H A DMethodRoadie.java31 public MethodRoadie(Object test, TestMethod method, RunNotifier notifier, Description description) { argument
33 fNotifier= notifier;
H A DJUnit38ClassRunner.java26 private OldTestClassAdaptingListener(RunNotifier notifier) { argument
27 fNotifier= notifier;
80 public void run(RunNotifier notifier) { argument
82 result.addListener(createAdaptingListener(notifier));
86 public TestListener createAdaptingListener(final RunNotifier notifier) { argument
87 return new OldTestClassAdaptingListener(notifier);
H A DJUnit4ClassRunner.java51 public void run(final RunNotifier notifier) { argument
52 new ClassRoadie(notifier, fTestClass, getDescription(), new Runnable() {
54 runMethods(notifier);
59 protected void runMethods(final RunNotifier notifier) { argument
61 invokeTestMethod(method, notifier);
85 protected void invokeTestMethod(Method method, RunNotifier notifier) { argument
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, Descriptio argument
[all...]
/external/webkit/Source/WebCore/platform/network/mac/
H A DNetworkStateNotifierMac.cpp81 NetworkStateNotifier* notifier = static_cast<NetworkStateNotifier*>(info); local
85 notifier->m_networkStateChangeTimer.startOneShot(StateChangeTimerInterval);
/external/webkit/Source/WebCore/platform/network/qt/
H A DNetworkStateNotifierQt.cpp30 NetworkStateNotifierPrivate::NetworkStateNotifierPrivate(NetworkStateNotifier* notifier) argument
34 , m_notifier(notifier)
36 Q_ASSERT(notifier);
/external/junit/src/org/junit/internal/runners/model/
H A DEachTestNotifier.java17 public EachTestNotifier(RunNotifier notifier, Description description) { argument
18 fNotifier= notifier;
/external/junit/src/org/junit/runners/
H A DSuite.java127 protected void runChild(Runner runner, final RunNotifier notifier) { argument
128 runner.run(notifier);
H A DParameterized.java118 protected Statement classBlock(RunNotifier notifier) { argument
119 return childrenInvoker(notifier);
H A DBlockJUnit4ClassRunner.java63 protected void runChild(final FrameworkMethod method, RunNotifier notifier) { argument
66 notifier.fireTestIgnored(description);
68 runLeaf(methodBlock(method), description, notifier);
H A DParentRunner.java96 * reported through {@code notifier}
98 protected abstract void runChild(T child, RunNotifier notifier); argument
152 * @param notifier
155 protected Statement classBlock(final RunNotifier notifier) { argument
156 Statement statement= childrenInvoker(notifier);
218 protected Statement childrenInvoker(final RunNotifier notifier) { argument
222 runChildren(notifier);
227 private void runChildren(final RunNotifier notifier) { argument
231 ParentRunner.this.runChild(each, notifier);
259 RunNotifier notifier) {
258 runLeaf(Statement statement, Description description, RunNotifier notifier) argument
295 run(final RunNotifier notifier) argument
[all...]
/external/chromium/chrome/browser/policy/
H A Dcloud_policy_cache_base.h42 void set_policy_notifier(PolicyNotifier* notifier) { argument
43 notifier_ = notifier;
H A Dcloud_policy_subsystem.h109 PolicyNotifier* notifier() { function in class:policy::CloudPolicySubsystem
H A Ddevice_token_fetcher.cc33 PolicyNotifier* notifier)
37 notifier,
46 PolicyNotifier* notifier,
53 notifier,
159 PolicyNotifier* notifier,
165 notifier_ = notifier;
30 DeviceTokenFetcher( DeviceManagementService* service, CloudPolicyCacheBase* cache, PolicyNotifier* notifier) argument
43 DeviceTokenFetcher( DeviceManagementService* service, CloudPolicyCacheBase* cache, PolicyNotifier* notifier, int64 token_fetch_error_delay_ms, int64 token_fetch_error_max_delay_ms, int64 unmanaged_device_refresh_rate_ms) argument
157 Initialize(DeviceManagementService* service, CloudPolicyCacheBase* cache, PolicyNotifier* notifier, int64 token_fetch_error_delay_ms, int64 token_fetch_error_max_delay_ms, int64 unmanaged_device_refresh_rate_ms) argument
H A Dcloud_policy_controller.cc68 PolicyNotifier* notifier)
74 notifier,
179 PolicyNotifier* notifier,
189 notifier,
201 PolicyNotifier* notifier,
212 notifier_ = notifier;
63 CloudPolicyController( DeviceManagementService* service, CloudPolicyCacheBase* cache, DeviceTokenFetcher* token_fetcher, CloudPolicyIdentityStrategy* identity_strategy, PolicyNotifier* notifier) argument
174 CloudPolicyController( DeviceManagementService* service, CloudPolicyCacheBase* cache, DeviceTokenFetcher* token_fetcher, CloudPolicyIdentityStrategy* identity_strategy, PolicyNotifier* notifier, int64 policy_refresh_rate_ms, int policy_refresh_deviation_factor_percent, int64 policy_refresh_deviation_max_ms, int64 policy_refresh_error_delay_ms) argument
196 Initialize( DeviceManagementService* service, CloudPolicyCacheBase* cache, DeviceTokenFetcher* token_fetcher, CloudPolicyIdentityStrategy* identity_strategy, PolicyNotifier* notifier, int64 policy_refresh_rate_ms, int policy_refresh_deviation_factor_percent, int64 policy_refresh_deviation_max_ms, int64 policy_refresh_error_delay_ms) argument
/external/webkit/Source/WebKit2/Platform/qt/
H A DWorkQueueQt.cpp84 QSocketNotifier* notifier = new QSocketNotifier(socketDescriptor, type, 0); local
85 notifier->setEnabled(false);
86 notifier->moveToThread(m_workThread);
87 WorkQueue::WorkItemQt* itemQt = new WorkQueue::WorkItemQt(this, notifier, SIGNAL(activated(int)), workItem.leakPtr());
89 notifier->setEnabled(true);
90 return notifier;
/external/chromium/chrome/browser/extensions/
H A Dextension_menu_manager_unittest.cc311 NotificationService* notifier = NotificationService::current(); local
312 ASSERT_TRUE(notifier != NULL);
333 notifier->Notify(NotificationType::EXTENSION_UNLOADED,
/external/webkit/Source/WebCore/loader/
H A DFrameLoader.h103 ResourceLoadNotifier* notifier() const { return &m_notifer; } function in class:WebCore::FrameLoader
/external/webkit/Source/WebCore/page/
H A DGeolocation.cpp150 // 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) argument
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
337 fatalErrorOccurred(Geolocation::GeoNotifier* notifier) argument
347 requestUsesCachedPosition(GeoNotifier* notifier) argument
375 GeoNotifier* notifier = iter->get(); local
396 requestTimedOut(GeoNotifier* notifier) argument
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
701 startUpdating(GeoNotifier* notifier) argument
736 GeoNotifier* notifier = iter->get(); local
[all...]

Completed in 280 milliseconds

12