HomeSort by relevance Sort by last modified time
    Searched defs:Notify (Results 26 - 50 of 58) sorted by null

12 3

  /external/chromium_org/base/
observer_list_threadsafe.h 34 // * Any thread may trigger a notification via Notify().
51 // will notify its regular ObserverList.
109 // If there is not a current MessageLoop, it is impossible to notify on it,
165 // Notify methods.
168 // that at the completion of the Notify call that all Observers have
171 void Notify(Method m) {
173 Notify<Method, Tuple0>(method);
177 void Notify(Method m, const A& a) {
179 Notify<Method, Tuple1<A> >(method);
183 void Notify(Method m, const A& a, const B& b)
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter_browsertest.cc 44 void Notify();
124 Notify();
136 Notify();
148 void RemoveCookieTester::Notify() {
  /external/chromium_org/net/tools/flip_server/
acceptor_thread.h 33 void Notify() {
71 // Notify the Accept thread that it is time to terminate.
72 void Quit() { quitting_.Notify(); }
  /external/chromium_org/ui/base/x/
active_window_watcher_x.cc 45 void ActiveWindowWatcherX::Notify() {
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_file_system_helper_unittest.cc 59 // to BlockUntilNotified(), which will (shockingly!) block until Notify() is
61 // implemented as a class method that that calls Notify() at an appropriate
84 // Blocks on the current MessageLoop until Notify() is called.
91 void Notify() {
101 Notify();
136 Notify();
browsing_data_remover_unittest.cc 141 void Notify() {
155 Notify();
208 await_completion_.Notify();
213 await_completion_.Notify();
371 await_completion_.Notify();
527 await_completion_.Notify();
    [all...]
  /external/chromium_org/chrome/browser/service/
service_process_control.cc 189 // We just established a channel with the service process. Notify it if an
274 void ServiceProcessControl::Launcher::Notify() {
288 BrowserThread::UI, FROM_HERE, base::Bind(&Launcher::Notify, this));
313 BrowserThread::UI, FROM_HERE, base::Bind(&Launcher::Notify, this));
  /external/chromium_org/chrome/browser/ui/
gesture_prefs_observer_factory_aura.cc 91 void Notify();
184 base::Closure notify_callback = base::Bind(&GesturePrefsObserver::Notify,
311 void GesturePrefsObserver::Notify() {
312 // Must do a notify to distribute the changes to all renderers.
315 service->Notify(chrome::NOTIFICATION_BROWSER_FLING_CURVE_PARAMETERS_CHANGED,
  /external/chromium_org/chrome/browser/ui/webui/ntp/
new_tab_page_handler.cc 84 Notify(chrome::NOTIFICATION_PROMO_RESOURCE_STATE_CHANGED);
92 Notify(chrome::NOTIFICATION_PROMO_RESOURCE_STATE_CHANGED);
107 Notify(chrome::NOTIFICATION_PROMO_RESOURCE_STATE_CHANGED);
114 Notify(chrome::NOTIFICATION_PROMO_RESOURCE_STATE_CHANGED);
195 void NewTabPageHandler::Notify(chrome::NotificationType notification_type) {
198 service->Notify(notification_type,
  /external/chromium_org/content/child/npapi/
plugin_stream.cc 96 Notify(err);
267 Notify(reason);
275 void PluginStream::Notify(NPReason reason) {
  /art/runtime/mirror/
object-inl.h 58 inline void Object::Notify(Thread* self) {
59 Monitor::Notify(self, this);
  /external/chromium/chrome/browser/service/
service_process_control.cc 204 // We just established a channel with the service process. Notify it if an
331 void ServiceProcessControl::Launcher::Notify() {
344 NewRunnableMethod(this, &Launcher::Notify));
365 NewRunnableMethod(this, &Launcher::Notify));
  /external/chromium/net/tools/flip_server/
sm_connection.h 92 virtual void Notify() {}
  /external/chromium_org/chrome/browser/ui/webui/ntp/android/
promo_handler.cc 61 void Notify(PromoHandler* ph, chrome::NotificationType notification_type) {
64 service->Notify(notification_type,
201 service->Notify(chrome::NOTIFICATION_PROMO_RESOURCE_STATE_CHANGED,
230 Notify(this, chrome::NOTIFICATION_PROMO_RESOURCE_STATE_CHANGED);
  /external/chromium_org/content/browser/
child_process_launcher.cc 123 this_object->Notify(handle);
128 &ChildProcessLauncher::Context::Notify,
305 &Context::Notify,
314 void Notify(
  /external/chromium_org/net/socket/
unix_domain_socket_posix_unittest.cc 74 void Notify(EventType event) {
108 Notify(EVENT_ACCEPT);
119 Notify(EVENT_READ);
123 Notify(EVENT_CLOSE);
127 Notify(EVENT_LISTEN);
136 void Notify(EventType event) {
137 event_manager_->Notify(event);
149 event_manager->Notify(
  /external/chromium_org/chrome/browser/printing/cloud_print/test/
cloud_print_proxy_process_browsertest.cc 357 void Notify() {
465 observer_.Notify();
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_custom_dictionary.cc 246 Notify(dictionary_change);
258 Notify(dictionary_change);
326 Notify(to_change_locally);
398 Notify(dictionary_change);
543 void SpellcheckCustomDictionary::Notify(
  /external/chromium_org/net/base/
network_change_notifier.cc 394 timer_.Start(FROM_HERE, delay, this, &NetworkChangeCalculator::Notify);
404 timer_.Start(FROM_HERE, delay, this, &NetworkChangeCalculator::Notify);
408 void Notify() {
431 // Value to pass to NotifyObserversOfNetworkChange when Notify is called.
664 g_network_change_notifier->ip_address_observer_list_->Notify(
672 g_network_change_notifier->resolver_state_observer_list_->Notify(
687 g_network_change_notifier->connection_type_observer_list_->Notify(
696 g_network_change_notifier->network_change_observer_list_->Notify(
  /art/runtime/
monitor.cc 529 void Monitor::Notify(Thread* self) {
533 ThrowIllegalMonitorStateExceptionF("object not locked by thread before notify()");
573 thread->Notify();
637 // The lock is owned by another thread. Notify the runtime that we are about to wait.
783 void Monitor::Notify(Thread* self, mirror::Object *obj) {
791 ThrowIllegalMonitorStateExceptionF("object not locked by thread before notify()");
794 // no-op; there are no waiters to notify.
795 // We inflate here in case the Notify is in a tight loop. Without inflation here the waiter
800 LW_MONITOR(thin)->Notify(self);
815 // no-op; there are no waiters to notify
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_thread.cc 825 void SyncerThread::Notify(SyncEngineEvent::EventCause cause) {
863 Notify(SyncEngineEvent::STOP_SYNCING_PERMANENTLY);
    [all...]
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store.cc 62 // CompleteLoadForKeyOnIOThread to the client runner to notify the caller of
160 void Notify(const LoadedCallback& loaded_callback, bool load_success);
471 Notify(loaded_callback, load_success);
516 Notify(loaded_callback, load_success);
522 void SQLitePersistentCookieStore::Backend::Notify(
661 // Otherwise notify on client runner.
    [all...]
  /external/chromium_org/sync/engine/
sync_scheduler_impl.cc 784 void SyncSchedulerImpl::Notify(SyncEngineEvent::EventCause cause) {
866 Notify(SyncEngineEvent::STOP_SYNCING_PERMANENTLY);
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 104 // stable. If you notice any problems on your platform, please notify
    [all...]
  /external/chromium_org/content/common/gpu/media/
video_decode_accelerator_unittest.cc 242 // accumulated (so exactly as many Wait() calls will unblock as Notify() calls
249 // Used to notify a single waiter of a ClientState.
250 void Notify(ClientState state);
263 void ClientStateNotification::Notify(ClientState state) {
807 note_->Notify(new_state);
    [all...]

Completed in 611 milliseconds

12 3