Searched defs:rootHints (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
H A DBrowserService.java120 public BrowserRoot onGetRoot(String clientPackageName, int clientUid, Bundle rootHints) { argument
/frameworks/support/media-compat/api21/android/support/v4/media/
H A DMediaBrowserServiceCompatApi21.java54 BrowserRoot onGetRoot(String clientPackageName, int clientUid, Bundle rootHints); argument
116 Bundle rootHints) {
118 clientPackageName, clientUid, rootHints);
115 onGetRoot(String clientPackageName, int clientUid, Bundle rootHints) argument
H A DMediaBrowserCompatApi21.java37 Object callback, Bundle rootHints) {
39 (MediaBrowser.ConnectionCallback) callback, rootHints);
36 createBrowser(Context context, ComponentName serviceComponent, Object callback, Bundle rootHints) argument
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java110 Bundle rootHints; field in class:MediaBrowserService.ConnectionRecord
184 public void connect(final String pkg, final Bundle rootHints, argument
203 connection.rootHints = rootHints;
206 connection.root = MediaBrowserService.this.onGetRoot(pkg, uid, rootHints);
357 * @param rootHints An optional bundle of service-specific arguments to send
367 int clientUid, @Nullable Bundle rootHints);
507 return mCurConnection.rootHints == null ? null : new Bundle(mCurConnection.rootHints);
366 onGetRoot(@onNull String clientPackageName, int clientUid, @Nullable Bundle rootHints) argument
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaBrowserServiceSupport.java223 public BrowserRoot onGetRoot(String clientPackageName, int clientUid, Bundle rootHints) { argument
225 + clientUid + " ; rootHints=" + rootHints);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaBrowserServiceSupport.java223 public BrowserRoot onGetRoot(String clientPackageName, int clientUid, Bundle rootHints) { argument
225 + clientUid + " ; rootHints=" + rootHints);
/frameworks/base/media/java/android/media/browse/
H A DMediaBrowser.java116 * @param rootHints An optional bundle of service-specific arguments to send
125 ConnectionCallback callback, Bundle rootHints) {
138 mRootHints = rootHints == null ? null : new Bundle(rootHints);
124 MediaBrowser(Context context, ComponentName serviceComponent, ConnectionCallback callback, Bundle rootHints) argument
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaBrowserServiceCompat.java206 return mCurConnection.rootHints == null ? null : new Bundle(mCurConnection.rootHints);
268 return mCurConnection.rootHints == null ? null : new Bundle(mCurConnection.rootHints);
273 String clientPackageName, int clientUid, Bundle rootHints) {
275 if (rootHints != null && rootHints.getInt(EXTRA_CLIENT_VERSION, 0) != 0) {
276 rootHints.remove(EXTRA_CLIENT_VERSION);
283 clientPackageName, clientUid, rootHints);
482 Bundle rootHints; field in class:MediaBrowserServiceCompat.ConnectionRecord
272 onGetRoot( String clientPackageName, int clientUid, Bundle rootHints) argument
561 connect(final String pkg, final int uid, final Bundle rootHints, final ServiceCallbacks callbacks) argument
691 registerCallbacks(final ServiceCallbacks callbacks, final Bundle rootHints) argument
828 onGetRoot(@onNull String clientPackageName, int clientUid, @Nullable Bundle rootHints) argument
[all...]
H A DMediaBrowserCompat.java93 * @param rootHints An optional bundle of service-specific arguments to send
102 ConnectionCallback callback, Bundle rootHints) {
104 mImpl = new MediaBrowserImplApi24(context, serviceComponent, callback, rootHints);
106 mImpl = new MediaBrowserImplApi23(context, serviceComponent, callback, rootHints);
108 mImpl = new MediaBrowserImplApi21(context, serviceComponent, callback, rootHints);
110 mImpl = new MediaBrowserImplBase(context, serviceComponent, callback, rootHints);
789 ConnectionCallback callback, Bundle rootHints) {
802 mRootHints = rootHints == null ? null : new Bundle(rootHints);
1319 ConnectionCallback callback, Bundle rootHints) {
101 MediaBrowserCompat(Context context, ComponentName serviceComponent, ConnectionCallback callback, Bundle rootHints) argument
788 MediaBrowserImplBase(Context context, ComponentName serviceComponent, ConnectionCallback callback, Bundle rootHints) argument
1318 MediaBrowserImplApi21(Context context, ComponentName serviceComponent, ConnectionCallback callback, Bundle rootHints) argument
1575 MediaBrowserImplApi23(Context context, ComponentName serviceComponent, ConnectionCallback callback, Bundle rootHints) argument
1591 MediaBrowserImplApi24(Context context, ComponentName serviceComponent, ConnectionCallback callback, Bundle rootHints) argument
1710 ServiceBinderWrapper(IBinder target, Bundle rootHints) argument
[all...]

Completed in 151 milliseconds