Home
last modified time | relevance | path

Searched refs:rootHints (Results 1 – 10 of 10) sorted by relevance

/frameworks/support/v4/java/android/support/v4/media/
DMediaBrowserServiceCompat.java198 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 …]
DMediaBrowserCompat.java100 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/
DMediaBrowserService.java110 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()
DIMediaBrowserService.aidl17 void connect(String pkg, in Bundle rootHints, IMediaBrowserServiceCallbacks callbacks); in connect() argument
/frameworks/support/v4/api21/android/support/v4/media/
DMediaBrowserServiceCompatApi21.java54 BrowserRoot onGetRoot(String clientPackageName, int clientUid, Bundle rootHints); in onGetRoot() argument
112 Bundle rootHints) { in onGetRoot() argument
114 clientPackageName, clientUid, rootHints); in onGetRoot()
DMediaBrowserCompatApi21.java38 Object callback, Bundle rootHints) { in createBrowser() argument
40 (MediaBrowser.ConnectionCallback) callback, rootHints); in createBrowser()
/frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/
DBrowserListFragment.java82 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/
DMediaBrowser.java125 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/
DBrowserService.java120 public BrowserRoot onGetRoot(String clientPackageName, int clientUid, Bundle rootHints) { in onGetRoot() argument
/frameworks/base/docs/html/training/auto/audio/
Dindex.jd411 Bundle rootHints) {