/frameworks/base/services/core/java/com/android/server/power/ |
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()
|
D | PowerManagerService.java | 3549 private void onDreamSuppressionChangedLocked(final boolean isSuppressed) { 3553 if (!isSuppressed && mIsPowered && mDreamsSupportedConfig && mDreamsEnabledSetting 3557 } else if (isSuppressed) { 3570 && mAmbientDisplaySuppressionController.isSuppressed(); 5340 public void onSuppressionChanged(boolean isSuppressed) { 5342 onDreamSuppressionChangedLocked(isSuppressed); 6828 return mAmbientDisplaySuppressionController.isSuppressed(token, uid); 6844 && mAmbientDisplaySuppressionController.isSuppressed(token, appUid); 6857 return mAmbientDisplaySuppressionController.isSuppressed(); 7257 return mAmbientDisplaySuppressionController.isSuppressed();
|
/frameworks/base/errorprone/java/com/google/errorprone/bugpatterns/android/ |
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
|
D | RequiresPermissionChecker.java | 462 if (isSuppressed(method)) return true; in isSuppressedRecursively() 464 if (isSuppressed(symbol)) return true; in isSuppressedRecursively() 469 if (isSuppressed(clazz)) return true; in isSuppressedRecursively() 472 if (isSuppressed(type.tsym)) return true; in isSuppressedRecursively() 482 public boolean isSuppressed(Symbol symbol) { in isSuppressed() method in RequiresPermissionChecker 483 return isSuppressed(ASTHelpers.getAnnotation(symbol, SuppressWarnings.class)) in isSuppressed() 484 || isSuppressed(ASTHelpers.getAnnotation(symbol, SuppressLint.class)); in isSuppressed() 487 private boolean isSuppressed(SuppressWarnings anno) { in isSuppressed() method in RequiresPermissionChecker 491 private boolean isSuppressed(SuppressLint anno) { in isSuppressed() method in RequiresPermissionChecker
|
/frameworks/base/core/java/android/provider/ |
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()
|
D | BlockedNumbersManager.java | 360 public BlockSuppressionStatus(boolean isSuppressed, long untilTimestampMillis) { in BlockSuppressionStatus() argument 361 this.mIsSuppressed = isSuppressed; in BlockSuppressionStatus()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/ |
D | NotificationHelper.java | 243 boolean isSuppressed = false; in shouldFilterOut() 246 isSuppressed = bubblesOptional.isPresent() in shouldFilterOut() 252 return isSuppressed; in shouldFilterOut()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
D | BubbleData.java | 492 boolean isSuppressed = mSuppressedBubbles.containsKey(locusId); in notificationEntryUpdated() 493 if (isSuppressed && (!bubble.isSuppressed() || !bubble.isSuppressable())) { in notificationEntryUpdated() 496 } else if (!isSuppressed && (bubble.isSuppressed() in notificationEntryUpdated()
|
D | Bubble.java | 752 boolean isSuppressed() { in isSuppressed() method in Bubble 804 boolean prevSuppressed = isSuppressed(); in setSuppressBubble()
|
D | BubbleController.java | 168 void suppressionChanged(Bubble bubble, boolean isSuppressed); in suppressionChanged() argument 1882 public void suppressionChanged(Bubble bubble, boolean isSuppressed) { 1884 mStackView.setBubbleSuppressed(bubble, isSuppressed); 1948 public void suppressionChanged(Bubble bubble, boolean isSuppressed) {
|
D | BubbleStackView.java | 2044 if (bubble.isSuppressed()) { in removeBubble()
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 40810 Landroid/provider/BlockedNumberContract$SystemContract$BlockSuppressionStatus;->isSuppressed:Z
|