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

1234567891011>>

/frameworks/base/telephony/java/android/telephony/
H A DPhoneStateListener.java276 PhoneStateListener.this.onServiceStateChanged((ServiceState)msg.obj);
288 PhoneStateListener.this.onCellLocationChanged((CellLocation)msg.obj);
291 PhoneStateListener.this.onCallStateChanged(msg.arg1, (String)msg.obj);
301 PhoneStateListener.this.onSignalStrengthsChanged((SignalStrength)msg.obj);
307 PhoneStateListener.this.onCellInfoChanged((List<CellInfo>)msg.obj);
310 PhoneStateListener.this.onPreciseCallStateChanged((PreciseCallState)msg.obj);
314 (PreciseDataConnectionState)msg.obj);
318 (DataConnectionRealTimeInfo)msg.obj);
321 PhoneStateListener.this.onVoLteServiceStateChanged((VoLteServiceState)msg.obj);
324 PhoneStateListener.this.onOemHookRawEvent((byte[])msg.obj);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSubscriptionSourceManager.java78 CommandsInterface ci, Handler h, int what, Object obj) {
85 sInstance.registerForCdmaSubscriptionSourceChanged(h, what, obj);
117 ar = (AsyncResult) msg.obj;
127 ar = (AsyncResult)msg.obj;
172 private void registerForCdmaSubscriptionSourceChanged(Handler h, int what, Object obj) { argument
173 Registrant r = new Registrant (h, what, obj);
77 getInstance(Context context, CommandsInterface ci, Handler h, int what, Object obj) argument
/frameworks/native/libs/binder/
H A DParcel.cpp78 const flat_binder_object& obj, const void* who)
80 switch (obj.type) {
82 if (obj.binder) {
83 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
84 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
88 if (obj.binder)
89 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who);
92 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
100 const wp<IBinder> b = proc->getWeakProxyForHandle(obj.handle);
111 ALOGD("Invalid object type 0x%08x", obj
77 acquire_object(const sp<ProcessState>& proc, const flat_binder_object& obj, const void* who) argument
114 release_object(const sp<ProcessState>& proc, const flat_binder_object& obj, const void* who) argument
159 flat_binder_object obj; local
191 flat_binder_object obj; local
759 flat_binder_object obj; local
[all...]
/frameworks/base/core/java/android/net/
H A DIpPrefix.java112 * Compares this {@code IpPrefix} object against the specified object in {@code obj}. Two
115 * @param obj the object to be tested for equality.
119 public boolean equals(Object obj) { argument
120 if (!(obj instanceof IpPrefix)) {
123 IpPrefix that = (IpPrefix) obj;
/frameworks/base/libs/usb/src/com/android/future/usb/
H A DUsbAccessory.java104 public boolean equals(Object obj) { argument
105 if (obj instanceof UsbAccessory) {
106 UsbAccessory accessory = (UsbAccessory)obj;
/frameworks/base/services/core/jni/
H A Dcom_android_server_ConsumerIrService.cpp32 static jlong halOpen(JNIEnv *env, jobject obj) { argument
53 static jint halTransmit(JNIEnv *env, jobject obj, jlong halObject, argument
69 static jintArray halGetCarrierFrequencies(JNIEnv *env, jobject obj, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCellBroadcastHandler.java63 if (message.obj instanceof SmsCbMessage) {
64 handleBroadcastSms((SmsCbMessage) message.obj);
67 loge("handleMessage got object of type: " + message.obj.getClass().getName());
H A DIccCard.java60 public void registerForAbsent(Handler h, int what, Object obj); argument
66 public void registerForNetworkLocked(Handler h, int what, Object obj); argument
72 public void registerForLocked(Handler h, int what, Object obj); argument
81 * onComplete.obj will be an AsyncResult
83 * ((AsyncResult)onComplete.obj).exception == null on success
84 * ((AsyncResult)onComplete.obj).exception != null on fail
87 * ((AsyncResult)onComplete.obj).exception != null
88 * && ((AsyncResult)onComplete.obj).exception
90 * && ((CommandException)(((AsyncResult)onComplete.obj).exception))
147 * onComplete.obj wil
[all...]
H A DCallManager.java108 // default phone as the first phone registered, which is PhoneBase obj
197 * Get the corresponding PhoneBase obj
200 * @return the corresponding PhoneBase obj in Phone if Phone
201 * is a PhoneProxy obj
202 * or the Phone itself if Phone is not a PhoneProxy obj
212 * Check if two phones refer to the same PhoneBase obj
219 * foregroundCall.getPhone() returns GSMPhone obj. On the other hand,
220 * PhoneFactory.getDefaultPhone() returns PhoneProxy obj, which has a class
228 * @param p1 is the first Phone obj
229 * @param p2 is the second Phone obj
1255 registerForDisconnect(Handler h, int what, Object obj) argument
1276 registerForPreciseCallStateChanged(Handler h, int what, Object obj) argument
1292 registerForUnknownConnection(Handler h, int what, Object obj) argument
1316 registerForNewRingingConnection(Handler h, int what, Object obj) argument
1337 registerForIncomingRing(Handler h, int what, Object obj) argument
1359 registerForRingbackTone(Handler h, int what, Object obj) argument
1380 registerForOnHoldTone(Handler h, int what, Object obj) argument
1396 registerForResendIncallMute(Handler h, int what, Object obj) argument
1418 registerForMmiInitiate(Handler h, int what, Object obj) argument
1438 registerForMmiComplete(Handler h, int what, Object obj) argument
1456 registerForEcmTimerReset(Handler h, int what, Object obj) argument
1473 registerForServiceStateChanged(Handler h, int what, Object obj) argument
1493 registerForSuppServiceFailed(Handler h, int what, Object obj) argument
1514 registerForInCallVoicePrivacyOn(Handler h, int what, Object obj) argument
1534 registerForInCallVoicePrivacyOff(Handler h, int what, Object obj) argument
1554 registerForCallWaiting(Handler h, int what, Object obj) argument
1577 registerForSignalInfo(Handler h, int what, Object obj) argument
1600 registerForDisplayInfo(Handler h, int what, Object obj) argument
1621 registerForCdmaOtaStatusChange(Handler h, int what, Object obj) argument
1639 registerForSubscriptionInfoReady(Handler h, int what, Object obj) argument
1683 registerForPostDialCharacter(Handler h, int what, Object obj) argument
[all...]
/frameworks/av/include/media/
H A DIDrmClient.h32 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) = 0;
H A DIMediaPlayerClient.h31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTriggerModule.java152 (SoundTrigger.RecognitionEvent)msg.obj);
158 (SoundTrigger.SoundModelEvent)msg.obj);
188 int what, int arg1, int arg2, Object obj) {
198 Message m = handler.obtainMessage(what, arg1, arg2, obj);
187 postEventFromNative(Object module_ref, int what, int arg1, int arg2, Object obj) argument
/frameworks/base/core/java/android/os/storage/
H A DIMountServiceListener.java45 public static IMountServiceListener asInterface(IBinder obj) { argument
46 if ((obj == null)) {
49 IInterface iin = (IInterface) obj.queryLocalInterface(DESCRIPTOR);
53 return new IMountServiceListener.Stub.Proxy(obj);
/frameworks/base/telecomm/java/android/telecom/
H A DAudioState.java78 public boolean equals(Object obj) { argument
79 if (obj == null) {
82 if (!(obj instanceof AudioState)) {
85 AudioState state = (AudioState) obj;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccController.java226 public void registerForIccChanged(Handler h, int what, Object obj) { argument
228 Registrant r = new Registrant (h, what, obj);
259 AsyncResult ar = (AsyncResult)msg.obj;
282 * sendMessage, in this case the user object passed is msg.obj and from
283 * the CommandsInterface, in this case the user object is msg.obj.userObj
286 if (msg.obj != null && msg.obj instanceof Integer) {
287 index = (Integer)msg.obj;
288 } else if(msg.obj != null && msg.obj instanceo
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java140 SomeArgs args = (SomeArgs)msg.obj;
155 inputMethod.attachToken((IBinder)msg.obj);
159 inputMethod.bindInput((InputBinding)msg.obj);
166 SomeArgs args = (SomeArgs)msg.obj;
177 SomeArgs args = (SomeArgs)msg.obj;
188 SomeArgs args = (SomeArgs)msg.obj;
196 inputMethod.setSessionEnabled((InputMethodSession)msg.obj,
200 inputMethod.revokeSession((InputMethodSession)msg.obj);
203 inputMethod.showSoftInput(msg.arg1, (ResultReceiver)msg.obj);
206 inputMethod.hideSoftInput(msg.arg1, (ResultReceiver)msg.obj);
[all...]
/frameworks/base/core/java/android/app/
H A DIntentService.java65 onHandleIntent((Intent)msg.obj);
118 msg.obj = intent;
/frameworks/base/core/jni/android/graphics/
H A DNinePatch.cpp49 static jboolean isNinePatchChunk(JNIEnv* env, jobject, jbyteArray obj) { argument
50 if (NULL == obj) {
53 if (env->GetArrayLength(obj) < (int)sizeof(Res_png_9patch)) {
56 const jbyte* array = env->GetByteArrayElements(obj, 0);
60 env->ReleaseByteArrayElements(obj, const_cast<jbyte*>(array), JNI_ABORT);
66 static jlong validateNinePatchChunk(JNIEnv* env, jobject, jlong, jbyteArray obj) { argument
67 size_t chunkSize = env->GetArrayLength(obj);
75 env->GetByteArrayRegion(obj, 0, chunkSize, reinterpret_cast<jbyte*>(storage));
H A DXfermode.cpp31 SkXfermode* obj = reinterpret_cast<SkXfermode *>(objHandle); local
32 SkSafeUnref(obj);
/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.h36 const Parcel *obj) = 0;
47 void notify(DrmPlugin::EventType, int extra, const Parcel *obj);
/frameworks/base/tools/aapt/tests/plurals/
H A Drun.sh10 -I out/target/common/obj/APPS/framework-res_intermediates/package-export.apk \
/frameworks/rs/
H A DrsCppUtils.h96 void push(T obj) { argument
97 this->push_back(obj);
102 ssize_t add(const T& obj) { argument
103 this->push_back(obj);
122 void push(bool obj) { argument
123 this->push_back(obj);
128 ssize_t add(const bool& obj) { argument
129 this->push_back(obj);
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h54 void setObject(const char *name, const sp<RefBase> &obj);
56 void setMessage(const char *name, const sp<AMessage> &obj);
71 bool findObject(const char *name, sp<RefBase> *obj) const;
73 bool findMessage(const char *name, sp<AMessage> *obj) const;
156 const char *name, const sp<RefBase> &obj, Type type);
/frameworks/base/core/java/android/hardware/camera2/params/
H A DColorSpaceTransform.java219 public boolean equals(final Object obj) { argument
220 if (obj == null) {
223 if (this == obj) {
226 if (obj instanceof ColorSpaceTransform) {
227 final ColorSpaceTransform other = (ColorSpaceTransform) obj;
H A DTonemapCurve.java254 public boolean equals(Object obj) { argument
255 if (obj == null) {
258 if (this == obj) {
261 if (obj instanceof TonemapCurve) {
262 final TonemapCurve other = (TonemapCurve) obj;

Completed in 1276 milliseconds

1234567891011>>