HomeSort by relevance Sort by last modified time
    Searched full:notify (Results 126 - 150 of 4347) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/ui/base/x/
root_window_property_watcher_x.cc 49 ActiveWindowWatcherX::Notify();
51 WorkAreaWatcherX::Notify();
  /external/kernel-headers/original/asm-arm/arch/
gpio-switch.h 45 /* notify board-specific code about state changes */
46 void (* notify)(void *data, int state); member in struct:omap_gpio_switch
  /frameworks/av/include/media/stagefright/
MediaWriter.h 57 void notify(int msg, int ext1, int ext2) { function in struct:android::MediaWriter
59 mListener->notify(msg, ext1, ext2);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.h 35 const sp<AMessage> &notify,
42 const sp<AMessage> &notify,
NuPlayerDecoder.cpp 32 const sp<AMessage> &notify,
34 : mNotify(notify),
95 sp<AMessage> notify = mNotify->dup(); local
96 notify->setMessage("codec-request", msg);
97 notify->post();
128 sp<AMessage> notify = mNotify->dup(); local
129 notify->setMessage("codec-request", msg);
130 notify->post();
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.h 33 MediaPuller(const sp<MediaSource> &source, const sp<AMessage> &notify);
36 void stopAsync(const sp<AMessage> &notify);
Converter.cpp 44 const sp<AMessage> &notify,
48 : mNotify(notify),
296 sp<AMessage> notify = mNotify->dup(); local
297 notify->setInt32("what", kWhatError);
298 notify->setInt32("err", err);
299 notify->post();
451 sp<AMessage> notify = mNotify->dup(); local
452 notify->setInt32("what", kWhatShutdownCompleted);
453 notify->post();
512 sp<AMessage> notify = new AMessage(kWhatEncoderActivity, id()) local
563 sp<AMessage> notify = mNotify->dup(); local
611 sp<AMessage> notify = mNotify->dup(); local
732 sp<AMessage> notify = mNotify->dup(); local
793 sp<AMessage> notify = mNotify->dup(); local
    [all...]
  /frameworks/base/core/java/android/webkit/
WebBackForwardListClient.java 27 * Notify the client that <var>item</var> has been added to the
34 * Notify the client that the <var>item</var> at <var>index</var> is now
  /frameworks/base/media/jni/
android_media_MediaDrm.h 35 virtual void notify(DrmPlugin::EventType eventType, int extra,
47 void notify(DrmPlugin::EventType, int extra, const Parcel *obj);
  /bootable/recovery/minadbd/
usb_linux_client.c 36 adb_cond_t notify; member in struct:usb_handle
54 adb_cond_wait(&usb->notify, &usb->lock);
120 adb_cond_init(&h->notify, 0);
148 // notify usb_open_thread that we are disconnected
149 adb_cond_signal(&h->notify);
  /external/chromium_org/content/browser/
notification_service_impl.cc 96 void NotificationServiceImpl::Notify(int type,
105 // Notify observers of all types and all sources
113 // Notify observers of all types and the given source
120 // Notify observers of the given type and all sources
128 // Notify observers of the given type and the given source
  /external/chromium/base/
observer_list_threadsafe.h 32 // * Any thread may trigger a notification via Notify().
49 // will notify its regular ObserverList.
136 // Notify methods.
139 // that at the completion of the Notify call that all Observers have
142 void Notify(Method m) {
144 Notify<Method, Tuple0>(method);
148 void Notify(Method m, const A &a) {
150 Notify<Method, Tuple1<A> >(method);
153 // TODO(mbelshe): Add more wrappers for Notify() with more arguments.
167 void Notify(const UnboundMethod<ObserverType, Method, Params>& method)
    [all...]
  /frameworks/base/core/java/android/app/
NotificationManager.java 29 * Class to notify the user of events that happen. This is how you tell
43 * Each of the notify methods takes an int id parameter and optionally a
48 * of the notify methods with a (tag, id) pair that is currently active and
107 public void notify(int id, Notification notification) method in class:NotificationManager
109 notify(null, id, notification); method
123 public void notify(String tag, int id, Notification notification) method in class:NotificationManager
134 if (localLOGV) Log.v(TAG, pkg + ": notify(" + id + ", " + notification + ")");
139 Log.w(TAG, "notify: id corrupted: sent " + id + ", got back " + idOut[0]);
159 if (localLOGV) Log.v(TAG, pkg + ": notify(" + id + ", " + notification + ")");
164 Log.w(TAG, "notify: id corrupted: sent " + id + ", got back " + idOut[0])
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 37 const sp<AMessage> &notify)
39 mNotify(notify),
773 sp<AMessage> notify = mNotify->dup(); local
774 notify->setInt32("what", kWhatInformSender);
775 notify->setInt64("avgLatencyUs", avgLatencyUs);
776 notify->setInt64("maxLatencyUs", maxLatencyUs);
777 notify->post();
784 sp<AMessage> notify = mNotify->dup(); local
785 notify->setInt32("what", kWhatInitDone);
786 notify->setInt32("err", err)
791 sp<AMessage> notify = mNotify->dup(); local
798 sp<AMessage> notify = mNotify->dup(); local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ArrayAdapterTest.java 93 // clear notify changed
96 // if empty before, clear also notify changed
102 // disable auto notify
109 // manually notify
112 // no data changed, but force notify
115 // once called notify, auto notify enabled
202 * insert the item to the specific position, notify data changed
308 * Removes the specified object from the array. notify data changed
319 // remove the item not exist also notify chang
    [all...]
  /external/chromium_org/base/
observer_list_unittest.cc 101 AddRemoveThread(ObserverListThreadSafe<Foo>* list, bool notify)
108 do_notifies_(notify),
144 list_->Notify(&Foo::Observe, 10);
224 observer_list->Notify(&Foo::Observe, 10);
231 observer_list->Notify(&Foo::Observe, 10);
254 observer_list->Notify(&Foo::Observe, 10);
265 observer_list->Notify(&Foo::Observe, 10);
287 observer_list->Notify(&Foo::Observe, 10);
300 // Notify again.
301 observer_list->Notify(&Foo::Observe, 20)
    [all...]
  /frameworks/base/docs/html/training/notify-user/
build-notification.jd 20 <li><a href="#notify">Issue the Notification</a></li>
133 <h2 id="notify">Issue the Notification</h2>
139 <li>Use the {@link android.app.NotificationManager#notify notify()} method to issue the
140 notification. When you call {@link android.app.NotificationManager#notify notify()}, specify a notification ID.
160 mNotifyMgr.notify(mNotificationId, mBuilder.build());
  /art/runtime/native/
java_lang_Object.cc 37 o->Notify(soa.Self());
60 NATIVE_METHOD(Object, notify, "()V", notify),
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/ui/
RecyclingImageView.java 63 // Notify new Drawable that it is being displayed
66 // Notify old Drawable so it is no longer being displayed
78 // The drawable is a CountingBitmapDrawable, so notify it
  /external/chromium/chrome/browser/extensions/
extension_test_api.cc 29 NotificationService::current()->Notify(
41 NotificationService::current()->Notify(
80 NotificationService::current()->Notify(
  /external/chromium/chrome/browser/prefs/
scoped_user_pref_update.h 36 // Calls Notify().
45 virtual void Notify();
51 // Cache of value from user pref store (set between Get() and Notify() calls).
  /external/chromium/chrome/browser/ui/gtk/
hover_controller_gtk.cc 19 signals_.Connect(button_, "enter-notify-event",
21 signals_.Connect(button_, "leave-notify-event",
115 // GTK+ does not emit leave-notify-event signals when a widget
  /external/chromium_org/base/prefs/
scoped_user_pref_update.h 38 // Calls Notify().
47 void Notify();
53 // Cache of value from user pref store (set between Get() and Notify() calls).
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_view_mac.h 50 // Method for the ExtensionHost to notify us that the extension page is
57 // Method for the ExtensionHost to notify us about the correct size for
61 // Method for the ExtensionHost to notify us when the RenderViewHost has a
  /external/chromium_org/chrome/browser/ui/gtk/
hover_controller_gtk.cc 20 signals_.Connect(button_, "enter-notify-event",
22 signals_.Connect(button_, "leave-notify-event",
116 // GTK+ does not emit leave-notify-event signals when a widget

Completed in 2700 milliseconds

1 2 3 4 56 7 8 91011>>