Searched refs:notifier (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/awt/java/awt/event/
H A DInvocationEvent.java46 protected Object notifier; field in class:InvocationEvent
58 Object notifier, boolean catchExceptions) {
59 this(source, INVOCATION_DEFAULT, runnable, notifier, catchExceptions);
63 Object notifier, boolean catchExceptions)
75 this.notifier = notifier;
95 if (notifier != null) {
96 synchronized(notifier) {
100 notifier.notifyAll();
133 ",notifier
57 InvocationEvent(Object source, Runnable runnable, Object notifier, boolean catchExceptions) argument
62 InvocationEvent(Object source, int id, Runnable runnable, Object notifier, boolean catchExceptions) argument
[all...]
/frameworks/base/media/libmedia/
H A DIMediaDeathNotifier.cpp94 sp<IMediaDeathNotifier> notifier = list[iter].promote(); local
95 if (notifier != 0) {
96 notifier->died();
/frameworks/base/awt/java/awt/
H A DEventQueue.java120 final Object notifier = new Object(); // $NON-LOCK-1$
121 InvocationEvent event = new InvocationEvent(toolkit, runnable, notifier, true);
123 synchronized (notifier) {
125 notifier.wait();
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DPhoneBase.java177 * @param notifier An instance of DefaultPhoneNotifier,
180 protected PhoneBase(PhoneNotifier notifier, Context context, CommandsInterface ci) { argument
181 this(notifier, context, ci, false);
188 * @param notifier An instance of DefaultPhoneNotifier,
193 protected PhoneBase(PhoneNotifier notifier, Context context, CommandsInterface ci, argument
195 this.mNotifier = notifier;
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java141 public CDMAPhone(Context context, CommandsInterface ci, PhoneNotifier notifier) { argument
142 this(context,ci,notifier, false);
145 public CDMAPhone(Context context, CommandsInterface ci, PhoneNotifier notifier, argument
147 super(notifier, context, ci, unitTestMode);
206 notifier.notifyMessageWaitingChanged(this);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java131 GSMPhone (Context context, CommandsInterface ci, PhoneNotifier notifier) { argument
132 this(context,ci,notifier, false);
136 GSMPhone (Context context, CommandsInterface ci, PhoneNotifier notifier, boolean unitTestMode) { argument
137 super(notifier, context, ci, unitTestMode);

Completed in 143 milliseconds