Searched refs:obj (Results 126 - 150 of 553) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/net/
H A DNetworkAgent.java65 * obj = NetworkInfo
72 * obj = NetworkCapabilities
79 * obj = NetworkProperties
91 * obj = network score Integer
98 * obj = UidRange[] to forward
105 * obj = UidRange[] to stop forwarding
200 private void queueOrSendMessage(int what, Object obj) { argument
203 mAsyncChannel.sendMessage(what, obj);
207 msg.obj = obj;
[all...]
H A DStaticIpConfiguration.java142 public boolean equals(Object obj) { argument
143 if (this == obj) return true;
145 if (!(obj instanceof StaticIpConfiguration)) return false;
147 StaticIpConfiguration other = (StaticIpConfiguration) obj;
/frameworks/base/core/java/android/os/
H A DServiceManagerNative.java33 static public IServiceManager asInterface(IBinder obj) argument
35 if (obj == null) {
39 (IServiceManager)obj.queryLocalInterface(descriptor);
44 return new ServiceManagerProxy(obj);
/frameworks/base/core/java/android/widget/
H A DFilter.java119 message.obj = args;
232 RequestArguments args = (RequestArguments) msg.obj;
240 message.obj = args;
280 RequestArguments args = (RequestArguments) msg.obj;
/frameworks/base/media/java/android/media/
H A DAudioPortEventHandler.java60 if (mListeners.contains(msg.obj)) {
61 listeners.add((AudioManager.OnAudioPortUpdateListener)msg.obj);
152 int what, int arg1, int arg2, Object obj) {
162 Message m = handler.obtainMessage(what, arg1, arg2, obj);
151 postEventFromNative(Object module_ref, int what, int arg1, int arg2, Object obj) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaCrypto.h40 static sp<ICrypto> GetCrypto(JNIEnv *env, jobject obj);
/frameworks/native/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp152 JNIEXPORT void JNICALL Java_com_android_gl2jni_GL2JNILib_init(JNIEnv * env, jobject obj, jint width, jint height);
153 JNIEXPORT void JNICALL Java_com_android_gl2jni_GL2JNILib_step(JNIEnv * env, jobject obj);
156 JNIEXPORT void JNICALL Java_com_android_gl2jni_GL2JNILib_init(JNIEnv * env, jobject obj, jint width, jint height) argument
161 JNIEXPORT void JNICALL Java_com_android_gl2jni_GL2JNILib_step(JNIEnv * env, jobject obj) argument
/frameworks/native/opengl/tests/gldual/jni/
H A Dgl_code.cpp152 JNIEXPORT void JNICALL Java_com_android_gldual_GLDualLib_init(JNIEnv * env, jobject obj, jint width, jint height);
153 JNIEXPORT void JNICALL Java_com_android_gldual_GLDualLib_step(JNIEnv * env, jobject obj);
156 JNIEXPORT void JNICALL Java_com_android_gldual_GLDualLib_init(JNIEnv * env, jobject obj, jint width, jint height) argument
161 JNIEXPORT void JNICALL Java_com_android_gldual_GLDualLib_step(JNIEnv * env, jobject obj) argument
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseCursorPagerAdapter.java102 final Object obj = super.instantiateItem(container, position);
103 if (obj != null) {
104 mObjectRowMap.put(obj, rowId);
106 return obj;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DRilMessageDecoder.java87 msg.obj = rilMsg;
100 msg.obj = cmdParams;
129 if (decodeMessageParams((RilMessage)msg.obj)) {
145 mCurrentRilMessage.mData = msg.obj;
/frameworks/rs/driver/
H A DrsdScriptGroup.h38 android::renderscript::rs_script_group *obj);
H A DrsdBcc.cpp165 rs_script *obj)
167 obj->p = script;
169 obj->r = NULL;
171 obj->v1 = script->mHal.drv;
173 obj->v1 = NULL;
175 obj->v2 = NULL;
163 rsdScriptUpdateCachedObject(const Context *rsc, const Script *script, rs_script *obj) argument
/frameworks/av/media/libmedia/
H A DIHDCP.cpp45 int msg, int ext1, int ext2, const Parcel *obj) {
51 if (obj && obj->dataSize() > 0) {
52 data.appendFrom(const_cast<Parcel *>(obj), 0, obj->dataSize());
182 Parcel obj; local
184 obj.appendFrom(
190 notify(msg, ext1, ext2, &obj);
44 notify( int msg, int ext1, int ext2, const Parcel *obj) argument
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DCameraBinderDecorator.java161 * @param obj object that will serve as the target for all method calls
163 * @return a proxy that will intercept all invocations to obj
165 public static <T> T newInstance(T obj) { argument
166 return Decorator.<T> newInstance(obj, new CameraBinderDecoratorListener());
/frameworks/base/core/java/android/view/
H A DInputFilter.java228 mHost = (IInputFilterHost) msg.obj;
247 final InputEvent event = (InputEvent)msg.obj;
/frameworks/base/core/jni/android/graphics/
H A DDrawFilter.cpp66 SkDrawFilter* obj = reinterpret_cast<SkDrawFilter*>(objHandle); local
67 SkSafeUnref(obj);
H A DTypeface.cpp50 static void Typeface_unref(JNIEnv* env, jobject obj, jlong faceHandle) { argument
55 static jint Typeface_getStyle(JNIEnv* env, jobject obj, jlong faceHandle) { argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DKeyguardDisableHandler.java62 final Pair<IBinder, String> pair = (Pair<IBinder, String>)msg.obj;
67 mKeyguardTokenWatcher.release((IBinder)msg.obj);
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp466 BBinder* obj = mPendingStrongDerefs[i]; local
467 obj->decStrong(mProcess.get());
939 void setTheContextObject(sp<BBinder> obj) argument
941 the_context_object = obj;
946 BBinder* obj; local
960 obj = (BBinder*)mIn.readPointer();
961 ALOG_ASSERT(refs->refBase() == obj,
963 refs, obj, refs->refBase());
964 obj->incStrong(mProcess.get());
966 LOG_REMOTEREFS("BR_ACQUIRE from driver on %p", obj);
[all...]
/frameworks/native/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/media/java/android/media/session/
H A DMediaSession.java549 private void postToCallback(int what, Object obj) { argument
550 postToCallback(what, obj, null);
553 private void postToCallback(int what, Object obj, Bundle extras) { argument
556 mCallback.post(what, obj, extras);
615 public boolean equals(Object obj) { argument
616 if (this == obj)
618 if (obj == null)
620 if (getClass() != obj.getClass())
622 Token other = (Token) obj;
1128 public void post(int what, Object obj, Bundl argument
1134 post(int what, Object obj) argument
1142 post(int what, Object obj, int arg1) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcSwitchState.java129 public void registerForIdle(Handler h, int what, Object obj) { argument
130 Registrant r = new Registrant(h, what, obj);
159 String type = (String)msg.obj;
177 String type = (String)msg.obj;
221 String type = (String)msg.obj;
234 String type = (String)msg.obj;
280 String type = (String)msg.obj;
292 String type = (String)msg.obj;
337 String type = (String)msg.obj;
351 String type = (String)msg.obj;
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccFileHandler.java146 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
164 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
182 * @param onLoaded ((AsnyncResult)(onLoaded.obj)).result is the recordSize[]
201 * ((AsyncResult)(onLoaded.obj)).result is an ArrayList<byte[]>
218 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
237 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
255 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
283 * @param onComplete onComplete.obj will be an AsyncResult
284 * onComplete.obj.userObj will be a IccIoResult on success
355 ar = (AsyncResult)msg.obj;
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp205 jbyteArray obj = NULL; local
213 obj = (jbyteArray)env->NewLocalRef(globalBuffer);
216 if (obj != NULL) {
217 jsize bufferLength = env->GetArrayLength(obj);
221 env->DeleteLocalRef(obj);
227 return obj;
232 jbyteArray obj = NULL; local
246 obj = getCallbackBuffer(env, &mRawImageCallbackBuffers, size);
248 obj = getCallbackBuffer(env, &mCallbackBuffers, size);
255 if (obj
338 jobjectArray obj = NULL; local
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp237 const char *name, const sp<RefBase> &obj, Type type) {
241 if (obj != NULL) { obj->incStrong(this); }
242 item->u.refValue = obj.get();
245 void AMessage::setObject(const char *name, const sp<RefBase> &obj) { argument
246 setObjectInternal(name, obj, kTypeObject);
253 void AMessage::setMessage(const char *name, const sp<AMessage> &obj) { argument
257 if (obj != NULL) { obj->incStrong(this); }
258 item->u.refValue = obj
236 setObjectInternal( const char *name, const sp<RefBase> &obj, Type type) argument
[all...]

Completed in 4828 milliseconds

1234567891011>>