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

/frameworks/base/opengl/libagl/
H A DTextureObjectManager.cpp61 void EGLTextureObject::copyParameters(const sp<EGLTextureObject>& old) argument
63 wraps = old->wraps;
64 wrapt = old->wrapt;
65 min_filter = old->min_filter;
66 mag_filter = old->mag_filter;
67 memcpy(crop_rect, old->crop_rect, sizeof(crop_rect));
68 generate_mipmap = old->generate_mipmap;
69 direct = old->direct;
289 const sp<EGLTextureObject>& old = mTextures.valueAt(index); local
290 const uint32_t refs = old
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java80 StatusBarIcon old, StatusBarIcon icon);
209 StatusBarIcon old = mList.getIcon(index);
210 if (old == null) {
216 old, icon);
79 updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, StatusBarIcon icon) argument
/frameworks/base/libs/utils/
H A DLooper.cpp138 sp<Looper> old = getForThread(); // also has side-effect of initializing TLS local
146 if (old != NULL) {
147 old->decStrong((void*)threadDestructor);
/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp77 MediaMetadataRetriever *old = (MediaMetadataRetriever*) env->GetIntField(thiz, fields.context); local
H A Dandroid_media_MediaRecorder.cpp140 sp<MediaRecorder> old = (MediaRecorder*)env->GetIntField(thiz, fields.context); local
144 if (old != 0) {
145 old->decStrong(thiz);
148 return old;
H A Dandroid_media_MediaPlayer.cpp133 sp<MediaPlayer> old = (MediaPlayer*)env->GetIntField(thiz, fields.context); local
137 if (old != 0) {
138 old->decStrong(thiz);
141 return old;
/frameworks/base/libs/rs/driver/
H A DrsdBcc.cpp59 Script *old = tls->mScript; local
61 return old;
296 mtls.sig = 0x1f; // temp fix for old apps, full table in slang_rs_export_foreach.cpp
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DKeyguardUpdateMonitor.java406 private static boolean isBatteryUpdateInteresting(BatteryStatus old, BatteryStatus current) { argument
408 final boolean wasPluggedIn = isPluggedIn(old);
411 && (old.status != current.status);
419 if (nowPluggedIn && old.level != current.level) {
424 if (!nowPluggedIn && isBatteryLow(current) && current.level != old.level) {
/frameworks/base/services/surfaceflinger/
H A DLayerBase.cpp112 int32_t old = setTransactionFlags(eTransactionNeeded); local
113 return ((old & eTransactionNeeded) == 0);
/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/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp207 sp<DrmManagerClientImpl> old = (DrmManagerClientImpl*)env->GetIntField(thiz, fieldId); local
211 if (old != 0) {
212 old->decStrong(thiz);
215 return old;
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp166 int old = android_atomic_inc(&gNumRefsCreated); local
167 if (old == 200) {
172 LOGV("Now have %d binder ops", old);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java525 StatusBarIcon old, StatusBarIcon icon) {
527 + " old=" + old + " icon=" + icon);
609 Slog.d(TAG, "old notification: when=" + oldNotification.notification.when
700 StatusBarNotification old = removeNotificationViews(key);
702 if (old != null) {
704 mTicker.removeEntry(old);
1046 final int old = mDisabled;
1047 final int diff = state ^ old;
1052 old, stat
524 updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, StatusBarIcon icon) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java795 StatusBarIcon old, StatusBarIcon icon) {
840 Slog.d(TAG, "old notification: when=" + oldNotification.notification.when
948 int old = mDisabled;
949 int diff = state ^ old;
794 updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, StatusBarIcon icon) argument

Completed in 235 milliseconds