Searched defs:cookies (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/media/java/android/media/
H A DMediaHTTPService.java34 public MediaHTTPService(List<HttpCookie> cookies) { argument
35 mCookies = cookies;
36 Log.v(TAG, "MediaHTTPService(" + this + "): Cookies: " + cookies);
53 // Applying the bootstrapping cookies
70 + "CookieManager. Can’t add the provided cookies to the cookie "
90 // when cookies are provided
92 String path, List<HttpCookie> cookies) {
94 return (new MediaHTTPService(cookies)).asBinder();
91 createHttpServiceBinderIfNecessary( String path, List<HttpCookie> cookies) argument
H A DMediaPlayer.java1009 * To provide cookies for the subsequent HTTP requests, you can install your own default cookie
1011 * this API to pass the cookies as a list of HttpCookie. If the app has not installed
1013 * the provided cookies. If the app has installed its own handler already, this API requires the
1024 * The headers must not include cookies. Instead, use the cookies param.
1025 * @param cookies the cookies to be sent together with the request
1026 * @throws IllegalArgumentException if cookies are provided and the installed handler is not
1033 @Nullable Map<String, String> headers, @Nullable List<HttpCookie> cookies)
1043 if (cookies !
1032 setDataSource(@onNull Context context, @NonNull Uri uri, @Nullable Map<String, String> headers, @Nullable List<HttpCookie> cookies) argument
1143 setDataSource(String path, Map<String, String> headers, List<HttpCookie> cookies) argument
1163 setDataSource(String path, String[] keys, String[] values, List<HttpCookie> cookies) argument
[all...]

Completed in 60 milliseconds