Lines Matching refs:options

283         public void addSubscription(final String id, final IBinder token, final Bundle options,
298 MediaBrowserService.this.addSubscription(id, connection, token, options);
433 * @param options The bundle of service-specific arguments sent from the media
438 @NonNull Result<List<MediaBrowser.MediaItem>> result, @NonNull Bundle options) {
440 // override onLoadChildren() with options, onLoadChildren() without options will be used
441 // instead, and the options will be applied in the implementation of result.onResultSent().
567 * @param options The bundle of service-specific arguments to send
571 public void notifyChildrenChanged(@NonNull String parentId, @NonNull Bundle options) {
572 if (options == null) {
573 throw new IllegalArgumentException("options cannot be null in notifyChildrenChanged");
575 notifyChildrenChangedInternal(parentId, options);
578 private void notifyChildrenChangedInternal(final String parentId, final Bundle options) {
591 if (MediaBrowserUtils.hasDuplicatedItems(options, callback.second)) {
623 Bundle options) {
631 && MediaBrowserUtils.areSameOptions(options, callback.second)) {
635 callbackList.add(new Pair<>(token, options));
638 performLoadChildren(id, connection, options);
671 final Bundle options) {
686 ? applyOptions(list, options) : list;
690 connection.callbacks.onLoadChildrenWithOptions(parentId, pls, options);
700 if (options == null) {
703 onLoadChildren(parentId, result, options);
714 final Bundle options) {
718 int page = options.getInt(MediaBrowser.EXTRA_PAGE, -1);
719 int pageSize = options.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1);