Searched refs:extras (Results 126 - 150 of 217) sorted by relevance

123456789

/packages/services/Telephony/src/com/android/phone/vvm/
H A DRemoteVvmTaskManager.java301 private void send(ComponentName remotePackage, int what, Bundle extras) { argument
314 intent.putExtras(extras);
323 message.setData(new Bundle(extras));
/packages/apps/Car/Media/src/com/android/car/media/
H A DMediaPlaybackFragment.java637 Bundle extras = customAction.getExtras();
638 boolean repeatedAction = (extras != null && extras.getBoolean(
845 Bundle extras = ca.getExtras();
846 if (extras == null) {
850 String feedbackMessage = extras.getString(MediaConstants.EXTRA_CUSTOM_ACTION_STATUS, "");
884 Bundle extras = ca.getExtras();
885 extras.putBoolean(
889 transportControls.sendCustomAction(ca, extras);
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastAlertDialogTest.java115 Bundle b = mNotification.getValue().extras;
/packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
H A DTestSyncAdapter.java55 public void onPerformSync(Account account, Bundle extras, String authority, argument
/packages/apps/Dialer/java/com/android/incallui/call/
H A DDialerCall.java243 public void onConnectionEvent(android.telecom.Call call, String event, Bundle extras) {
246 "Call: " + call + ", Event: " + event + ", Extras: " + extras);
514 * There's currently a bug in Telephony service (b/25613098) that could corrupt the extras
569 // DialerCall subject is present in the extras at the start of call, so we do not need to
864 Bundle extras = getExtras();
865 if (extras == null
866 || !extras.containsKey(CallCompat.Details.EXTRA_ANSWERING_DROPS_FOREGROUND_CALL)) {
869 return extras.getBoolean(CallCompat.Details.EXTRA_ANSWERING_DROPS_FOREGROUND_CALL);
1133 Bundle extras = statusHints.getExtras();
1134 if (extras !
[all...]
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/preprovisioning/
H A DResumeNotificationHelperTest.java75 assertEquals(notification.getNotification().extras.getString(Notification.EXTRA_TITLE),
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DSendMessageAction.java235 final Bundle extras = new Bundle();
236 extras.putString(EXTRA_MESSAGE_ID, messageId);
237 extras.putParcelable(EXTRA_UPDATED_MESSAGE_URI, updatedMessageUri);
239 messageUri, extras);
/packages/apps/TV/src/com/android/tv/util/
H A DLocationUtils.java117 public void onStatusChanged(String provider, int status, Bundle extras) { }
/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallAdapter.java399 public void sendCallEvent(String callId, String event, Bundle extras) { argument
407 call.sendCallEvent(event, extras);
421 public void putExtras(String callId, Bundle extras) { argument
429 call.putExtras(Call.SOURCE_INCALL_SERVICE, extras);
H A DInCallController.java354 Bundle extras = new Bundle();
355 extras.putLong(android.telecom.Call.EXTRA_LAST_EMERGENCY_CALLBACK_TIME_MILLIS,
357 call.putExtras(Call.SOURCE_CONNECTION_SERVICE, extras);
609 * Listens for changes to extras reported by a Telecom {@link Call}.
612 * so we will only trigger an update of the call information if the source of the extras
616 * @param source The source of the extras change ({@link Call#SOURCE_CONNECTION_SERVICE} or
618 * @param extras The extras.
621 public void onExtrasChanged(Call call, int source, Bundle extras) {
630 * Listens for changes to extras reporte
977 notifyConnectionEvent(Call call, String event, Bundle extras) argument
[all...]
/packages/apps/Email/provider_src/com/android/email/provider/
H A DEmailProvider.java1736 final Bundle extras = new Bundle(3);
1737 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
1738 extras.putBoolean(ContentResolver.SYNC_EXTRAS_DO_NOT_RETRY, true);
1739 extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
1740 ContentResolver.requestSync(amAccount, EmailContent.AUTHORITY, extras);
2242 private void updateSyncStatus(final Bundle extras) { argument
2243 final long id = extras.getLong(EmailServiceStatus.SYNC_STATUS_ID);
2244 final int statusCode = extras.getInt(EmailServiceStatus.SYNC_STATUS_CODE);
2251 final int result = extras.getInt(EmailServiceStatus.SYNC_RESULT);
2263 public Bundle call(String method, String arg, Bundle extras) { argument
4862 uiSaveMessage(Message msg, Mailbox mailbox, Bundle extras) argument
5032 uiSaveDraftMessage(final long accountId, final Bundle extras) argument
5047 uiSendDraftMessage(final long accountId, final Bundle extras) argument
[all...]
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
H A DForwardingContentProvider.java199 public synchronized Bundle call(String method, String arg, Bundle extras) { argument
201 return mClient.call(method, arg, extras);
/packages/apps/DocumentsUI/src/com/android/documentsui/picker/
H A DLastAccessedProvider.java189 public Bundle call(String method, String arg, Bundle extras) { argument
232 return super.call(method, arg, extras);
/packages/apps/Launcher3/src/com/android/launcher3/notification/
H A DNotificationListener.java279 CharSequence title = notification.extras.getCharSequence(Notification.EXTRA_TITLE);
280 CharSequence text = notification.extras.getCharSequence(Notification.EXTRA_TEXT);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionData.java338 public void setExtras(SuggestionExtras extras) { argument
339 mExtras = extras;
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastAlertService.java221 Bundle extras = intent.getExtras();
222 if (extras == null) {
223 Log.e(TAG, "received SMS_CB_RECEIVED_ACTION with no extras!");
227 SmsCbMessage message = (SmsCbMessage) extras.get(EXTRA_MESSAGE);
323 Bundle extras = intent.getExtras();
324 if (extras == null) {
325 Log.e(TAG, "received SHOW_NEW_ALERT_ACTION with no extras!");
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/
H A DSortingCursorWrapperTest.java475 Bundle extras = new Bundle();
476 extras.putBoolean(DocumentsContract.EXTRA_LOADING, true);
477 extras.putString(DocumentsContract.EXTRA_INFO, "cheddar");
478 extras.putString(DocumentsContract.EXTRA_ERROR, "flop");
479 c.setExtras(extras);
/packages/services/Telephony/testapps/EmbmsServiceTestApp/src/com/android/phone/testapps/embmsmw/
H A DEmbmsSampleDownloadService.java243 Bundle extras = getResultExtras(false);
245 if (extras != null) {
247 + extras.getParcelableArrayList(
295 Bundle extras) {
296 List<UriPathPair> tempFiles = extras.getParcelableArrayList(
294 performDownload(DownloadRequest request, FrontendAppIdentifier appKey, Bundle extras) argument
/packages/apps/Contacts/tests/src/com/android/contacts/model/
H A DRawContactModifierTests.java766 // Parse extras, making sure we keep single name
768 final Bundle extras = new Bundle();
769 extras.putString(Insert.NAME, TEST_NAME2);
770 RawContactModifier.parseExtras(mContext, accountType, state, extras);
790 final Bundle extras = new Bundle();
791 extras.putInt(Insert.IM_PROTOCOL, Im.PROTOCOL_GOOGLE_TALK);
792 extras.putString(Insert.IM_HANDLE, TEST_IM);
793 RawContactModifier.parseExtras(mContext, accountType, state, extras);
804 final Bundle extras = new Bundle();
805 extras
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
H A DBrowsedMediaPlayer.java667 Bundle extras = desc.getExtras();
675 attrValue = extras.getString(MediaMetadata.METADATA_KEY_ARTIST);
679 attrValue = extras.getString(MediaMetadata.METADATA_KEY_ALBUM);
683 attrValue = extras.getString(MediaMetadata.METADATA_KEY_TRACK_NUMBER);
687 attrValue = extras.getString(MediaMetadata.METADATA_KEY_NUM_TRACKS);
691 attrValue = extras.getString(MediaMetadata.METADATA_KEY_GENRE);
695 attrValue = extras.getString(MediaMetadata.METADATA_KEY_DURATION);
/packages/apps/Settings/src/com/android/settings/notification/
H A DNotificationStation.java240 if (n.extras != null) {
241 title = n.extras.getCharSequence(Notification.EXTRA_TITLE);
243 title = n.extras.getCharSequence(Notification.EXTRA_TEXT);
483 if (n.extras != null && n.extras.size() > 0) {
487 for (String extraKey : n.extras.keySet()) {
488 String val = String.valueOf(n.extras.get(extraKey));
/packages/apps/Settings/src/com/android/settings/
H A DActivityPicker.java77 // Read base intent from extras, otherwise assume default
224 Bundle extras; field in class:ActivityPicker.PickAdapter.Item
259 if (extras != null) {
260 intent.putExtras(extras);
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DSimStatus.java125 Bundle extras = intent.getExtras();
126 if (extras == null) {
129 CellBroadcastMessage cbMessage = (CellBroadcastMessage) extras.get("message");
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
H A DAccountSyncFragment.java223 Bundle extras = new Bundle();
224 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
226 extras);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DMailAppProvider.java201 final Bundle extras = new Bundle();
202 extras.putInt(AccountCursorExtraKeys.ACCOUNTS_LOADED, allAccountsLoaded() ? 1 : 0);
215 new MatrixCursorWithExtra(resultProjection, accountList.size(), extras);

Completed in 647 milliseconds

123456789