HomeSort by relevance Sort by last modified time
    Searched defs:rootHints (Results 1 - 12 of 12) sorted by null

  /cts/tests/tests/media/src/android/media/cts/
MediaBrowserServiceTest.java 207 Bundle rootHints = item.getDescription().getExtras();
208 assertNotNull(rootHints);
210 rootHints.getBoolean(BrowserRoot.EXTRA_RECENT));
212 rootHints.getBoolean(BrowserRoot.EXTRA_OFFLINE));
214 rootHints.getBoolean(BrowserRoot.EXTRA_SUGGESTED));
StubMediaBrowserService.java 65 public BrowserRoot onGetRoot(String clientPackageName, int clientUid, Bundle rootHints) {
75 Bundle rootHints = getBrowserRootHints();
78 .setMediaId(id).setExtras(rootHints).build(), MediaItem.FLAG_BROWSABLE));
  /frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/
BrowserListFragment.java 82 final Bundle rootHints = new Bundle();
83 rootHints.putBoolean(HINT_DISPLAY, true);
85 mBrowser = new MediaBrowser(getActivity(), mComponent, mConnectionCallbacks, rootHints);
  /frameworks/base/media/java/android/service/media/
MediaBrowserService.java 110 Bundle rootHints;
184 public void connect(final String pkg, final Bundle rootHints,
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);
  /frameworks/support/media-compat/java/android/support/v4/media/
MediaBrowserCompat.java 91 * @param rootHints An optional bundle of service-specific arguments to send
100 ConnectionCallback callback, Bundle rootHints) {
102 mImpl = new MediaBrowserImplApi24(context, serviceComponent, callback, rootHints);
104 mImpl = new MediaBrowserImplApi23(context, serviceComponent, callback, rootHints);
106 mImpl = new MediaBrowserImplApi21(context, serviceComponent, callback, rootHints);
108 mImpl = new MediaBrowserImplBase(context, serviceComponent, callback, rootHints);
774 ConnectionCallback callback, Bundle rootHints) {
787 mRootHints = rootHints == null ? null : new Bundle(rootHints);
    [all...]
MediaBrowserServiceCompat.java 200 return mCurConnection.rootHints == null ? null : new Bundle(mCurConnection.rootHints);
262 return mCurConnection.rootHints == null ? null : new Bundle(mCurConnection.rootHints);
267 String clientPackageName, int clientUid, Bundle rootHints) {
269 if (rootHints != null && rootHints.getInt(EXTRA_CLIENT_VERSION, 0) != 0) {
270 rootHints.remove(EXTRA_CLIENT_VERSION);
277 clientPackageName, clientUid, rootHints);
469 Bundle rootHints;
    [all...]
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 

Completed in 260 milliseconds