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

1234567891011>>

/frameworks/base/core/jni/
H A Dandroid_text_AndroidBidi.cpp28 static jint runBidi(JNIEnv* env, jobject obj, jint dir, jcharArray chsArray, argument
H A Dcom_android_internal_net_NetworkStatsFactory.cpp63 static jobjectArray get_string_array(JNIEnv* env, jobject obj, jfieldID field, int size, bool grow) argument
66 jobjectArray array = (jobjectArray)env->GetObjectField(obj, field);
74 static jintArray get_int_array(JNIEnv* env, jobject obj, jfieldID field, int size, bool grow) argument
77 jintArray array = (jintArray)env->GetObjectField(obj, field);
85 static jlongArray get_long_array(JNIEnv* env, jobject obj, jfieldID field, int size, bool grow) argument
88 jlongArray array = (jlongArray)env->GetObjectField(obj, field);
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java372 public boolean equals(Object obj) { argument
373 if (obj == null || !(obj instanceof Region)) {
376 Region peer = (Region) obj;
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodecList.cpp137 jstring obj = env->NewStringUTF(types.itemAt(i).c_str()); local
138 env->SetObjectArrayElement(array, i, obj);
139 env->DeleteLocalRef(obj);
140 obj = NULL;
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/textservice/
H A DITextServicesManager_Stub_Delegate.java39 public static ITextServicesManager asInterface(IBinder obj) { argument
40 // ignore the obj and return a fake interface implementation
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java297 public boolean equals(Object obj) { argument
298 if (this == obj) return true;
299 if (!(obj instanceof WifiP2pDevice)) return false;
301 WifiP2pDevice other = (WifiP2pDevice) obj;
/frameworks/rs/
H A DrsFileA3D.h70 void appendToFile(Context *rsc, ObjectBase *obj);
H A Drs_hal.h161 void (*updateCachedObject)(const Context *rsc, const Script *, rs_script *obj);
244 void (*updateCachedObject)(const Context *rsc, const Allocation *alloc, rs_allocation *obj);
293 void (*updateCachedObject)(const Context *rsc, const Sampler *s, rs_sampler *obj);
310 void (*updateCachedObject)(const Context *rsc, const ScriptGroup *sg, rs_script_group *obj);
316 void (*updateCachedObject)(const Context *rsc, const Type *s, rs_type *obj);
322 void (*updateCachedObject)(const Context *rsc, const Element *s, rs_element *obj);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DRttService.java58 AsyncChannel c = (AsyncChannel) msg.obj;
275 (RttManager.ParcelableRttParams)msg.obj;
335 mOutstandingRequest, (RttManager.RttResult[])msg.obj);
360 void replySucceeded(Message msg, Object obj) { argument
365 reply.obj = obj;
384 reply.obj = bundle;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneBase.java82 public void registerForRingbackTone(Handler h, int what, Object obj) { argument
83 mRingbackRegistrants.addUnique(h, what, obj);
102 public void registerForOnHoldTone(Handler h, int what, Object obj) { argument
103 mOnHoldRegistrants.addUnique(h, what, obj);
122 public void registerForTtyModeReceived(Handler h, int what, Object obj){ argument
123 mTtyModeReceivedRegistrants.addUnique(h, what, obj);
285 Handler h, int what, Object obj) {
284 registerForSuppServiceNotification( Handler h, int what, Object obj) argument
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java290 args = (SomeArgs)msg.obj;
297 args = (SomeArgs)msg.obj;
304 args = (SomeArgs)msg.obj;
311 args = (SomeArgs)msg.obj;
318 args = (SomeArgs)msg.obj;
323 args = (SomeArgs)msg.obj;
328 if (DEBUG) Log.d(TAG, "onTaskStarted: intent=" + msg.obj
330 onTaskStarted((Intent) msg.obj, msg.arg1);
333 if (DEBUG) Log.d(TAG, "onTaskFinished: intent=" + msg.obj
335 onTaskFinished((Intent) msg.obj, ms
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java834 public boolean equals(Object obj) { argument
835 if (this == obj) {
838 if (obj == null) {
841 if (getClass() != obj.getClass()) {
844 HistoricalRecord other = (HistoricalRecord) obj;
903 public boolean equals(Object obj) { argument
904 if (this == obj) {
907 if (obj == null) {
910 if (getClass() != obj.getClass()) {
913 ActivityResolveInfo other = (ActivityResolveInfo) obj;
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DRationalTest.java460 private static <T extends Serializable> byte[] serialize(T obj) throws IOException { argument
463 objectStream.writeObject(obj);
472 Object obj = ois.readObject();
473 return klass.cast(obj);
477 private static <T extends Serializable> T serializeRoundTrip(T obj) argument
479 Class<T> klass = (Class<T>) obj.getClass();
480 byte[] arr = serialize(obj);
485 private static <T extends Serializable> void assertEqualsAfterSerializing(T obj) argument
487 T serialized = serializeRoundTrip(obj);
488 assertEquals("Expected values to be equal after serialization round-trip", obj, serialize
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserModel.java814 public boolean equals(Object obj) { argument
815 if (this == obj) {
818 if (obj == null) {
821 if (getClass() != obj.getClass()) {
824 HistoricalRecord other = (HistoricalRecord) obj;
883 public boolean equals(Object obj) { argument
884 if (this == obj) {
887 if (obj == null) {
890 if (getClass() != obj.getClass()) {
893 ActivityResolveInfo other = (ActivityResolveInfo) obj;
[all...]
/frameworks/base/core/java/android/net/nsd/
H A DNsdManager.java324 String s = getNsdServiceInfoType((NsdServiceInfo) message.obj);
333 ((DiscoveryListener) listener).onServiceFound((NsdServiceInfo) message.obj);
336 ((DiscoveryListener) listener).onServiceLost((NsdServiceInfo) message.obj);
353 (NsdServiceInfo) message.obj);
369 ((ResolveListener) listener).onServiceResolved((NsdServiceInfo) message.obj);
/frameworks/base/core/java/android/os/
H A DHandler.java272 * Same as {@link #obtainMessage()}, except that it also sets the what and obj members
276 * @param obj Value to assign to the returned Message.obj field.
279 public final Message obtainMessage(int what, Object obj) argument
281 return Message.obtain(this, what, obj);
300 * Same as {@link #obtainMessage()}, except that it also sets the what, obj, arg1,and arg2 values on the
305 * @param obj Value to assign to the returned Message.obj field.
308 public final Message obtainMessage(int what, int arg1, int arg2, Object obj) argument
310 return Message.obtain(this, what, arg1, arg2, obj);
[all...]
/frameworks/base/core/java/android/print/
H A DPrinterCapabilitiesInfo.java223 public boolean equals(Object obj) { argument
224 if (this == obj) {
227 if (obj == null) {
230 if (getClass() != obj.getClass()) {
233 PrinterCapabilitiesInfo other = (PrinterCapabilitiesInfo) obj;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java450 public boolean equals(Object obj) { argument
451 if (this == obj) {
454 if (obj == null) {
457 if (getClass() != obj.getClass()) {
460 AccessibilityWindowInfo other = (AccessibilityWindowInfo) obj;
/frameworks/base/core/java/android/view/inputmethod/
H A DCursorAnchorInfo.java191 public boolean equals(Object obj){ argument
192 if (obj == null) {
195 if (this == obj) {
198 if (!(obj instanceof CursorAnchorInfo)) {
201 final CursorAnchorInfo that = (CursorAnchorInfo) obj;
/frameworks/base/media/java/android/media/
H A DMediaDrm.java303 if (msg.obj != null && msg.obj instanceof Parcel) {
304 Parcel parcel = (Parcel)msg.obj;
333 int eventType, int extra, Object obj)
340 Message m = md.mEventHandler.obtainMessage(DRM_EVENT, eventType, extra, obj);
332 postEventFromNative(Object mediadrm_ref, int eventType, int extra, Object obj) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java541 // msg.obj will be returned in AsyncResult.userObj;
543 msg.obj = cp;
568 * msg.what == EVENT_DEACTIVATE_DONE and msg.obj == AsyncResult with AsyncResult.obj
571 * @param o is the object returned in the AsyncResult.obj.
633 if (connectionCompletedMsg.obj instanceof ApnContext) {
634 alreadySent = (ApnContext)connectionCompletedMsg.obj;
680 if (msg.obj instanceof ApnContext) {
681 alreadySent = (ApnContext)msg.obj;
685 log(String.format("msg=%s msg.obj
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DMyTransmitter.h373 sp<RefBase> obj; local
374 CHECK(msg->findObject("response", &obj));
378 response = static_cast<ARTSPResponse *>(obj.get());
461 sp<RefBase> obj; local
462 CHECK(msg->findObject("response", &obj));
466 response = static_cast<ARTSPResponse *>(obj.get());
551 sp<RefBase> obj; local
552 CHECK(msg->findObject("response", &obj));
556 response = static_cast<ARTSPResponse *>(obj.get());
740 sp<RefBase> obj; local
769 sp<RefBase> obj; local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java136 public void registerForVoiceCallStarted(Handler h, int what, Object obj) { argument
137 Registrant r = new Registrant(h, what, obj);
150 public void registerForVoiceCallEnded(Handler h, int what, Object obj) { argument
151 Registrant r = new Registrant(h, what, obj);
160 public void registerForCallWaiting(Handler h, int what, Object obj) { argument
161 Registrant r = new Registrant (h, what, obj);
946 private void notifyCallWaitingInfo(CdmaCallWaitingNotification obj) { argument
948 mCallWaitingRegistrants.notifyRegistrants(new AsyncResult(null, obj, null));
985 ar = (AsyncResult)msg.obj;
992 handlePollCalls((AsyncResult)msg.obj);
[all...]
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java477 StringBlock(long obj, boolean useSparse) { argument
478 mNative = obj;
488 private static native int nativeGetSize(long obj); argument
489 private static native String nativeGetString(long obj, int idx); argument
490 private static native int[] nativeGetStyle(long obj, int idx); argument
491 private static native void nativeDestroy(long obj); argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGSMPhoneTest.java101 state = (ServiceState) ((AsyncResult) msg.obj).result;
311 ar = (AsyncResult) msg.obj;
603 ar = (AsyncResult) msg.obj;
1370 ar = (AsyncResult) (msg.obj);
1379 ar = (AsyncResult) (msg.obj);
1386 ar = (AsyncResult) (msg.obj);
1393 ar = (AsyncResult) (msg.obj);
1400 ar = (AsyncResult) (msg.obj);
1407 ar = (AsyncResult) (msg.obj);
1417 ar = (AsyncResult) (msg.obj);
[all...]

Completed in 807 milliseconds

1234567891011>>