HomeSort by relevance Sort by last modified time
    Searched defs:extras (Results 276 - 300 of 529) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/app/
LauncherActivity.java 71 public Bundle extras; field in class:LauncherActivity.ListItem
124 if (item.extras != null) {
125 intent.putExtras(item.extras);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 65 public Bundle extras; field in class:StorageNotification.MoveInfo
129 public void onCreated(int moveId, Bundle extras) {
132 move.extras = extras;
133 if (extras != null) {
134 move.packageName = extras.getString(Intent.EXTRA_PACKAGE_NAME);
135 move.label = extras.getString(Intent.EXTRA_TITLE);
136 move.volumeUuid = extras.getString(VolumeRecord.EXTRA_FS_UUID);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
MediaSessions.java 206 final Bundle extras = c.getExtras(); local
223 if (extras != null) {
224 writer.println(" Extras:");
225 for (String key : extras.keySet()) {
226 writer.println(" " + key + "=" + extras.get(key));
290 public void onExtrasChanged(Bundle extras) {
291 if (D.BUG) Log.d(TAG, cb("onExtrasChanged") + extras);
320 public void onSessionEvent(String event, Bundle extras) {
321 if (D.BUG) Log.d(TAG, cb("onSessionEvent") + "event=" + event + " extras=" + extras);
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ValidateNotificationPeople.java 148 * @param extras extras of the notification with EXTRA_PEOPLE populated
153 public float getContactAffinity(UserHandle userHandle, Bundle extras, int timeoutMs,
156 if (extras == null) return NONE;
164 validatePeople(context, key, extras, null, affinityOut);
212 final Bundle extras = record.getNotification().extras; local
215 validatePeople(context, key, extras, record.getPeopleOverride(), affinityOut);
227 private PeopleRankingReconsideration validatePeople(Context context, String key, Bundle extras,
231 if (extras == null)
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutRequestPinProcessor.java 112 Intent extras = null; local
116 extras = new Intent().putExtras(options);
130 mProcessor.sendResultIntent(mResultIntent, extras);
151 AppWidgetProviderInfo appWidgetProviderInfo, Bundle extras) {
155 mExtras = extras;
230 Bundle extras, int userId, IntentSender resultIntent) {
261 extras),
430 public void sendResultIntent(@Nullable IntentSender intent, @Nullable Intent extras) {
434 mService.injectSendIntentSender(intent, extras);
  /frameworks/support/compat/jellybean/android/support/v4/app/
NotificationCompatJellybean.java 38 // Extras keys used for Jellybean SDK and above.
53 private static final String KEY_EXTRAS = "extras";
83 Bundle extras, String groupKey, boolean groupSummary, String sortKey,
111 if (extras != null) {
112 mExtras.putAll(extras);
145 // Merge in developer provided extras, but let the values already set
147 Bundle extras = getExtras(notif); local
150 if (extras.containsKey(key)) {
154 extras.putAll(mergeBundle);
157 // Add the action extras sparse array if any action was added with extras
244 Bundle extras = (Bundle) sExtrasField.get(notif); local
313 Bundle extras = getExtras(notif); local
392 Bundle extras = bundle.getBundle(KEY_EXTRAS); local
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
NotificationCompat.java 63 Bundle extras = getExtras(notification); local
64 if (extras != null) {
66 Object tokenInner = extras.getParcelable(EXTRA_MEDIA_SESSION);
71 IBinder tokenInner = BundleCompat.getBinder(extras, EXTRA_MEDIA_SESSION);
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AddressedMediaPlayer.java 392 Bundle extras = desc.getExtras(); local
396 extras = fillBundle(mediaController.getMetadata(), extras);
403 attrValue = extras.getString(MediaMetadata.METADATA_KEY_TITLE);
410 attrValue = extras.getString(MediaMetadata.METADATA_KEY_ARTIST);
414 attrValue = extras.getString(MediaMetadata.METADATA_KEY_ALBUM);
419 Long.toString(extras.getLong(MediaMetadata.METADATA_KEY_TRACK_NUMBER));
424 Long.toString(extras.getLong(MediaMetadata.METADATA_KEY_NUM_TRACKS));
428 attrValue = extras.getString(MediaMetadata.METADATA_KEY_GENRE);
432 attrValue = Long.toString(extras.getLong(MediaMetadata.METADATA_KEY_DURATION))
    [all...]
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertService.java 205 Bundle extras = intent.getExtras(); local
206 if (extras == null) {
207 Log.e(TAG, "received SMS_CB_RECEIVED_ACTION with no extras!");
211 SmsCbMessage message = (SmsCbMessage) extras.get(EXTRA_MESSAGE);
308 Bundle extras = intent.getExtras(); local
309 if (extras == null) {
310 Log.e(TAG, "received SHOW_NEW_ALERT_ACTION with no extras!");
  /packages/apps/Launcher2/src/com/android/launcher2/
WallpaperChooserDialogFragment.java 208 final String[] extras = resources.getStringArray(list); local
209 for (String extra : extras) {
LauncherProvider.java 1159 Bundle extras = new Bundle(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 77 // Read base intent from extras, otherwise assume default
220 Bundle extras; field in class:ActivityPicker.PickAdapter.Item
255 if (extras != null) {
256 intent.putExtras(extras);
SecuritySettings.java 642 Bundle extras = new Bundle(); local
643 extras.putInt(Intent.EXTRA_USER_ID, mProfileChallengeUserId);
646 SET_OR_CHANGE_LOCK_METHOD_REQUEST_PROFILE, extras);
749 Bundle extras = new Bundle(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
BaseWidgetProvider.java 147 final Bundle extras = intent.getExtras(); local
148 final Uri accountUri = extras.getParcelable(Utils.EXTRA_ACCOUNT_URI);
149 final Uri folderUri = extras.getParcelable(Utils.EXTRA_FOLDER_URI);
150 final boolean updateAllWidgets = extras.getBoolean(EXTRA_UPDATE_ALL_WIDGETS, false);
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperPreview.java 92 Bundle extras = getIntent().getExtras(); local
93 WallpaperInfo info = extras.getParcelable(EXTRA_LIVE_WALLPAPER_INFO);
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
AbstractRestrictBackgroundNetworkTestCase.java 915 final Bundle extras = new Bundle(); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaControllerTest.java 76 final Bundle extras = new Bundle(); local
77 extras.putString(EXTRAS_KEY, EXTRAS_VALUE);
78 mController.sendCommand(command, extras, new ResultReceiver(null));
206 final Bundle extras = new Bundle(); local
207 extras.putString(EXTRAS_KEY, EXTRAS_VALUE);
208 controls.playFromMediaId(mediaId, extras);
218 controls.playFromSearch(query, extras);
228 controls.playFromUri(uri, extras);
238 controls.sendCustomAction(action, extras);
249 new CustomAction.Builder(action, action, -1).setExtras(extras).build()
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
RemoteConnectionTest.java 545 public void onExtrasChanged(RemoteConnection connection, Bundle extras) {
546 super.onExtrasChanged(connection, extras);
547 callbackInvoker.invoke(connection, extras);
551 Bundle extras = new Bundle(); local
552 extras.putString(TelecomManager.EXTRA_CALL_DISCONNECT_MESSAGE, "Test");
553 mRemoteConnection.setExtras(extras);
556 assertTrue(areBundlesEqual(extras, (Bundle) callbackInvoker.getArgs(0)[1]));
578 Bundle extras) {
579 super.onConnectionEvent(connection, event, extras);
580 callbackInvoker.invoke(connection, event, extras);
584 Bundle extras = new Bundle(); local
    [all...]
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 1106 final Bundle extras = afd.getExtras(); local
1532 Bundle extras = null; local
    [all...]
  /frameworks/base/core/java/android/service/notification/
NotificationListenerService.java 215 * <li>{@link Notification#EXTRA_LARGE_ICON extras[EXTRA_LARGE_ICON]}</li>
216 * <li>{@link Notification#EXTRA_LARGE_ICON_BIG extras[EXTRA_LARGE_ICON_BIG]}</li>
217 * <li>{@link Notification#EXTRA_PICTURE extras[EXTRA_PICTURE]}</li>
218 * <li>{@link Notification#EXTRA_BIG_TEXT extras[EXTRA_BIG_TEXT]}</li>
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarPolicy.java 556 final Bundle extras = new Bundle(); local
557 extras.putString(Notification.EXTRA_SUBSTITUTE_APP_NAME,
600 .addExtras(extras)
    [all...]
  /frameworks/support/media-compat/tests/src/android/support/v4/media/session/
MediaControllerCompatTest.java 120 final Bundle extras = new Bundle(); local
121 extras.putString(EXTRAS_KEY, EXTRAS_VALUE);
122 mController.sendCommand(command, extras, new ResultReceiver(null));
292 final Bundle extras = new Bundle(); local
293 extras.putString(EXTRAS_KEY, EXTRAS_VALUE);
294 controls.playFromMediaId(mediaId, extras);
302 controls.playFromSearch(query, extras);
310 controls.playFromUri(uri, extras);
318 controls.sendCustomAction(action, extras);
328 .setExtras(extras)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarController.java 820 Bundle extras = new Bundle(); local
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Mailbox.java 46 * Sync extras key when syncing one or more mailboxes to specify how many
51 * Sync extras key pattern when syncing one or more mailboxes to specify
66 * Sync extras key to specify that only a specific mailbox type should be synced.
70 * Sync extras key when syncing a mailbox to specify how many additional messages to sync.
980 final Bundle extras = createSyncBundle(mailboxId); local
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 3148 Bundle extras = new Bundle(); local
    [all...]

Completed in 7390 milliseconds

<<11121314151617181920>>