/aosp14/frameworks/base/services/core/java/com/android/server/power/ |
H A D | AmbientDisplaySuppressionController.java | 54 void onSuppressionChanged(boolean isSuppressed); in onSuppressionChanged() argument 72 final boolean wasSuppressed = isSuppressed(); in suppress() 80 final boolean isSuppressed = isSuppressed(); in suppress() 81 if (isSuppressed != wasSuppressed) { in suppress() 82 mCallback.onSuppressionChanged(isSuppressed); in suppress() 87 getStatusBar().suppressAmbientDisplay(isSuppressed); in suppress() 118 public boolean isSuppressed(@NonNull String token, int callingUid) { in isSuppressed() method in AmbientDisplaySuppressionController 125 public boolean isSuppressed() { in isSuppressed() method in AmbientDisplaySuppressionController 135 pw.println(" ambientDisplaySuppressed=" + isSuppressed()); in dump()
|
H A D | PowerManagerService.java | 3455 private void onDreamSuppressionChangedLocked(final boolean isSuppressed) { 3459 if (!isSuppressed && mIsPowered && mDreamsSupportedConfig && mDreamsEnabledSetting 3463 } else if (isSuppressed) { 3476 && mAmbientDisplaySuppressionController.isSuppressed(); 5210 public void onSuppressionChanged(boolean isSuppressed) { 5212 onDreamSuppressionChangedLocked(isSuppressed); 6657 return mAmbientDisplaySuppressionController.isSuppressed(token, uid); 6673 && mAmbientDisplaySuppressionController.isSuppressed(token, appUid); 6686 return mAmbientDisplaySuppressionController.isSuppressed(); 7052 return mAmbientDisplaySuppressionController.isSuppressed();
|
/aosp14/frameworks/base/errorprone/java/com/google/errorprone/bugpatterns/android/ |
H A D | BluetoothPermissionChecker.java | 126 if (isSuppressed(symbol)) return Description.NO_MATCH; in matchMethod() 185 public boolean isSuppressed(Symbol symbol) { in isSuppressed() method in BluetoothPermissionChecker 187 return isSuppressed(ASTHelpers.enclosingClass(symbol)) in isSuppressed() 188 || isSuppressed(ASTHelpers.getAnnotation(symbol, SuppressWarnings.class)) in isSuppressed() 189 || isSuppressed(ASTHelpers.getAnnotation(symbol, SuppressLint.class)); in isSuppressed() 192 private boolean isSuppressed(SuppressWarnings anno) { in isSuppressed() method in BluetoothPermissionChecker 196 private boolean isSuppressed(SuppressLint anno) { in isSuppressed() method in BluetoothPermissionChecker
|
H A D | RequiresPermissionChecker.java | 448 if (isSuppressed(method)) return true; in isSuppressedRecursively() 450 if (isSuppressed(symbol)) return true; in isSuppressedRecursively() 455 if (isSuppressed(clazz)) return true; in isSuppressedRecursively() 458 if (isSuppressed(type.tsym)) return true; in isSuppressedRecursively() 468 public boolean isSuppressed(Symbol symbol) { in isSuppressed() method in RequiresPermissionChecker 469 return isSuppressed(ASTHelpers.getAnnotation(symbol, SuppressWarnings.class)) in isSuppressed() 470 || isSuppressed(ASTHelpers.getAnnotation(symbol, SuppressLint.class)); in isSuppressed() 473 private boolean isSuppressed(SuppressWarnings anno) { in isSuppressed() method in RequiresPermissionChecker 477 private boolean isSuppressed(SuppressLint anno) { in isSuppressed() method in RequiresPermissionChecker
|
/aosp14/frameworks/base/core/java/android/provider/ |
H A D | BlockedNumberContract.java | 631 public final boolean isSuppressed; field in BlockedNumberContract.SystemContract.BlockSuppressionStatus 637 public BlockSuppressionStatus(boolean isSuppressed, long untilTimestampMillis) { in BlockSuppressionStatus() argument 638 this.isSuppressed = isSuppressed; in BlockSuppressionStatus() 644 return "[BlockSuppressionStatus; isSuppressed=" + isSuppressed + ", until=" in toString()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/people/ |
H A D | NotificationHelper.java | 243 boolean isSuppressed = false; in shouldFilterOut() 246 isSuppressed = bubblesOptional.isPresent() in shouldFilterOut() 252 return isSuppressed; in shouldFilterOut()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
H A D | BubbleData.java | 462 boolean isSuppressed = mSuppressedBubbles.containsKey(locusId); in notificationEntryUpdated() 463 if (isSuppressed && (!bubble.isSuppressed() || !bubble.isSuppressable())) { in notificationEntryUpdated() 466 } else if (!isSuppressed && (bubble.isSuppressed() in notificationEntryUpdated()
|
H A D | Bubble.java | 705 boolean isSuppressed() { in isSuppressed() method in Bubble 757 boolean prevSuppressed = isSuppressed(); in setSuppressBubble()
|
H A D | BubbleController.java | 160 void suppressionChanged(Bubble bubble, boolean isSuppressed); in suppressionChanged() argument 1644 public void suppressionChanged(Bubble bubble, boolean isSuppressed) { 1646 mStackView.setBubbleSuppressed(bubble, isSuppressed); 1692 public void suppressionChanged(Bubble bubble, boolean isSuppressed) {
|
H A D | BubbleStackView.java | 1853 if (bubble.isSuppressed()) { in removeBubble()
|
/aosp14/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 41453 Landroid/provider/BlockedNumberContract$SystemContract$BlockSuppressionStatus;->isSuppressed:Z
|