Home
last modified time | relevance | path

Searched refs:contentIntent (Results 1 – 25 of 26) sorted by relevance

12

/aosp14/frameworks/base/core/tests/coretests/src/android/debug/
H A DAdbNotificationsTest.java61 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 DExpandableNotificationRowDragController.java103 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 DExpandableNotificationRow.java2569 || mEntry.getSbn().getNotification().contentIntent == null;
2577 if (mEntry.getSbn().getNotification().contentIntent != null) {
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DPreBootBroadcaster.java161 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 DPackageInstalledNotificationUtils.java272 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 DStatusBarNotificationActivityStarterTest.java189 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 DTvPipNotificationTests.kt104 notification.contentIntent?.send()
177 private val StatusBarNotification.contentIntent: PendingIntent?
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRowDragControllerTest.java81 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 DBiometricNotificationServiceTest.java162 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 DTvNotificationAdapter.java65 holder.mPendingIntent = notification.contentIntent; in onBindViewHolder()
/aosp14/frameworks/base/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/
H A DCarrierDefaultReceiverTest.java101 PendingIntent pendingIntent = mNotification.getValue().contentIntent; in testOnReceiveRedirection()
H A DSlicePurchaseBroadcastReceiverTest.java211 assertEquals(mContentIntent1, notification.contentIntent); in testDisplayPerformanceBoostNotification()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/
H A DOngoingCallControllerTest.kt469 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 DNotificationClicker.java118 if (notification.contentIntent != null || notification.fullScreenIntent != null in register()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarNotificationActivityStarter.java225 final PendingIntent intent = notification.contentIntent != null in onNotificationClicked()
226 ? notification.contentIntent in onNotificationClicked()
/aosp14/frameworks/base/core/tests/coretests/src/android/app/
H A DNotificationTest.java275 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 DOngoingCallController.kt97 entry.sbn.notification.contentIntent,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java868 PendingIntent dragIntent = notif.contentIntent != null ? notif.contentIntent in isAvailableToDragAndDrop()
/aosp14/frameworks/base/core/java/android/app/
H A DNotification.java369 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 DSensorPrivacyService.java654 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 DNotificationRecord.java561 pw.println(prefix + "contentIntent=" + notification.contentIntent); in dumpNotification()
H A DNotificationManagerService.java6133 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 DMediaDataManager.kt927 notif.contentIntent,
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationManagerServiceTest.java12458 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 Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...

12