Searched defs:old (Results 26 - 29 of 29) sorted by relevance

12

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardUpdateMonitor.java974 private static boolean isBatteryUpdateInteresting(BatteryStatus old, BatteryStatus current) { argument
976 final boolean wasPluggedIn = old.isPluggedIn();
979 && (old.status != current.status);
987 if (nowPluggedIn && old.level != current.level) {
992 if (!nowPluggedIn && current.isBatteryLow() && current.level != old.level) {
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp1620 // as well, as the old visible region
1934 uint32_t old = android_atomic_or(flags, &mTransactionFlags); local
1935 if ((old & flags)==0) { // wake the server up
1938 return old;
/frameworks/av/services/audioflinger/
H A DThreads.cpp2933 int32_t old = android_atomic_inc(&mFastMixerFutex); local
2934 if (old == -1) {
2990 int32_t old = android_atomic_inc(&mFastMixerFutex); local
2991 if (old == -1) {
4902 // pipe will be shared directly with fast clients, so clear to avoid leaking old information
4972 int32_t old = android_atomic_inc(&mFastCaptureFutex); local
4973 if (old == -1) {
5167 int32_t old = android_atomic_inc(&mFastCaptureFutex); local
5168 if (old == -1) {
6118 // A larger value should allow more old dat
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1263 StatusBarIcon old, StatusBarIcon icon) {
1265 + " old=" + old + " icon=" + icon);
1378 StatusBarNotification old = removeNotificationViews(key, ranking);
1379 if (SPEW) Log.d(TAG, "removeNotification key=" + key + " old=" + old);
1381 if (old != null) {
1384 mTicker.removeEntry(old);
1768 // something old was playing
1769 Log.v(TAG, "DEBUG_MEDIA: Disconnecting from old controlle
1262 updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, StatusBarIcon icon) argument
[all...]

Completed in 360 milliseconds

12