/aosp14/frameworks/base/core/tests/coretests/src/android/debug/ |
H A D | AdbNotificationsTest.java | 61 if (notification.contentIntent != null) { in testCreateNotification_UsbTransportType() 62 assertFalse(TextUtils.isEmpty(notification.contentIntent.getIntent().getPackage())); in testCreateNotification_UsbTransportType() 81 if (notification.contentIntent != null) { in testCreateNotification_WifiTransportType() 82 assertFalse(TextUtils.isEmpty(notification.contentIntent.getIntent().getPackage())); in testCreateNotification_WifiTransportType()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableNotificationRowDragController.java | 103 final PendingIntent contentIntent = notification.contentIntent != null in startDragAndDrop() local 104 ? notification.contentIntent in startDragAndDrop() 106 if (contentIntent == null) { in startDragAndDrop() 126 dragIntent.putExtra(ClipDescription.EXTRA_PENDING_INTENT, contentIntent); in startDragAndDrop()
|
H A D | ExpandableNotificationRow.java | 2569 || mEntry.getSbn().getNotification().contentIntent == null; 2577 if (mEntry.getSbn().getNotification().contentIntent != null) {
|
/aosp14/frameworks/base/services/core/java/com/android/server/am/ |
H A D | PreBootBroadcaster.java | 161 final PendingIntent contentIntent; 163 contentIntent = PendingIntent.getActivity(context, 0, intent, 166 contentIntent = null; 179 .setContentIntent(contentIntent)
|
/aosp14/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/ |
H A D | PackageInstalledNotificationUtils.java | 272 PendingIntent contentIntent = getInstallerEntranceIntent(); in getGroupNotificationBuilder() local 284 .setContentIntent(contentIntent) in getGroupNotificationBuilder() 297 PendingIntent contentIntent = getInstalledAppLaunchIntent(); in getAppInstalledNotificationBuilder() local 313 .setContentIntent(contentIntent) in getAppInstalledNotificationBuilder()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarNotificationActivityStarterTest.java | 189 sbn.getNotification().contentIntent = mContentIntent; in setUp() 195 bubbleSbn.getNotification().contentIntent = mContentIntent; in setUp() 294 notification.contentIntent = mContentIntent; in testOnNotificationClicked_keyGuardShowing() 330 sbn.getNotification().contentIntent = null; in testOnNotificationClicked_bubble_noContentIntent_noKeyGuard() 362 sbn.getNotification().contentIntent = null; in testOnNotificationClicked_bubble_noContentIntent_keyGuardShowing() 390 sbn.getNotification().contentIntent = mContentIntent; in testOnNotificationClicked_bubble_withContentIntent_keyGuardShowing()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/flicker/src/com/android/wm/shell/flicker/pip/tv/ |
H A D | TvPipNotificationTests.kt | 104 notification.contentIntent?.send() 177 private val StatusBarNotification.contentIntent: PendingIntent?
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableNotificationRowDragControllerTest.java | 81 notification.contentIntent = mock(PendingIntent.class); in setUp() 123 notification.contentIntent = null; in testDoStartDrag_noLaunchIntent()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ |
H A D | BiometricNotificationServiceTest.java | 162 assertThat(fingerprintNotification.contentIntent.getIntent().getAction()) in testShowFingerprintReEnrollNotification_onAcquiredReEnroll() 184 assertThat(fingerprintNotification.contentIntent.getIntent().getAction()) in testShowFaceReEnrollNotification_onErrorReEnroll()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/notifications/ |
H A D | TvNotificationAdapter.java | 65 holder.mPendingIntent = notification.contentIntent; in onBindViewHolder()
|
/aosp14/frameworks/base/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/ |
H A D | CarrierDefaultReceiverTest.java | 101 PendingIntent pendingIntent = mNotification.getValue().contentIntent; in testOnReceiveRedirection()
|
H A D | SlicePurchaseBroadcastReceiverTest.java | 211 assertEquals(mContentIntent1, notification.contentIntent); in testDisplayPerformanceBoostNotification()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/ |
H A D | OngoingCallControllerTest.kt | 469 val pendingIntent = notifEntry.sbn.notification.contentIntent 618 val contentIntent = mock(PendingIntent::class.java) regex 619 notificationEntryBuilder.modifyNotification(context).setContentIntent(contentIntent)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationClicker.java | 118 if (notification.contentIntent != null || notification.fullScreenIntent != null in register()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarNotificationActivityStarter.java | 225 final PendingIntent intent = notification.contentIntent != null in onNotificationClicked() 226 ? notification.contentIntent in onNotificationClicked()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/app/ |
H A D | NotificationTest.java | 275 PendingIntent contentIntent = createPendingIntent("content"); in allPendingIntents_resilientToAnotherNotificationInExtras() local 281 .setContentIntent(contentIntent) in allPendingIntents_resilientToAnotherNotificationInExtras() 291 assertThat(unparceled.allPendingIntents).containsExactly(contentIntent, actionIntent); in allPendingIntents_resilientToAnotherNotificationInExtras() 296 PendingIntent contentIntent = createPendingIntent("content"); in allPendingIntents_alsoInPublicVersion() local 301 .setContentIntent(contentIntent) in allPendingIntents_alsoInPublicVersion() 315 assertThat(unparceled.allPendingIntents).containsExactly(contentIntent, actionIntent, in allPendingIntents_alsoInPublicVersion()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/ |
H A D | OngoingCallController.kt | 97 entry.sbn.notification.contentIntent,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | SwipeHelper.java | 868 PendingIntent dragIntent = notif.contentIntent != null ? notif.contentIntent in isAvailableToDragAndDrop()
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | Notification.java | 369 public PendingIntent contentIntent; field in Notification 2547 CharSequence contentTitle, CharSequence contentText, Intent contentIntent) in Notification() argument 2556 context, 0, contentIntent, PendingIntent.FLAG_MUTABLE)) in Notification() 2614 contentIntent = PendingIntent.CREATOR.createFromParcel(parcel); in readFromParcelImpl() 2729 that.contentIntent = this.contentIntent; in cloneInto() 3095 if (contentIntent != null) { in writeToParcelImpl() 3097 contentIntent.writeToParcel(parcel, 0); in writeToParcelImpl() 3445 CharSequence contentTitle, CharSequence contentText, PendingIntent contentIntent) { in setLatestEventInfo() argument 3465 builder.setContentIntent(contentIntent); in setLatestEventInfo() 4530 mN.contentIntent = intent; in setContentIntent()
|
/aosp14/frameworks/base/services/core/java/com/android/server/sensorprivacy/ |
H A D | SensorPrivacyService.java | 654 PendingIntent contentIntent = PendingIntent.getActivity(mContext, sensor, in showSensorUseReminderNotification() local 675 .setContentIntent(contentIntent) in showSensorUseReminderNotification()
|
/aosp14/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | NotificationRecord.java | 561 pw.println(prefix + "contentIntent=" + notification.contentIntent); in dumpNotification()
|
H A D | NotificationManagerService.java | 6133 summaryNotification.contentIntent = mAmi.getPendingIntentActivityAsApp( 6930 if (notification.contentIntent == null) { 6933 notification.contentIntent = notification.fullScreenIntent;
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/pipeline/ |
H A D | MediaDataManager.kt | 927 notif.contentIntent,
|
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | NotificationManagerServiceTest.java | 12458 PendingIntent contentIntent = createPendingIntent("content"); 12462 .setContentIntent(contentIntent) 12481 PendingIntent contentIntent = createPendingIntent("content"); 12486 .setContentIntent(contentIntent)
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |