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

  /external/webkit/Source/WebCore/inspector/front-end/
CookieParser.js 31 // Ideally, we would rely on platform support for parsing a cookie, since
33 // platform cookie parsing logic would require quite a bit of additional
34 // plumbing, and at least some platforms lack support for parsing Cookie,
35 // which is in a format slightly different from Set-Cookie and is normally
57 this._addCookie(kv, WebInspector.Cookie.Type.Request);
72 this._addCookie(kv, WebInspector.Cookie.Type.Response);
106 // cookie values, though.
109 console.log("Failed parsing cookie header before: " + this._input);
136 // specifying a value for a cookie with empty name.
137 this._lastCookie = keyValue.value ? new WebInspector.Cookie(keyValue.key, keyValue.value, type)
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
Cookie.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/Cookie.java $
32 package org.apache.http.cookie;
37 * HTTP "magic-cookie" represents a piece of state information
45 public interface Cookie {
62 * Returns the comment describing the purpose of this cookie, or
70 * If a user agent (web browser) presents this cookie to a user, the
71 * cookie's purpose will be described by the information at this URL.
76 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
86 * Returns <tt>false</tt> if the cookie should be discarded at the en
    [all...]
  /external/webkit/Source/WebCore/platform/
Cookie.h 37 struct Cookie {
38 Cookie(const String& name, const String& value, const String& domain,
63 static unsigned hash(Cookie key)
68 static bool equal(Cookie a, Cookie b)
77 template<> struct DefaultHash<WebCore::Cookie> {
  /frameworks/base/core/java/android/webkit/
CookieManager.java 79 // RFC2109 defines 4k as maximum size of a cookie
82 // RFC2109 defines 20 as max cookie count per domain. As we track with base
90 // max cookie count to limit RAM cookie takes less than 100k, it is based on
91 // average cookie entry size is less than 100 bytes
94 // max domain count to limit RAM cookie takes less than 100k,
97 private Map<String, ArrayList<Cookie>> mCookieMap = new LinkedHashMap
98 <String, ArrayList<Cookie>>(MAX_DOMAIN_COUNT, 0.75f, true);
117 * Package level class to be accessed by cookie sync manager
119 static class Cookie {
400 Cookie cookie = cookies.get(i); local
535 Cookie cookie = iter.next(); local
551 Cookie cookie = setIter.next(); local
776 Cookie cookie = iter.next(); local
834 Cookie cookie = iter.next(); local
974 Cookie cookie = null; local
    [all...]
  /prebuilt/common/http-client/
httpclient-4.1.1.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 169 milliseconds