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

1234567891011>>

/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp76 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
77 delete obj;
81 Paint* obj = new Paint(); local
82 defaultSettingsForAndroid(obj);
83 return reinterpret_cast<jlong>(obj);
88 Paint* obj = new Paint(*paint); local
89 return reinterpret_cast<jlong>(obj);
93 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
94 obj->reset();
95 defaultSettingsForAndroid(obj);
187 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
192 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
242 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
247 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
253 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
258 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
264 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
271 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
277 Paint* obj = reinterpret_cast<Paint *>(objHandle); local
283 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
289 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
295 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
306 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
312 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
317 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
363 Paint* obj = reinterpret_cast<Paint*>(objHandle); local
373 Paint* obj = GraphicsJNI::getNativePaint(env, paint); local
379 Paint* obj = GraphicsJNI::getNativePaint(env, paint); local
[all...]
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/media/java/android/media/session/
H A DMediaSession.java588 private void postToCallback(int what, Object obj) { argument
589 postToCallback(what, obj, null);
592 private void postToCallback(int what, Object obj, Bundle extras) { argument
595 mCallback.post(what, obj, extras);
654 public boolean equals(Object obj) { argument
655 if (this == obj)
657 if (obj == null)
659 if (getClass() != obj.getClass())
661 Token other = (Token) obj;
1165 public void post(int what, Object obj, Bundl argument
1171 post(int what, Object obj) argument
1179 post(int what, Object obj, int arg1) argument
[all...]
/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.java150 public boolean equals(Object obj) { argument
151 if (this == obj) return true;
153 if (!(obj instanceof StaticIpConfiguration)) return false;
155 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.java61 if (mListeners.contains(msg.obj)) {
62 listeners.add((AudioManager.OnAudioPortUpdateListener)msg.obj);
154 int what, int arg1, int arg2, Object obj) {
164 Message m = handler.obtainMessage(what, arg1, arg2, obj);
153 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.java88 msg.obj = rilMsg;
101 msg.obj = cmdParams;
130 if (decodeMessageParams((RilMessage)msg.obj)) {
146 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/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/opt/telephony/src/java/com/android/internal/telephony/
H A DServiceStateTracker.java362 * AsyncResult in msg.obj where AsyncResult#result contains the
409 * @param obj placed in Message.obj
411 public void registerForVoiceRoamingOn(Handler h, int what, Object obj) { argument
412 Registrant r = new Registrant(h, what, obj);
430 * @param obj placed in Message.obj
432 public void registerForVoiceRoamingOff(Handler h, int what, Object obj) { argument
433 Registrant r = new Registrant(h, what, obj);
451 * @param obj place
453 registerForDataRoamingOn(Handler h, int what, Object obj) argument
474 registerForDataRoamingOff(Handler h, int what, Object obj) argument
646 registerForDataConnectionAttached(Handler h, int what, Object obj) argument
664 registerForDataConnectionDetached(Handler h, int what, Object obj) argument
685 registerForDataRegStateOrRatChanged(Handler h, int what, Object obj) argument
700 registerForNetworkAttached(Handler h, int what, Object obj) argument
718 registerForPsRestrictedEnabled(Handler h, int what, Object obj) argument
737 registerForPsRestrictedDisabled(Handler h, int what, Object obj) argument
[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.cpp221 jbyteArray obj = NULL; local
229 obj = (jbyteArray)env->NewLocalRef(globalBuffer);
232 if (obj != NULL) {
233 jsize bufferLength = env->GetArrayLength(obj);
237 env->DeleteLocalRef(obj);
243 return obj;
248 jbyteArray obj = NULL; local
262 obj = getCallbackBuffer(env, &mRawImageCallbackBuffers, size);
264 obj = getCallbackBuffer(env, &mCallbackBuffers, size);
271 if (obj
354 jobjectArray obj = NULL; local
[all...]

Completed in 619 milliseconds

1234567891011>>