Searched defs:notifyChildrenChanged (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/media-compat/api24/android/support/v4/media/
H A DMediaBrowserServiceCompatApi24.java47 public static void notifyChildrenChanged(Object serviceObj, String parentId, Bundle options) { method in class:MediaBrowserServiceCompatApi24
48 ((MediaBrowserService) serviceObj).notifyChildrenChanged(parentId, options);
/frameworks/support/media-compat/api21/android/support/v4/media/
H A DMediaBrowserServiceCompatApi21.java49 public static void notifyChildrenChanged(Object serviceObj, String parentId) { method in class:MediaBrowserServiceCompatApi21
50 ((MediaBrowserService) serviceObj).notifyChildrenChanged(parentId);
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java518 public void notifyChildrenChanged(@NonNull String parentId) { method in class:MediaBrowserService
533 public void notifyChildrenChanged(@NonNull String parentId, @NonNull Bundle options) { method in class:MediaBrowserService
535 throw new IllegalArgumentException("options cannot be null in notifyChildrenChanged");
542 throw new IllegalArgumentException("parentId cannot be null in notifyChildrenChanged");
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaBrowserServiceCompat.java138 void notifyChildrenChanged(final String parentId, final Bundle options); method in interface:MediaBrowserServiceCompat.MediaBrowserServiceImpl
179 public void notifyChildrenChanged(@NonNull final String parentId, final Bundle options) { method in class:MediaBrowserServiceCompat.MediaBrowserServiceImplBase
233 public void notifyChildrenChanged(final String parentId, final Bundle options) { method in class:MediaBrowserServiceCompat.MediaBrowserServiceImplApi21
235 MediaBrowserServiceCompatApi21.notifyChildrenChanged(mServiceObj, parentId);
368 public void notifyChildrenChanged(final String parentId, final Bundle options) { method in class:MediaBrowserServiceCompat.MediaBrowserServiceImplApi24
370 MediaBrowserServiceCompatApi21.notifyChildrenChanged(mServiceObj, parentId);
372 MediaBrowserServiceCompatApi24.notifyChildrenChanged(mServiceObj, parentId,
954 public void notifyChildrenChanged(@NonNull String parentId) { method in class:MediaBrowserServiceCompat
956 throw new IllegalArgumentException("parentId cannot be null in notifyChildrenChanged");
958 mImpl.notifyChildrenChanged(parentI
972 public void notifyChildrenChanged(@NonNull String parentId, @NonNull Bundle options) { method in class:MediaBrowserServiceCompat
[all...]

Completed in 107 milliseconds