Home
last modified time | relevance | path

Searched refs:actionIntent (Results 1 – 25 of 30) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/quickaffordance/
DHomeControlsKeyguardQuickAffordanceConfig.kt92 actionIntent = appStoreIntent(context, componentPackageName), in <lambda>()
113 actionIntent = in <lambda>()
207 actionIntent: Intent? = null, in <lambda>()
209 check(actionIntent == null || actionText != null) in <lambda>()
214 actionIntent = actionIntent, in <lambda>()
DKeyguardQuickAffordanceConfig.kt101 val actionIntent: Intent? = null, in pickerName() constant in com.android.systemui.keyguard.data.quickaffordance.KeyguardQuickAffordanceConfig.PickerScreenState.Disabled
106 (actionText.isNullOrEmpty() && actionIntent == null) || in pickerName()
107 (!actionText.isNullOrEmpty() && actionIntent != null) in pickerName()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DSmartReplyStateInflater.kt164 .filter { it.actionIntent != null } in inflateSmartReplyState()
209 pair.second.actionIntent?.let { actionIntent -> in inflateSmartReplyState() method
214 actionIntent, in inflateSmartReplyState()
233 freeformRemoteInputActionPair.second.actionIntent != null) { in inflateSmartReplyState()
237 freeformRemoteInputActionPair.second.actionIntent, in inflateSmartReplyState()
278 action.actionIntent?.intent?.let { intent -> in inflateSmartReplyState()
400 activityStarter.startPendingIntentDismissingKeyguard(action.actionIntent, entry.row) { in <lambda>()
DRemoteInputViewController.kt177 val actionIntent = a.actionIntent ?: continue in onSendRemoteInput() constant
179 if (!current.filterEquals(actionIntent.intent)) continue in onSendRemoteInput()
181 pendingIntent = actionIntent in onSendRemoteInput()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/shared/model/
DKeyguardQuickAffordancePickerRepresentation.kt45 val actionIntent: Intent? = null, constant in com.android.systemui.keyguard.shared.model.KeyguardQuickAffordancePickerRepresentation
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotifUiAdjustment.kt71 (it.first.actionIntent != it.second.actionIntent) || in areDifferent()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
DSaveImageInBackgroundTaskTest.kt158 assertEquals(mutablePendingIntent, quickShareAction.actionIntent) in testQueryQuickShare_withActions()
231 quickShareAction.actionIntent.intent.extras!!.getParcelable( in testCreateQuickShareAction_mutableIntent_returnsSafeIntent()
269 quickShareAction.actionIntent.intent.extras!!.getParcelable( in testCreateQuickShareAction_immutableIntent_returnsSafeIntent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationUiAdjustment.java105 if (!Objects.equals(firstAction.actionIntent, secondAction.actionIntent)) { in areDifferent()
DNotificationRemoteInputManager.java165 NotificationEntry entry, PendingIntent actionIntent) {
186 if (!Objects.equals(action.actionIntent, actionIntent)) {
196 PendingIntent actionIntent) {
197 Notification.Action action = getActionFromView(view, entry, actionIntent);
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/pip/
DPipUtils.kt104 action1.actionIntent == action2.actionIntent in remoteActionsMatch()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/mediaprojection/taskswitcher/ui/
DTaskSwitcherNotificationCoordinatorTest.kt129 action.actionIntent.intent in switchTaskAction_hidesNotification()
146 action.actionIntent.intent in goBackAction_hidesNotification()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DSaveImageInBackgroundTask.java227 .putExtra(ScreenshotController.EXTRA_ACTION_INTENT, action.actionIntent) in buildSmartActions()
257 } else if (quickShare.actionIntent.isImmutable()) { in createQuickShareAction()
268 .putExtra(ScreenshotController.EXTRA_ACTION_INTENT, quickShare.actionIntent) in createQuickShareAction()
DScreenshotView.java804 mQuickShareChip.setPendingIntent(imageData.quickShareAction.actionIntent, in setChipIntents()
845 actionChip.setPendingIntent(smartAction.actionIntent, in setChipIntents()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
DKeyguardQuickAffordanceRepository.kt180 actionIntent = in <lambda>()
181 disabledPickerState?.actionIntent?.apply { in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/notetask/quickaffordance/
DNoteTaskQuickAffordanceConfigTest.kt293 assertThat(disabled.actionIntent?.action) in <lambda>()
295 assertThat(disabled.actionIntent?.`package`).isEqualTo(context.packageName) in <lambda>()
/frameworks/base/core/tests/coretests/src/android/app/
DNotificationTest.java290 PendingIntent actionIntent = createPendingIntent("action"); in allPendingIntents_resilientToAnotherNotificationInExtras() local
296 .addAction(new Notification.Action.Builder(null, "action", actionIntent).build()) in allPendingIntents_resilientToAnotherNotificationInExtras()
305 assertThat(unparceled.allPendingIntents).containsExactly(contentIntent, actionIntent); in allPendingIntents_resilientToAnotherNotificationInExtras()
311 PendingIntent actionIntent = createPendingIntent("action"); in allPendingIntents_alsoInPublicVersion() local
316 .addAction(new Notification.Action.Builder(null, "action", actionIntent).build()) in allPendingIntents_alsoInPublicVersion()
329 assertThat(unparceled.allPendingIntents).containsExactly(contentIntent, actionIntent, in allPendingIntents_alsoInPublicVersion()
610 assertEquals(declineIntent, actions.get(0).actionIntent); in testCallStyle_getSystemActions_forIncomingCall()
611 assertEquals(answerIntent, actions.get(1).actionIntent); in testCallStyle_getSystemActions_forIncomingCall()
626 assertEquals(hangUpIntent, actions.get(0).actionIntent); in testCallStyle_getSystemActions_forOngoingCall()
648 assertEquals(declineIntent, actions.get(0).actionIntent); in testCallStyle_getSystemActions_forIncomingCallWithOtherActions()
[all …]
/frameworks/base/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/
DSlicePurchaseBroadcastReceiverTest.java214 assertEquals(mCanceledIntent, notification.actions[0].actionIntent); in testDisplayPerformanceBoostNotification()
215 assertEquals(mContentIntent2, notification.actions[1].actionIntent); in testDisplayPerformanceBoostNotification()
/frameworks/base/packages/SystemUI/src/com/android/systemui/notetask/quickaffordance/
DNoteTaskQuickAffordanceConfig.kt134 actionIntent = in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/domain/pipeline/
DMediaDataProcessor.kt981 if (action.actionIntent != null) { in <lambda>()
983 if (action.actionIntent.isActivity) { in <lambda>()
985 action.actionIntent in <lambda>()
990 var result = sendPendingIntent(action.actionIntent) in <lambda>()
997 sendPendingIntent(action.actionIntent) in <lambda>()
DLegacyMediaDataManagerImpl.kt1035 if (action.actionIntent != null) { in createActionsFromNotification()
1037 if (action.actionIntent.isActivity) { in createActionsFromNotification()
1039 action.actionIntent in createActionsFromNotification()
1044 var result = sendPendingIntent(action.actionIntent) in createActionsFromNotification()
1051 sendPendingIntent(action.actionIntent) in createActionsFromNotification()
/frameworks/base/services/tests/servicestests/src/com/android/server/devicestate/
DDeviceStateNotificationControllerTest.java152 action.actionIntent.getIntent().getAction()); in test_activeNotification()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DCustomizationProvider.kt304 representation.actionIntent?.toUri(Intent.URI_INTENT_SCHEME), in <lambda>()
/frameworks/base/core/java/android/app/
DNotification.java1856 public PendingIntent actionIntent; field in Notification.Action
1867 actionIntent = PendingIntent.CREATOR.createFromParcel(in); in Action()
1896 this.actionIntent = intent; in Action()
2054 this(action.getIcon(), action.title, action.actionIntent, in Builder()
2249 actionIntent, // safe to alias in clone()
2273 if (actionIntent != null) { in writeToParcel()
2275 actionIntent.writeToParcel(out, flags); in writeToParcel()
6420 if (TextUtils.isEmpty(action.title) || action.actionIntent == null) { in hasValidRemoteInput()
6858 final boolean tombstone = (action.actionIntent == null); in generateActionButton()
6862 button.setOnClickPendingIntent(R.id.action0, action.actionIntent); in generateActionButton()
[all …]
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationRecord.java615 action.actionIntent == null ? "null" : action.actionIntent.toString() in dumpNotification()
/frameworks/base/services/core/java/com/android/server/sensorprivacy/
DSensorPrivacyService.java716 PendingIntent actionIntent = PendingIntent.getBroadcast(mContext, sensor, in showSensorUseReminderNotification() local
730 actionTitle, actionIntent).build()) in showSensorUseReminderNotification()

12