Lines Matching refs:extras

613          * @param extras A bundle that contains extra data.
615 public void sendProgressUpdate(Bundle extras) {
620 checkExtraFields(extras);
622 onProgressUpdateSent(extras);
629 * @param extras A bundle that contains extra data.
631 public void sendError(Bundle extras) {
637 onErrorSent(extras);
682 void onProgressUpdateSent(Bundle extras) {
691 void onErrorSent(Bundle extras) {
696 private void checkExtraFields(Bundle extras) {
697 if (extras == null) {
700 if (extras.containsKey(MediaBrowserCompat.EXTRA_DOWNLOAD_PROGRESS)) {
701 float value = extras.getFloat(MediaBrowserCompat.EXTRA_DOWNLOAD_PROGRESS);
871 public void search(final String query, final Bundle extras, final ResultReceiver receiver,
887 performSearch(query, extras, connection, receiver);
892 public void sendCustomAction(final String action, final Bundle extras,
906 + action + ", extras=" + extras);
909 performCustomAction(action, extras, connection, receiver);
917 void onConnect(String root, MediaSessionCompat.Token session, Bundle extras)
937 public void onConnect(String root, MediaSessionCompat.Token session, Bundle extras)
939 if (extras == null) {
940 extras = new Bundle();
942 extras.putInt(EXTRA_SERVICE_VERSION, SERVICE_VERSION_CURRENT);
946 data.putBundle(DATA_ROOT_HINTS, extras);
1122 * @param extras The bundle of service-specific arguments sent from the media browser.
1125 public void onSearch(@NonNull String query, Bundle extras,
1145 * @param extras The bundle of service-specific arguments sent from the media browser.
1150 public void onCustomAction(@NonNull String action, Bundle extras,
1394 void performSearch(final String query, Bundle extras, ConnectionRecord connection,
1413 onSearch(query, extras, result);
1422 void performCustomAction(final String action, Bundle extras, ConnectionRecord connection,
1442 onCustomAction(action, extras, result);
1447 + "sendError() before returning for action=" + action + " extras="
1448 + extras);
1539 * @param extras Any extras about the browser service.
1541 public BrowserRoot(@NonNull String rootId, @Nullable Bundle extras) {
1547 mExtras = extras;
1558 * Gets any extras about the browser service.