Home
last modified time | relevance | path

Searched refs:extraData (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Car/Notification/src/com/android/car/notification/template/
DProgressNotificationViewHolder.java74 Bundle extraData = notification.extras; in bindBody() local
75 CharSequence title = extraData.getCharSequence(Notification.EXTRA_TITLE); in bindBody()
76 CharSequence text = extraData.getCharSequence(Notification.EXTRA_TEXT); in bindBody()
81 boolean isIndeterminate = extraData.getBoolean(Notification.EXTRA_PROGRESS_INDETERMINATE); in bindBody()
82 int progress = extraData.getInt(Notification.EXTRA_PROGRESS); in bindBody()
83 int progressMax = extraData.getInt(Notification.EXTRA_PROGRESS_MAX); in bindBody()
DNavigationNotificationViewHolder.java63 Bundle extraData = notification.extras; in bindBody() local
64 CharSequence title = extraData.getCharSequence(Notification.EXTRA_TITLE); in bindBody()
65 CharSequence text = extraData.getCharSequence(Notification.EXTRA_TEXT); in bindBody()
DCallNotificationViewHolder.java63 Bundle extraData = notification.extras; in bindBody() local
64 CharSequence title = extraData.getCharSequence(Notification.EXTRA_TITLE); in bindBody()
65 CharSequence text = extraData.getCharSequence(Notification.EXTRA_TEXT); in bindBody()
DInboxNotificationViewHolder.java63 Bundle extraData = notification.extras; in bindBody() local
64 CharSequence title = extraData.getCharSequence(Notification.EXTRA_TITLE_BIG); in bindBody()
65 CharSequence text = extraData.getCharSequence(Notification.EXTRA_SUMMARY_TEXT); in bindBody()
DBasicNotificationViewHolder.java63 Bundle extraData = notification.extras; in bindBody() local
64 CharSequence title = extraData.getCharSequence(Notification.EXTRA_TITLE); in bindBody()
65 CharSequence text = extraData.getCharSequence(Notification.EXTRA_TEXT); in bindBody()
DEmergencyNotificationViewHolder.java72 Bundle extraData = notification.extras; in bind() local
73 CharSequence title = extraData.getCharSequence(Notification.EXTRA_TITLE); in bind()
74 CharSequence text = extraData.getCharSequence(Notification.EXTRA_TEXT); in bind()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapSimAkaMethodStateMachine.java213 boolean isValidMac(String tag, EapMessage message, EapSimAkaTypeData typeData, byte[] extraData) in isValidMac() argument
221 byte[] mac = getMac(message.eapCode, message.eapIdentifier, typeData, extraData); in isValidMac()
239 byte[] getMac(int eapCode, int eapIdentifier, EapSimAkaTypeData typeData, byte[] extraData) in getMac() argument
257 ByteBuffer buffer = ByteBuffer.allocate(messageForMac.eapLength + extraData.length); in getMac()
259 buffer.put(extraData); in getMac()
269 EapResult buildResponseMessageWithMac(int identifier, int eapSubtype, byte[] extraData) { in buildResponseMessageWithMac() argument
271 return buildResponseMessageWithMac(identifier, eapSubtype, extraData, new ArrayList<>(1)); in buildResponseMessageWithMac()
276 int identifier, int eapSubtype, byte[] extraData, List<EapSimAkaAttribute> attributes) { in buildResponseMessageWithMac() argument
282 byte[] mac = getMac(EAP_CODE_RESPONSE, identifier, eapSimAkaTypeData, extraData); in buildResponseMessageWithMac()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSuggestionUtils.java40 String extraData = suggestion.getSuggestionIntentExtraData(); in getSuggestionIntent() local
55 if (extraData != null) { in getSuggestionIntent()
56 intent.putExtra(SearchManager.EXTRA_DATA_KEY, extraData); in getSuggestionIntent()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
DGoogleSuggestionProvider.java83 String extraData = in query() local
85 return new SuggestionCursorBackedCursor(mSource.refreshShortcut(shortcutId, extraData)); in query()
DGoogleSource.java27 SuggestionCursor refreshShortcut(String shortcutId, String extraData); in refreshShortcut() argument
DAbstractGoogleSource.java52 public abstract SuggestionCursor refreshShortcut(String shortcutId, String extraData); in refreshShortcut() argument