Searched defs:old (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp72 MediaMetadataRetriever *old = (MediaMetadataRetriever*) env->GetIntField(thiz, fields.context); local
H A Dandroid_media_MediaRecorder.cpp139 sp<MediaRecorder> old = (MediaRecorder*)env->GetIntField(thiz, fields.context); local
143 if (old != 0) {
144 old->decStrong(thiz);
147 return old;
H A Dandroid_media_MediaPlayer.cpp121 sp<MediaPlayer> old = (MediaPlayer*)env->GetIntField(thiz, fields.context); local
125 if (old != 0) {
126 old->decStrong(thiz);
129 return old;
/frameworks/base/opengl/libagl/
H A DTextureObjectManager.cpp64 void EGLTextureObject::copyParameters(const sp<EGLTextureObject>& old) argument
66 wraps = old->wraps;
67 wrapt = old->wrapt;
68 min_filter = old->min_filter;
69 mag_filter = old->mag_filter;
70 memcpy(crop_rect, old->crop_rect, sizeof(crop_rect));
71 generate_mipmap = old->generate_mipmap;
72 direct = old->direct;
292 const sp<EGLTextureObject>& old = mTextures.valueAt(index); local
293 const uint32_t refs = old
[all...]
/frameworks/base/tools/aidl/
H A Daidl.cpp309 Type* old = NAMES.Find(type->QualifiedName()); local
310 if (old == NULL) {
334 if (old->Kind() == Type::BUILT_IN) {
340 else if (type->Kind() != old->Kind()) {
341 const char* oldKind = kind_to_string(old->Kind());
348 old->DeclFile().c_str(), old->DeclLine(), oldKind);
518 method_type* old = methodNames[m->name.data]; local
520 filename, old->name.lineno);
/frameworks/base/libs/surfaceflinger/
H A DLayerBase.cpp119 int32_t old = setTransactionFlags(eTransactionNeeded); local
120 return ((old & eTransactionNeeded) == 0);
H A DSurfaceFlinger.cpp749 // as well, as the old visible region
1142 uint32_t old = android_atomic_or(flags, &mTransactionFlags); local
1143 if ((old & flags)==0) { // wake the server up
1150 return old;
/frameworks/base/services/java/com/android/server/
H A DKeyInputQueue.java994 * Returns a new meta state for the given keys and old state.
996 private static final int makeMetaState(int keycode, boolean down, int old) { argument
1015 return old;
1018 & (down ? (old | mask) : (old & ~mask));
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp148 int old = android_atomic_inc(&gNumRefsCreated); local
149 if (old == 200) {
154 LOGV("Now have %d binder ops", old);

Completed in 157 milliseconds