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

/frameworks/base/core/java/android/net/http/
H A DHeaders.java125 private ArrayList<String> cookies = new ArrayList<String>(2); field in class:Headers
287 cookies.add(val);
368 return this.cookies;
/frameworks/base/core/java/android/webkit/
H A DCookieManager.java37 * CookieManager manages cookies according to RFC2109 spec.
157 // both values are null, the cookies match. If both values are
158 // non-null, the cookies match. If one value is null and the other
159 // is non-null, the cookies do not match (i.e. "foo=;" and "foo;")
210 // According to RFC 2109, multiple cookies are ordered in a way such
225 // If both cookies have null values, fall back to using the name
378 ArrayList<Cookie> cookies = null;
380 cookies = parseCookie(hostAndPath[0], hostAndPath[1], value);
385 if (cookies == null || cookies
[all...]
H A DJWebCoreJavaBridge.java58 * WebCore timers and cookies.
192 * @return A String representing the cookies for the given resource url.
194 private String cookies(String url) { method in class:JWebCoreJavaBridge
199 * Returns whether cookies are enabled or not.
H A DLoadListener.java312 ArrayList<String> cookies = headers.getSetCookie();
313 for (int i = 0; i < cookies.size(); ++i) {
314 CookieManager.getInstance().setCookie(mUri, cookies.get(i));
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java610 * cookies for each added asset with 0 indicating failure, or null if
619 int[] cookies = new int[paths.length];
621 cookies[i] = addAssetPath(paths[i]);
624 return cookies;

Completed in 855 milliseconds