Searched refs:obj (Results 201 - 225 of 325) sorted by relevance

1234567891011>>

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java134 public boolean equals(Object obj) { argument
135 if (this == obj) return true;
136 if (obj == null) return false;
137 if (getClass() != obj.getClass()) return false;
139 IntArray other = (IntArray) obj;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateMachine.java708 WifiConfiguration ret = (WifiConfiguration) resultMsg.obj;
1591 StateChangeResult stateChangeResult = (StateChangeResult) message.obj;
2305 config = (WifiConfiguration) message.obj;
2329 WifiNative.addToBlacklistCommand((String)message.obj);
2358 config = (WifiConfiguration) message.obj;
2560 String country = (String) message.obj;
2706 StateChangeResult stateChangeResult = (StateChangeResult) message.obj;
2821 WifiConfiguration config = (WifiConfiguration) message.obj;
2859 mLastBssid = (String) message.obj;
2942 handleSuccessfulIpConfiguration((DhcpInfoInternal) message.obj);
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java1148 public boolean equals(Object obj) { argument
1149 if (this == obj) {
1152 if (obj == null) {
1155 if (getClass() != obj.getClass()) {
1158 AccessibilityNodeInfoCompat other = (AccessibilityNodeInfoCompat) obj;
H A DAccessibilityRecordCompat.java939 public boolean equals(Object obj) { argument
940 if (this == obj) {
943 if (obj == null) {
946 if (getClass() != obj.getClass()) {
949 AccessibilityRecordCompat other = (AccessibilityRecordCompat) obj;
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaServiceStateTracker.java233 * @param obj placed in Message.obj
235 public void registerForSubscriptionInfoReady(Handler h, int what, Object obj) { argument
236 Registrant r = new Registrant(h, what, obj);
315 ar = (AsyncResult) msg.obj;
322 ar = (AsyncResult) msg.obj;
371 ar = (AsyncResult) msg.obj;
376 ar = (AsyncResult) msg.obj;
409 ar = (AsyncResult) msg.obj;
420 ar = (AsyncResult) msg.obj;
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmServiceStateTracker.java316 ar = (AsyncResult) msg.obj;
323 ar = (AsyncResult) msg.obj;
354 ar = (AsyncResult) msg.obj;
366 ar = (AsyncResult) msg.obj;
378 ar = (AsyncResult) msg.obj;
392 ar = (AsyncResult) msg.obj;
400 ar = (AsyncResult) msg.obj;
407 ar = (AsyncResult) msg.obj;
416 ar = (AsyncResult) msg.obj;
450 ar = (AsyncResult) msg.obj;
[all...]
H A DGsmDataConnection.java86 // msg.obj will be returned in AsyncResult.userObj;
88 msg.obj = cp;
/frameworks/base/media/jni/
H A Dandroid_media_MediaPlayer.cpp69 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
102 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
105 if (obj && obj->dataSize() > 0) {
106 jbyteArray jArray = env->NewByteArray(obj->dataSize());
109 memcpy(nArray, obj->data(), obj->dataSize());
/frameworks/base/services/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp93 virtual void put(sp<IBinder> obj) = 0;
111 virtual void put(sp<IBinder> obj) { argument
113 data.writeStrongBinder(obj);
152 virtual void put(sp<IBinder> obj) { argument
153 mObj = obj;
394 void putTempObject(sp<IBinder> obj) { argument
396 getHolder()->put(obj);
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java494 private static final native int nativeGetStringBlock(int obj); argument
496 private static final native int nativeCreateParseState(int obj); argument
515 private static final native void nativeDestroy(int obj); argument
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp100 nAssignName(JNIEnv *_env, jobject _this, RsContext con, jint obj, jbyteArray str) argument
102 LOG_API("nAssignName, con(%p), obj(%p)", con, (void *)obj);
105 rsAssignName(con, (void *)obj, (const char *)cptr, len);
110 nGetName(JNIEnv *_env, jobject _this, RsContext con, jint obj) argument
112 LOG_API("nGetName, con(%p), obj(%p)", con, (void *)obj);
114 rsaGetName(con, (void *)obj, &name);
122 nObjDestroy(JNIEnv *_env, jobject _this, RsContext con, jint obj) argument
124 LOG_API("nObjDestroy, con(%p) obj(
902 nScriptInvoke(JNIEnv *_env, jobject _this, RsContext con, jint obj, jint slot) argument
[all...]
/frameworks/base/media/java/android/media/
H A DRemoteControlClient.java716 onNewInternalClientGen((Integer)msg.obj, msg.arg1, msg.arg2);
722 onPlugDisplay((IRemoteControlDisplay)msg.obj);
725 onUnplugDisplay((IRemoteControlDisplay)msg.obj);
/frameworks/base/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.cpp414 sp<RefBase> obj; local
415 CHECK(msg->findObject("buffer", &obj));
416 sp<ABuffer> buffer = static_cast<ABuffer *>(obj.get());
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java471 private String toString(Object obj) { argument
472 if (obj == null) {
475 return obj.toString();
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DEventSenderImpl.java170 bundle = (Bundle)msg.obj;
236 bundle = (Bundle)msg.obj;
312 bundle = (Bundle)msg.obj;
H A DTestsListActivity.java56 mTestsList = (ArrayList<String>)msg.obj;
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java55 static public IContentProvider asInterface(IBinder obj) argument
57 if (obj == null) {
61 (IContentProvider)obj.queryLocalInterface(descriptor);
66 return new ContentProviderProxy(obj);
/frameworks/base/core/java/android/webkit/
H A DSslErrorHandlerImpl.java62 LoadListener loader = (LoadListener) msg.obj;
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteDatabase.cpp418 jobject obj = env->NewStringUTF(arg); local
419 if (!obj)
421 env->SetObjectArrayElement(strArray, i, obj);
422 env->DeleteLocalRef(obj);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerTestActivity.java195 //AsyncChannel in msg.obj
330 for (Object obj: tethered) {
331 String str = (String)obj;
340 for (Object obj: errored) {
341 String str = (String)obj;
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java271 /** Returns true iff obj is a Matrix and its values equal our values.
273 public boolean equals(Object obj) { argument
274 return obj != null &&
275 obj instanceof Matrix &&
276 native_equals(native_instance, ((Matrix)obj).native_instance);
/frameworks/base/services/java/com/android/server/
H A DLightsService.java199 Light light = (Light)msg.obj;
/frameworks/base/telephony/java/com/android/internal/telephony/cat/
H A DCatService.java603 if (msg.obj != null) {
604 AsyncResult ar = (AsyncResult) msg.obj;
621 handleRilMsg((RilMessage) msg.obj);
624 handleCmdResponse((CatResponseMessage) msg.obj);
/frameworks/opt/calendar/src/com/android/calendarcommon/
H A DEventRecurrence.java469 public boolean equals(Object obj) { argument
470 if (this == obj) {
473 if (!(obj instanceof EventRecurrence)) {
477 EventRecurrence er = (EventRecurrence) obj;
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java366 InputMethodInfo obj = (InputMethodInfo) o;
367 return mId.equals(obj.mId);

Completed in 5179 milliseconds

1234567891011>>