Searched refs:newFlags (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
H A DCompatModePackages.java215 int newFlags = ask ? (curFlags&~COMPAT_FLAG_DONT_ASK) : (curFlags|COMPAT_FLAG_DONT_ASK);
216 if (curFlags != newFlags) {
217 if (newFlags != 0) {
218 mPackages.put(packageName, newFlags);
291 int newFlags = curFlags;
293 newFlags |= COMPAT_FLAG_ENABLED;
295 newFlags &= ~COMPAT_FLAG_ENABLED;
302 newFlags = 0;
307 newFlags = 0;
310 if (newFlags !
[all...]
/frameworks/base/libs/hwui/
H A DDeferredDisplayList.cpp160 static inline bool checkSide(const int currentFlags, const int newFlags, const int side, argument
163 bool newClipExists = newFlags & side;
208 const int newFlags = state->mClipSideFlags; local
209 if (currentFlags != kClipSide_None || newFlags != kClipSide_None) {
212 if (!checkSide(currentFlags, newFlags, kClipSide_Left, boundsDelta)) return false;
214 if (!checkSide(currentFlags, newFlags, kClipSide_Top, boundsDelta)) return false;
218 if (!checkSide(currentFlags, newFlags, kClipSide_Right, boundsDelta)) return false;
220 if (!checkSide(currentFlags, newFlags, kClipSide_Bottom, boundsDelta)) return false;
/frameworks/base/services/core/java/com/android/server/power/
H A DNotifier.java174 int newFlags, String newTag, String newPackageName, int newOwnerUid,
179 final int newMonitorType = getBatteryStatsWakeLockMonitorType(newFlags);
180 boolean unimportantForLogging = (newFlags&PowerManager.UNIMPORTANT_FOR_LOGGING) != 0
183 Slog.d(TAG, "onWakeLockChanging: flags=" + newFlags + ", tag=\"" + newTag
197 onWakeLockAcquired(newFlags, newTag, newPackageName, newOwnerUid, newOwnerPid,
172 onWakeLockChanging(int flags, String tag, String packageName, int ownerUid, int ownerPid, WorkSource workSource, String historyTag, int newFlags, String newTag, String newPackageName, int newOwnerUid, int newOwnerPid, WorkSource newWorkSource, String newHistoryTag) argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardViewStateManager.java158 final int newFlags = isCameraPage ? (currentFlags | View.STATUS_BAR_DISABLE_SEARCH)
160 mKeyguardWidgetPager.setSystemUiVisibility(newFlags);
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1451 final int newFlags = computeFlags(p.flags);
1452 if (newFlags != p.flags) {
1453 p.flags = newFlags;
1552 final int newFlags = computeFlags(p.flags);
1553 if (newFlags != p.flags) {
1554 p.flags = newFlags;
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp1014 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask); local
1015 if (mCurrentState.flags == newFlags)
1018 mCurrentState.flags = newFlags;
/frameworks/base/core/java/android/view/
H A DKeyEvent.java1591 * @param newFlags New flags for the event, replacing the entire value
1595 int newRepeat, int newFlags) {
1599 ret.mFlags = newFlags;
1594 changeTimeRepeat(KeyEvent event, long eventTime, int newRepeat, int newFlags) argument
/frameworks/base/media/java/android/media/
H A DMediaCodec.java252 * @param newFlags buffer flags associated with the buffer. This
257 int newOffset, int newSize, long newTimeUs, int newFlags) {
261 flags = newFlags;
256 set( int newOffset, int newSize, long newTimeUs, int newFlags) argument
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3715 uint32_t newFlags = 0; local
3716 const ssize_t newIndex = getResource(value->data, value, true, 0, &newFlags,
3724 if (inoutTypeSpecFlags != NULL) *inoutTypeSpecFlags |= newFlags;

Completed in 294 milliseconds