Searched refs:obj (Results 76 - 100 of 325) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/os/
H A DMessageQueue.java236 && (object == null || p.obj == object)) {
250 && (object == null || n.obj == object)) {
276 && (object == null || p.obj == object)) {
288 && (object == null || n.obj == object)) {
306 && (object == null || p.obj == object)) {
317 if (n.target == h && (object == null || n.obj == object)) {
H A DHandler.java209 * Same as {@link #obtainMessage()}, except that it also sets the what and obj members
213 * @param obj Value to assign to the returned Message.obj field.
216 public final Message obtainMessage(int what, Object obj) argument
218 return Message.obtain(this, what, obj);
237 * Same as {@link #obtainMessage()}, except that it also sets the what, obj, arg1,and arg2 values on the
242 * @param obj Value to assign to the returned Message.obj field.
245 public final Message obtainMessage(int what, int arg1, int arg2, Object obj) argument
247 return Message.obtain(this, what, arg1, arg2, obj);
[all...]
/frameworks/base/core/java/android/webkit/
H A DGeolocationPermissions.java106 Map values = (Map) msg.obj;
112 Map values = (Map) msg.obj;
136 ValueCallback callback = (ValueCallback) msg.obj;
143 Map values = (Map) msg.obj;
153 nativeClear((String) msg.obj);
156 nativeAllow((String) msg.obj);
H A DWebIconDatabase.java82 ((IconResult) msg.obj).dispatch();
97 nativeOpen((String) msg.obj);
109 IconListener l = (IconListener) msg.obj;
119 nativeRetainIconForPageUrl((String) msg.obj);
123 nativeReleaseIconForPageUrl((String) msg.obj);
149 HashMap map = (HashMap) msg.obj;
H A DWebViewCore.java496 message.obj = url;
684 WebViewCore core = (WebViewCore) msg.obj;
705 BrowserFrame.sJavaBridge.addPackageName((String) msg.obj);
713 BrowserFrame.sJavaBridge.removePackageName((String) msg.obj);
721 BrowserFrame.sJavaBridge.updateProxy((ProxyProperties)msg.obj);
1086 + " obj=" + msg.obj);
1149 if (msg.obj == null) {
1152 xPercent = ((Float) msg.obj).floatValue();
1159 GetUrlData param = (GetUrlData) msg.obj;
1763 sendMessage(int what, Object obj) argument
1776 sendMessage(int what, int arg1, Object obj) argument
1781 sendMessage(int what, int arg1, int arg2, Object obj) argument
1785 sendMessageAtFrontOfQueue(int what, Object obj) argument
1790 sendMessageDelayed(int what, Object obj, long delay) argument
[all...]
/frameworks/base/libs/binder/
H A DIPCThreadState.cpp449 BBinder* obj = mPendingStrongDerefs[i]; local
450 obj->decStrong(mProcess.get());
886 void setTheContextObject(sp<BBinder> obj) argument
888 the_context_object = obj;
893 BBinder* obj; local
907 obj = (BBinder*)mIn.readInt32();
908 LOG_ASSERT(refs->refBase() == obj,
910 refs, obj, refs->refBase());
911 obj->incStrong(mProcess.get());
913 LOG_REMOTEREFS("BR_ACQUIRE from driver on %p", obj);
[all...]
/frameworks/base/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp138 JNIEXPORT void JNICALL Java_com_android_gljni_GLJNILib_init(JNIEnv * env, jobject obj, jint width, jint height);
139 JNIEXPORT void JNICALL Java_com_android_gljni_GLJNILib_step(JNIEnv * env, jobject obj);
140 JNIEXPORT void JNICALL Java_com_android_gljni_GLJNILib_changeBackground(JNIEnv * env, jobject obj);
143 JNIEXPORT void JNICALL Java_com_android_gljni_GLJNILib_init(JNIEnv * env, jobject obj, jint width, jint height) argument
149 JNIEXPORT void JNICALL Java_com_android_gljni_GLJNILib_step(JNIEnv * env, jobject obj) argument
180 JNIEXPORT void JNICALL Java_com_android_gljni_GLJNILib_changeBackground(JNIEnv * env, jobject obj) argument
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDataConnection.java52 * hen the operation completes. The <code>msg.obj</code> will contain an AsyncResult
53 * object and <code>AsyncResult.userObj</code> is the original <code>msg.obj</code>. if successful
333 if (msg.obj instanceof ApnContext) {
334 alreadySent = (ApnContext)msg.obj;
338 log(String.format("msg=%s msg.obj=%s", msg.toString(),
339 ((msg.obj instanceof String) ? (String) msg.obj : "<no-reason>")));
650 ProxyProperties proxy = (ProxyProperties) msg.obj;
657 DataCallState newState = (DataCallState) msg.obj;
686 ApnContext apnContext = (ApnContext) msg.obj;
[all...]
H A DIccCard.java181 public void registerForAbsent(Handler h, int what, Object obj) { argument
182 Registrant r = new Registrant (h, what, obj);
198 public void registerForNetworkLocked(Handler h, int what, Object obj) { argument
199 Registrant r = new Registrant (h, what, obj);
215 public void registerForLocked(Handler h, int what, Object obj) { argument
216 Registrant r = new Registrant (h, what, obj);
236 * onComplete.obj will be an AsyncResult
238 * ((AsyncResult)onComplete.obj).exception == null on success
239 * ((AsyncResult)onComplete.obj).exception != null on fail
242 * ((AsyncResult)onComplete.obj)
[all...]
H A DAdnRecordLoader.java69 * Resulting AdnRecord is placed in response.obj.result
70 * or response.obj.exception is set
88 * Resulting ArrayList&lt;adnRecord> is placed in response.obj.result
89 * or response.obj.exception is set
140 ar = (AsyncResult)(msg.obj);
173 ar = (AsyncResult)(msg.obj);
182 ar = (AsyncResult)(msg.obj);
213 ar = (AsyncResult)(msg.obj);
234 ar = (AsyncResult)(msg.obj);
H A DIccRecords.java80 * {@link #EVENT_GET_ICC_RECORD_DONE} and the obj field set to an instance
111 public void registerForRecordsLoaded(Handler h, int what, Object obj) { argument
112 Registrant r = new Registrant(h, what, obj);
150 * onComplete.obj will be an AsyncResult
151 * ((AsyncResult)onComplete.obj).exception == null on success
152 * ((AsyncResult)onComplete.obj).exception != null on fail
205 * onComplete.obj will be an AsyncResult
206 * ((AsyncResult)onComplete.obj).exception == null on success
207 * ((AsyncResult)onComplete.obj).exception != null on fail
261 AsyncResult ar = (AsyncResult) msg.obj;
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSIMRecords.java267 * onComplete.obj will be an AsyncResult
268 * ((AsyncResult)onComplete.obj).exception == null on success
269 * ((AsyncResult)onComplete.obj).exception != null on fail
314 * onComplete.obj will be an AsyncResult
315 * ((AsyncResult)onComplete.obj).exception == null on success
316 * ((AsyncResult)onComplete.obj).exception != null on fail
533 ar = (AsyncResult)msg.obj;
586 ar = (AsyncResult)msg.obj;
632 ar = (AsyncResult)msg.obj;
678 ar = (AsyncResult)msg.obj;
[all...]
/frameworks/base/core/java/android/server/
H A DBluetoothAdapterStateMachine.java182 if ((Boolean) message.obj) {
224 perProcessCallback(false, (IBluetoothStateChangeCallback) message.obj);
353 if ((Boolean) message.obj) {
385 perProcessCallback(false, (IBluetoothStateChangeCallback)message.obj);
390 if ((Boolean) message.obj) {
429 if (!((Boolean) message.obj)) {
504 if ((Boolean) message.obj) {
542 perProcessCallback(true, (IBluetoothStateChangeCallback)message.obj);
545 perProcessCallback(false, (IBluetoothStateChangeCallback)message.obj);
548 if ((Boolean) message.obj) {
761 recoverStateMachine(int what, Object obj) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp197 jbyteArray obj = NULL; local
205 obj = (jbyteArray)env->NewLocalRef(globalBuffer);
208 if (obj != NULL) {
209 jsize bufferLength = env->GetArrayLength(obj);
213 env->DeleteLocalRef(obj);
219 return obj;
224 jbyteArray obj = NULL; local
238 obj = getCallbackBuffer(env, &mRawImageCallbackBuffers, size);
240 obj = getCallbackBuffer(env, &mCallbackBuffers, size);
247 if (obj
330 jobjectArray obj = NULL; local
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java218 public boolean equals(Object obj) { argument
219 if (this == obj) {
222 if (!(obj instanceof NameData)) {
225 NameData nameData = (NameData) obj;
344 public boolean equals(Object obj) { argument
345 if (this == obj) {
348 if (!(obj instanceof PhoneData)) {
351 PhoneData phoneData = (PhoneData) obj;
434 public boolean equals(Object obj) { argument
435 if (this == obj) {
641 equals(Object obj) argument
808 equals(Object obj) argument
911 equals(Object obj) argument
1010 equals(Object obj) argument
1091 equals(Object obj) argument
1143 equals(Object obj) argument
1201 equals(Object obj) argument
1257 equals(Object obj) argument
1313 equals(Object obj) argument
1388 equals(Object obj) argument
1486 equals(Object obj) argument
[all...]
/frameworks/base/core/java/android/text/
H A DHtml.java421 Object[] obj = mSpannableStringBuilder.getSpans(0, mSpannableStringBuilder.length(), ParagraphStyle.class);
422 for (int i = 0; i < obj.length; i++) {
423 int start = mSpannableStringBuilder.getSpanStart(obj[i]);
424 int end = mSpannableStringBuilder.getSpanEnd(obj[i]);
435 mSpannableStringBuilder.removeSpan(obj[i]);
437 mSpannableStringBuilder.setSpan(obj[i], start, end, Spannable.SPAN_PARAGRAPH);
587 Object obj = getLast(text, kind);
588 int where = text.getSpanStart(obj);
590 text.removeSpan(obj);
632 Object obj
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java394 Handler h, int what, Object obj) {
516 public void setOnPostDialCharacter(Handler h, int what, Object obj) { argument
517 mPostDialHandler = new Registrant(h, what, obj);
568 public void registerForCdmaOtaStatusChange(Handler h, int what, Object obj) { argument
569 mCM.registerForCdmaOtaProvision(h, what, obj);
576 public void registerForSubscriptionInfoReady(Handler h, int what, Object obj) { argument
577 mSST.registerForSubscriptionInfoReady(h, what, obj);
584 public void setOnEcbModeExitResponse(Handler h, int what, Object obj) { argument
585 mEcmExitRespRegistrant = new Registrant (h, what, obj);
592 public void registerForCallWaiting(Handler h, int what, Object obj) { argument
393 registerForSuppServiceNotification( Handler h, int what, Object obj) argument
951 registerForEcmTimerReset(Handler h, int what, Object obj) argument
1083 registerForNvLoaded(Handler h, int what, Object obj) argument
1092 registerForEriFileLoaded(Handler h, int what, Object obj) argument
[all...]
/frameworks/base/core/java/android/pim/
H A DContactsAsyncHelper.java182 WorkerArgs args = (WorkerArgs) msg.obj;
212 reply.obj = msg.obj;
283 msg.obj = args;
306 WorkerArgs args = (WorkerArgs) msg.obj;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java208 StatusBarIcon icon = (StatusBarIcon)msg.obj;
230 final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj;
235 final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj;
240 mCallbacks.removeNotification((IBinder)msg.obj);
260 mCallbacks.setImeWindowStatus((IBinder)msg.obj, msg.arg1, msg.arg2);
/frameworks/base/telephony/java/com/android/internal/telephony/cat/
H A DIconLoader.java137 ar = (AsyncResult) msg.obj;
145 ar = (AsyncResult) msg.obj;
157 ar = (AsyncResult) msg.obj;
216 mEndMsg.obj = mCurrentIcon;
224 mEndMsg.obj = mIcons;
/frameworks/base/core/java/android/content/
H A DComponentName.java186 public boolean equals(Object obj) { argument
188 if (obj != null) {
189 ComponentName other = (ComponentName)obj;
/frameworks/base/core/java/android/content/pm/
H A DSignature.java158 public boolean equals(Object obj) { argument
160 if (obj != null) {
161 Signature other = (Signature)obj;
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java149 public boolean equals(Object obj) { argument
150 if (obj instanceof UsbAccessory) {
151 UsbAccessory accessory = (UsbAccessory)obj;
/frameworks/base/core/java/android/net/
H A DNetworkTemplate.java145 public boolean equals(Object obj) { argument
146 if (obj instanceof NetworkTemplate) {
147 final NetworkTemplate other = (NetworkTemplate) obj;
/frameworks/base/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp167 sp<RefBase> obj; local
168 CHECK(msg->findObject("source", &obj));
170 mSource = static_cast<Source *>(obj.get());
178 sp<RefBase> obj; local
179 CHECK(msg->findObject("native-window", &obj));
181 mNativeWindow = static_cast<NativeWindowWrapper *>(obj.get());
189 sp<RefBase> obj; local
190 CHECK(msg->findObject("sink", &obj));
192 mAudioSink = static_cast<MediaPlayerBase::AudioSink *>(obj.get());
796 sp<RefBase> obj; local
[all...]

Completed in 943 milliseconds

1234567891011>>