/frameworks/support/v4/java/android/support/v4/media/ |
D | MediaBrowserServiceCompat.java | 198 return mCurConnection.rootHints == null ? null : new Bundle(mCurConnection.rootHints); in getBrowserRootHints() 260 return mCurConnection.rootHints == null ? null : new Bundle(mCurConnection.rootHints); in getBrowserRootHints() 265 String clientPackageName, int clientUid, Bundle rootHints) { in onGetRoot() argument 267 if (rootHints != null && rootHints.getInt(EXTRA_CLIENT_VERSION, 0) != 0) { in onGetRoot() 268 rootHints.remove(EXTRA_CLIENT_VERSION); in onGetRoot() 275 clientPackageName, clientUid, rootHints); in onGetRoot() 467 Bundle rootHints; field in MediaBrowserServiceCompat.ConnectionRecord 540 public void connect(final String pkg, final int uid, final Bundle rootHints, in connect() argument 558 connection.rootHints = rootHints; in connect() 562 MediaBrowserServiceCompat.this.onGetRoot(pkg, uid, rootHints); in connect() [all …]
|
D | MediaBrowserCompat.java | 100 ConnectionCallback callback, Bundle rootHints) { in MediaBrowserCompat() argument 102 mImpl = new MediaBrowserImplApi24(context, serviceComponent, callback, rootHints); in MediaBrowserCompat() 104 mImpl = new MediaBrowserImplApi23(context, serviceComponent, callback, rootHints); in MediaBrowserCompat() 106 mImpl = new MediaBrowserImplApi21(context, serviceComponent, callback, rootHints); in MediaBrowserCompat() 108 mImpl = new MediaBrowserImplBase(context, serviceComponent, callback, rootHints); in MediaBrowserCompat() 744 ConnectionCallback callback, Bundle rootHints) { in MediaBrowserImplBase() argument 757 mRootHints = rootHints == null ? null : new Bundle(rootHints); in MediaBrowserImplBase() 1272 ConnectionCallback callback, Bundle rootHints) { in MediaBrowserImplApi21() argument 1276 if (rootHints == null) { in MediaBrowserImplApi21() 1277 rootHints = new Bundle(); in MediaBrowserImplApi21() [all …]
|
/frameworks/base/media/java/android/service/media/ |
D | MediaBrowserService.java | 110 Bundle rootHints; field in MediaBrowserService.ConnectionRecord 184 public void connect(final String pkg, final Bundle rootHints, in connect() argument 203 connection.rootHints = rootHints; in connect() 206 connection.root = MediaBrowserService.this.onGetRoot(pkg, uid, rootHints); in connect() 367 int clientUid, @Nullable Bundle rootHints); in onGetRoot() argument 507 return mCurConnection.rootHints == null ? null : new Bundle(mCurConnection.rootHints); in getBrowserRootHints()
|
D | IMediaBrowserService.aidl | 17 void connect(String pkg, in Bundle rootHints, IMediaBrowserServiceCallbacks callbacks); in connect() argument
|
/frameworks/support/v4/api21/android/support/v4/media/ |
D | MediaBrowserServiceCompatApi21.java | 54 BrowserRoot onGetRoot(String clientPackageName, int clientUid, Bundle rootHints); in onGetRoot() argument 112 Bundle rootHints) { in onGetRoot() argument 114 clientPackageName, clientUid, rootHints); in onGetRoot()
|
D | MediaBrowserCompatApi21.java | 38 Object callback, Bundle rootHints) { in createBrowser() argument 40 (MediaBrowser.ConnectionCallback) callback, rootHints); in createBrowser()
|
/frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/ |
D | BrowserListFragment.java | 82 final Bundle rootHints = new Bundle(); in onActivityCreated() local 83 rootHints.putBoolean(HINT_DISPLAY, true); in onActivityCreated() 85 mBrowser = new MediaBrowser(getActivity(), mComponent, mConnectionCallbacks, rootHints); in onActivityCreated()
|
/frameworks/base/media/java/android/media/browse/ |
D | MediaBrowser.java | 125 ConnectionCallback callback, Bundle rootHints) { in MediaBrowser() argument 138 mRootHints = rootHints == null ? null : new Bundle(rootHints); in MediaBrowser()
|
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/ |
D | BrowserService.java | 120 public BrowserRoot onGetRoot(String clientPackageName, int clientUid, Bundle rootHints) { in onGetRoot() argument
|
/frameworks/base/docs/html/training/auto/audio/ |
D | index.jd | 411 Bundle rootHints) {
|