Searched defs:old (Results 1 - 25 of 30) sorted by last modified time

12

/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdBcc.cpp56 Script *old = tls->mScript; local
58 return old;
/frameworks/rs/cpp/
H A DAllocation.cpp134 sp<const Type> old = mType; local
/frameworks/rs/driver/
H A DrsdAllocation.cpp504 // Cleanup old surface if there is one.
506 ANativeWindow *old = alloc->mHal.state.wndSurface; local
509 old->queueBuffer(old, drv->wndBuffer, -1);
H A DrsdBcc.cpp44 Script *old = tls->mScript; local
46 return old;
/frameworks/rs/
H A DrsAllocation.cpp460 ANativeWindow *old = mHal.state.wndSurface; local
466 if (old) {
467 old->decStrong(NULL);
/frameworks/native/libs/utils/
H A DLooper.cpp119 sp<Looper> old = getForThread(); // also has side-effect of initializing TLS local
127 if (old != NULL) {
128 old->decStrong((void*)threadDestructor);
/frameworks/native/opengl/libagl/
H A DTextureObjectManager.cpp59 void EGLTextureObject::copyParameters(const sp<EGLTextureObject>& old) argument
61 wraps = old->wraps;
62 wrapt = old->wrapt;
63 min_filter = old->min_filter;
64 mag_filter = old->mag_filter;
65 memcpy(crop_rect, old->crop_rect, sizeof(crop_rect));
66 generate_mipmap = old->generate_mipmap;
67 direct = old->direct;
287 const sp<EGLTextureObject>& old = mTextures.valueAt(index); local
288 const uint32_t refs = old
[all...]
/frameworks/native/services/surfaceflinger/
H A DLayerBase.cpp104 int32_t old = setTransactionFlags(eTransactionNeeded); local
105 return ((old & eTransactionNeeded) == 0);
H A DSurfaceFlinger.cpp1360 // as well, as the old visible region
1668 uint32_t old = android_atomic_or(flags, &mTransactionFlags); local
1669 if ((old & flags)==0) { // wake the server up
1672 return old;
/frameworks/compile/mclinker/lib/LD/
H A DStaticResolver.cpp34 /* new\old U w_U d_U wd_U D w_D d_D wd_D C w_C, Cs, Is */
66 ResolveInfo* old = &pOld; local
81 old->overrideVisibility(pNew);
92 old->override(pNew);
97 uint32_t binding = old->binding();
98 old->override(pNew);
99 old->setBinding(binding);
100 ignore(diag::mark_dynamic_defined) << old->name();
106 old->overrideVisibility(pNew);
107 old
[all...]
/frameworks/base/tools/aidl/
H A Daidl.cpp317 Type* old = NAMES.Find(type->QualifiedName()); local
318 if (old == NULL) {
355 if (old->Kind() == Type::BUILT_IN) {
361 else if (type->Kind() != old->Kind()) {
362 const char* oldKind = kind_to_string(old->Kind());
369 old->DeclFile().c_str(), old->DeclLine(), oldKind);
566 method_type* old = methodNames[m->name.data]; local
568 filename, old->name.lineno);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardUpdateMonitor.java618 private static boolean isBatteryUpdateInteresting(BatteryStatus old, BatteryStatus current) { argument
620 final boolean wasPluggedIn = old.isPluggedIn();
623 && (old.status != current.status);
631 if (nowPluggedIn && old.level != current.level) {
636 if (!nowPluggedIn && current.isBatteryLow() && current.level != old.level) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DKeyguardUpdateMonitor.java483 private static boolean isBatteryUpdateInteresting(BatteryStatus old, BatteryStatus current) { argument
485 final boolean wasPluggedIn = old.isPluggedIn();
488 && (old.status != current.status);
496 if (nowPluggedIn && old.level != current.level) {
501 if (!nowPluggedIn && current.isBatteryLow() && current.level != old.level) {
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java328 + "; old implementation is " + oldList.size(), here);
629 HashMap<String, ArrayList<F>> old) {
630 if (cur.size() != old.size()) {
632 for (Map.Entry<String, ArrayList<F>> e : old.entrySet()) {
643 if (old.get(e.getKey()) == null) {
656 + "; old implementation is " + old.size()
662 for (Map.Entry<String, ArrayList<F>> e : old.entrySet()) {
681 + curLen + "; old implementation is " + oldLen, here);
628 compareMaps(IntentFilter src, String name, HashMap<String, F[]> cur, HashMap<String, ArrayList<F>> old) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java82 StatusBarIcon old, StatusBarIcon icon);
245 StatusBarIcon old = mList.getIcon(index);
246 if (old == null) {
252 old, icon);
81 updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, StatusBarIcon icon) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java844 StatusBarIcon old, StatusBarIcon icon) {
846 + " old=" + old + " icon=" + icon);
932 StatusBarNotification old = removeNotificationViews(key);
933 if (SPEW) Slog.d(TAG, "removeNotification key=" + key + " old=" + old);
935 if (old != null) {
937 mTicker.removeEntry(old);
942 if (ENABLE_INTRUDERS && old == mCurrentlyIntrudingNotification) {
1167 final int old
843 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.java841 StatusBarIcon old, StatusBarIcon icon) {
890 int old = mDisabled;
891 int diff = state ^ old;
840 updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, StatusBarIcon icon) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
H A DTvStatusBar.java39 public void updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, argument
/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp187 sp<DrmManagerClientImpl> old = (DrmManagerClientImpl*)env->GetIntField(thiz, fieldId); local
191 if (old != 0) {
192 old->decStrong(thiz);
195 return old;
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp281 sp<JMediaCodec> old = (JMediaCodec *)env->GetIntField(thiz, gFields.context); local
285 if (old != NULL) {
286 old->decStrong(thiz);
290 return old;
H A Dandroid_media_MediaCrypto.cpp149 sp<JCrypto> old = (JCrypto *)env->GetIntField(thiz, gFields.context); local
153 if (old != NULL) {
154 old->decStrong(thiz);
158 return old;
H A Dandroid_media_MediaExtractor.cpp288 sp<JMediaExtractor> old = local
294 if (old != NULL) {
295 old->decStrong(thiz);
299 return old;
H A Dandroid_media_MediaMetadataRetriever.cpp77 MediaMetadataRetriever *old = (MediaMetadataRetriever*) env->GetIntField(thiz, fields.context); local
H A Dandroid_media_MediaPlayer.cpp137 sp<MediaPlayer> old = (MediaPlayer*)env->GetIntField(thiz, fields.context); local
141 if (old != 0) {
142 old->decStrong(thiz);
145 return old;
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;

Completed in 3047 milliseconds

12