Searched refs:cookies (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/media/java/android/media/
H A DMedia2HTTPService.java33 public Media2HTTPService(List<HttpCookie> cookies) { argument
34 mCookies = cookies;
35 Log.v(TAG, "Media2HTTPService(" + this + "): Cookies: " + cookies);
52 // Applying the bootstrapping cookies
69 + "CookieManager. Can’t add the provided cookies to the cookie "
88 // when cookies are provided
89 static Media2HTTPService createHTTPService(String path, List<HttpCookie> cookies) { argument
91 return (new Media2HTTPService(cookies));
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 DDataSourceDesc.java178 * Return the Uri cookies of this data source.
180 * @return the Uri cookies of this data source
418 * To provide cookies for the subsequent HTTP requests, you can install your own default
420 * can use this API to pass the cookies as a list of HttpCookie. If the app has not
422 * and populates its CookieStore with the provided cookies when this data source is passed
435 * The headers must not include cookies. Instead, use the cookies param.
436 * @param cookies the cookies to be sent together with the request
440 * when cookies ar
442 setDataSource(@onNull Context context, @NonNull Uri uri, @Nullable Map<String, String> headers, @Nullable List<HttpCookie> cookies) argument
[all...]
H A DMediaPlayer.java1013 * To provide cookies for the subsequent HTTP requests, you can install your own default cookie
1015 * this API to pass the cookies as a list of HttpCookie. If the app has not installed
1017 * the provided cookies. If the app has installed its own handler already, this API requires the
1028 * The headers must not include cookies. Instead, use the cookies param.
1029 * @param cookies the cookies to be sent together with the request
1030 * @throws IllegalArgumentException if cookies are provided and the installed handler is not
1037 @Nullable Map<String, String> headers, @Nullable List<HttpCookie> cookies)
1047 if (cookies !
1036 setDataSource(@onNull Context context, @NonNull Uri uri, @Nullable Map<String, String> headers, @Nullable List<HttpCookie> cookies) argument
1147 setDataSource(String path, Map<String, String> headers, List<HttpCookie> cookies) argument
1167 setDataSource(String path, String[] keys, String[] values, List<HttpCookie> cookies) argument
[all...]
H A DMediaPlayer2Impl.java843 * To provide cookies for the subsequent HTTP requests, you can install your own default cookie
845 * this API to pass the cookies as a list of HttpCookie. If the app has not installed
847 * the provided cookies. If the app has installed its own handler already, this API requires the
855 * @throws IllegalArgumentException if cookies are provided and the installed handler is not
864 @Nullable Map<String, String> headers, @Nullable List<HttpCookie> cookies)
889 handleDataSource(isCurrent, srcId, uri.toString(), headers, cookies);
895 handleDataSource(isCurrent, srcId, uri.toString(), headers, cookies);
924 String path, Map<String, String> headers, List<HttpCookie> cookies)
940 handleDataSource(isCurrent, srcId, path, keys, values, cookies);
944 String path, String[] keys, String[] values, List<HttpCookie> cookies)
861 handleDataSource( boolean isCurrent, long srcId, @NonNull Context context, @NonNull Uri uri, @Nullable Map<String, String> headers, @Nullable List<HttpCookie> cookies) argument
922 handleDataSource( boolean isCurrent, long srcId, String path, Map<String, String> headers, List<HttpCookie> cookies) argument
943 handleDataSource(boolean isCurrent, long srcId, String path, String[] keys, String[] values, List<HttpCookie> cookies) argument
[all...]
/frameworks/base/cmds/statsd/src/subscriber/
H A DSubscriberReporter.cpp80 vector<String16> cookies; local
81 cookies.reserve(subscription.broadcast_subscriber_details().cookie_size());
83 cookies.push_back(String16(cookie.c_str()));
97 sendBroadcastLocked(it2->second, configKey, subscription, cookies, dimKey);
103 const vector<String16>& cookies,
116 cookies,
100 sendBroadcastLocked(const sp<IBinder>& intentSender, const ConfigKey& configKey, const Subscription& subscription, const vector<String16>& cookies, const MetricDimensionKey& dimKey) const argument
H A DSubscriberReporter.h106 const std::vector<String16>& cookies,
/frameworks/base/core/java/android/os/
H A DIStatsCompanionService.aidl77 in String[] cookies,
H A DParcel.java583 public void putClassCookies(Map<Class, Object> cookies) { argument
584 if (cookies == null) {
590 mClassCookies.putAll(cookies);
/frameworks/support/media/src/main/java/androidx/media/
H A DDataSourceDesc.java183 * Return the Uri cookies of this data source.
185 * @return the Uri cookies of this data source
413 * To provide cookies for the subsequent HTTP requests, you can install your own default
424 * The headers must not include cookies. Instead, use the cookies param.
425 * @param cookies the cookies to be sent together with the request
429 * when cookies are provided.
432 @Nullable Map<String, String> headers, @Nullable List<HttpCookie> cookies) {
435 if (cookies !
431 setDataSource(@onNull Context context, @NonNull Uri uri, @Nullable Map<String, String> headers, @Nullable List<HttpCookie> cookies) argument
[all...]
/frameworks/support/media/src/androidTest/java/androidx/media/
H A DMediaPlayer2TestBase.java499 Uri uri, Map<String, String> headers, List<HttpCookie> cookies,
501 playVideoWithRetries(uri, headers, cookies, null /* width */, null /* height */, playTime);
505 Uri uri, Map<String, String> headers, List<HttpCookie> cookies,
512 uri, headers, cookies)
498 playLiveVideoTest( Uri uri, Map<String, String> headers, List<HttpCookie> cookies, int playTime) argument
504 playVideoWithRetries( Uri uri, Map<String, String> headers, List<HttpCookie> cookies, Integer width, Integer height, int playTime) argument
/frameworks/base/services/core/java/com/android/server/stats/
H A DStatsCompanionService.java224 String[] cookies,
235 ArrayList<String> cookieList = new ArrayList<>(cookies.length);
236 for (String cookie : cookies) { cookieList.add(cookie); }
244 Arrays.toString(cookies), dimensionsValue));
222 sendSubscriberBroadcast(IBinder intentSenderBinder, long configUid, long configKey, long subscriptionId, long subscriptionRuleId, String[] cookies, StatsDimensionsValue dimensionsValue) argument

Completed in 403 milliseconds