Lines Matching defs:parentId

138         void notifyChildrenChanged(final String parentId, final Bundle options);
179 public void notifyChildrenChanged(@NonNull final String parentId, final Bundle options) {
186 connection.subscriptions.get(parentId);
191 performLoadChildren(parentId, connection, callback.second);
233 public void notifyChildrenChanged(final String parentId, final Bundle options) {
235 MediaBrowserServiceCompatApi21.notifyChildrenChanged(mServiceObj, parentId);
243 connection.subscriptions.get(parentId);
248 performLoadChildren(parentId, connection, callback.second);
297 public void onLoadChildren(String parentId,
300 = new Result<List<MediaBrowserCompat.MediaItem>>(parentId) {
320 MediaBrowserServiceCompat.this.onLoadChildren(parentId, result);
368 public void notifyChildrenChanged(final String parentId, final Bundle options) {
370 MediaBrowserServiceCompatApi21.notifyChildrenChanged(mServiceObj, parentId);
372 MediaBrowserServiceCompatApi24.notifyChildrenChanged(mServiceObj, parentId,
378 public void onLoadChildren(String parentId,
381 = new Result<List<MediaBrowserCompat.MediaItem>>(parentId) {
401 MediaBrowserServiceCompat.this.onLoadChildren(parentId, result, options);
841 * @param parentId The id of the parent media item whose children are to be
846 public abstract void onLoadChildren(@NonNull String parentId,
859 * @param parentId The id of the parent media item whose children are to be
867 public void onLoadChildren(@NonNull String parentId,
873 onLoadChildren(parentId, result);
951 * @param parentId The id of the parent media item whose
954 public void notifyChildrenChanged(@NonNull String parentId) {
955 if (parentId == null) {
956 throw new IllegalArgumentException("parentId cannot be null in notifyChildrenChanged");
958 mImpl.notifyChildrenChanged(parentId, null);
966 * @param parentId The id of the parent media item whose
972 public void notifyChildrenChanged(@NonNull String parentId, @NonNull Bundle options) {
973 if (parentId == null) {
974 throw new IllegalArgumentException("parentId cannot be null in notifyChildrenChanged");
979 mImpl.notifyChildrenChanged(parentId, options);
1051 void performLoadChildren(final String parentId, final ConnectionRecord connection,
1054 = new Result<List<MediaBrowserCompat.MediaItem>>(parentId) {
1060 + " been disconnected. pkg=" + connection.pkg + " id=" + parentId);
1069 connection.callbacks.onLoadChildren(parentId, filteredList, options);
1072 Log.w(TAG, "Calling onLoadChildren() failed for id=" + parentId
1080 onLoadChildren(parentId, result);
1082 onLoadChildren(parentId, result, options);
1088 + " before returning for package=" + connection.pkg + " id=" + parentId);