Home
last modified time | relevance | path

Searched refs:remoteInputs (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Car/libs/car-assist-lib/src/com/android/car/assist/payloadhandlers/
DNotificationPayloadHandler.java157 RemoteInput[] remoteInputs = actionCallback.getRemoteInputs(); in writeReply() local
158 if (remoteInputs == null || remoteInputs.length == 0) { in writeReply()
162 if (remoteInputs.length > 1) { in writeReply()
166 RemoteInput remoteInput = remoteInputs[0]; in writeReply()
175 RemoteInput.addResultsToIntent(remoteInputs, additionalData, results); in writeReply()
/packages/modules/ExtServices/src/android/ext/services/notification/
DNotificationEntry.java293 RemoteInput[] remoteInputs = action.getRemoteInputs(); in hasInlineReply() local
294 if (remoteInputs == null) { in hasInlineReply()
297 for (RemoteInput remoteInput : remoteInputs) { in hasInlineReply()
/packages/apps/Car/libs/car-assist-client-lib/src/com/android/car/assist/client/
DCarAssistUtils.java254 .anyMatch(remoteInputs -> remoteInputs.length > 0); in replyCallbackHasRemoteInput()