Searched refs:brOptions (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/core/java/com/android/server/am/ |
D | PendingIntentRecord.java | 461 BroadcastOptions brOptions = new BroadcastOptions(options); in sendInner() local 462 if (brOptions.getTemporaryAppAllowlistDuration() > 0) { in sendInner() 464 uid, brOptions.getTemporaryAppAllowlistDuration(), in sendInner() 465 brOptions.getTemporaryAppAllowlistType(), in sendInner() 466 brOptions.getTemporaryAppAllowlistReasonCode(), in sendInner() 467 brOptions.getTemporaryAppAllowlistReason()); in sendInner()
|
D | BroadcastQueue.java | 1084 @Nullable BroadcastOptions brOptions) { in maybeScheduleTempAllowlistLocked() argument 1085 if (brOptions == null || brOptions.getTemporaryAppAllowlistDuration() <= 0) { in maybeScheduleTempAllowlistLocked() 1088 long duration = brOptions.getTemporaryAppAllowlistDuration(); in maybeScheduleTempAllowlistLocked() 1089 final @TempAllowListType int type = brOptions.getTemporaryAppAllowlistType(); in maybeScheduleTempAllowlistLocked() 1090 final @ReasonCode int reasonCode = brOptions.getTemporaryAppAllowlistReasonCode(); in maybeScheduleTempAllowlistLocked() 1091 final String reason = brOptions.getTemporaryAppAllowlistReason(); in maybeScheduleTempAllowlistLocked() 1510 final BroadcastOptions brOptions = r.options; in processNextBroadcastLocked() local 1551 if (brOptions != null && in processNextBroadcastLocked() 1553 < brOptions.getMinManifestReceiverApiLevel() || in processNextBroadcastLocked() 1555 > brOptions.getMaxManifestReceiverApiLevel())) { in processNextBroadcastLocked() [all …]
|
D | ActivityManagerService.java | 13687 BroadcastOptions brOptions = null; in broadcastIntentLocked() local 13689 brOptions = new BroadcastOptions(bOptions); in broadcastIntentLocked() 13690 if (brOptions.getTemporaryAppAllowlistDuration() > 0) { in broadcastIntentLocked() 13714 if (brOptions.isDontSendToRestrictedApps() in broadcastIntentLocked() 13721 if (brOptions.allowsBackgroundActivityStarts()) { in broadcastIntentLocked() 13743 if (brOptions.getIdForResponseEvent() > 0) { in broadcastIntentLocked() 14238 requiredPermissions, excludedPermissions, excludedPackages, appOp, brOptions, in broadcastIntentLocked() 14336 requiredPermissions, excludedPermissions, excludedPackages, appOp, brOptions, in broadcastIntentLocked()
|