|   /libcore/luni/src/main/java/java/net/ | 
| CookieStoreImpl.java  | 27  * An in-memory cookie store. 34     public synchronized void add(URI uri, HttpCookie cookie) { 35         if (cookie == null) { 36             throw new NullPointerException("cookie == null"); 45             cookies.remove(cookie); 47         cookies.add(cookie); 72                 HttpCookie cookie = i.next();  local  73                 if (cookie.hasExpired()) { 76                     result.add(cookie); 89                 HttpCookie cookie = i.next()  local  108  HttpCookie cookie = i.next();  local      [all...] | 
|   /external/webkit/Source/WebKit/efl/ewk/ | 
| ewk_cookies.cpp  | 45  * @return @c EINA_FALSE if it wasn't possible to create the cookie jar, 77  * Clears all the cookies from the cookie jar. 95  * Returns a list of cookies in the cookie jar. 97  * @return an @c Eina_List with all the cookies in the cookie jar. 109         SoupCookie* cookie = static_cast<SoupCookie*>(p->data);  local  111         c->name = strdup(cookie->name); 112         c->value = strdup(cookie->value); 113         c->domain = strdup(cookie->domain); 114         c->path = strdup(cookie->path); 115         c->expires = soup_date_to_time_t(cookie->expires)     [all...] | 
|   /external/apache-http/src/org/apache/http/impl/cookie/ | 
| RFC2965DomainAttributeHandler.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2965DomainAttributeHandler.java $ 32 package org.apache.http.impl.cookie; 36 import org.apache.http.cookie.ClientCookie; 37 import org.apache.http.cookie.Cookie; 38 import org.apache.http.cookie.CookieAttributeHandler; 39 import org.apache.http.cookie.CookieOrigin; 40 import org.apache.http.cookie.MalformedCookieException; 41 import org.apache.http.cookie.SetCookie; 44  * <tt>"Domain"</tt> cookie attribute handler for RFC 2965 cookie spec     [all...] | 
| NetscapeDomainHandler.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/NetscapeDomainHandler.java $ 31 package org.apache.http.impl.cookie; 36 import org.apache.http.cookie.Cookie; 37 import org.apache.http.cookie.CookieOrigin; 38 import org.apache.http.cookie.MalformedCookieException; 47     public void validate(final Cookie cookie, final CookieOrigin origin)  49         super.validate(cookie, origin); 50         // Perform Netscape Cookie draft specific validatio     [all...] | 
| CookieSpecBase.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/CookieSpecBase.java $ 32 package org.apache.http.impl.cookie; 40 import org.apache.http.cookie.Cookie; 41 import org.apache.http.cookie.CookieAttributeHandler; 42 import org.apache.http.cookie.CookieOrigin; 43 import org.apache.http.cookie.MalformedCookieException; 46  * Cookie management functions shared by all specification. 71     protected List<Cookie> parse(final HeaderElement[] elems, final CookieOrigin origin) 73         List<Cookie> cookies = new ArrayList<Cookie>(elems.length) 81  BasicClientCookie cookie = new BasicClientCookie(name, value);  local      [all...] | 
| RFC2965CommentUrlAttributeHandler.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2965CommentUrlAttributeHandler.java $ 32 package org.apache.http.impl.cookie; 34 import org.apache.http.cookie.Cookie; 35 import org.apache.http.cookie.CookieAttributeHandler; 36 import org.apache.http.cookie.CookieOrigin; 37 import org.apache.http.cookie.MalformedCookieException; 38 import org.apache.http.cookie.SetCookie; 39 import org.apache.http.cookie.SetCookie2; 42    * <tt>"CommantURL"</tt> cookie attribute handler for RFC 2965 cookie spec     [all...] | 
| RFC2965DiscardAttributeHandler.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2965DiscardAttributeHandler.java $ 32 package org.apache.http.impl.cookie; 34 import org.apache.http.cookie.Cookie; 35 import org.apache.http.cookie.CookieAttributeHandler; 36 import org.apache.http.cookie.CookieOrigin; 37 import org.apache.http.cookie.MalformedCookieException; 38 import org.apache.http.cookie.SetCookie; 39 import org.apache.http.cookie.SetCookie2; 42    * <tt>"Discard"</tt> cookie attribute handler for RFC 2965 cookie spec     [all...] | 
| BasicSecureHandler.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicSecureHandler.java $ 31 package org.apache.http.impl.cookie; 33 import org.apache.http.cookie.Cookie; 34 import org.apache.http.cookie.CookieOrigin; 35 import org.apache.http.cookie.MalformedCookieException; 36 import org.apache.http.cookie.SetCookie; 44     public void parse(final SetCookie cookie, final String value)  46         if (cookie == null) { 47             throw new IllegalArgumentException("Cookie may not be null")     [all...] | 
| RFC2109VersionHandler.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2109VersionHandler.java $ 31 package org.apache.http.impl.cookie; 33 import org.apache.http.cookie.Cookie; 34 import org.apache.http.cookie.CookieOrigin; 35 import org.apache.http.cookie.MalformedCookieException; 36 import org.apache.http.cookie.SetCookie; 44     public void parse(final SetCookie cookie, final String value)  46         if (cookie == null) { 47             throw new IllegalArgumentException("Cookie may not be null")     [all...] | 
| BasicDomainHandler.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicDomainHandler.java $ 31 package org.apache.http.impl.cookie; 33 import org.apache.http.cookie.Cookie; 34 import org.apache.http.cookie.CookieAttributeHandler; 35 import org.apache.http.cookie.CookieOrigin; 36 import org.apache.http.cookie.MalformedCookieException; 37 import org.apache.http.cookie.SetCookie; 45     public void parse(final SetCookie cookie, final String value)  47         if (cookie == null)      [all...] | 
| RFC2109DomainHandler.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2109DomainHandler.java $ 31 package org.apache.http.impl.cookie; 35 import org.apache.http.cookie.Cookie; 36 import org.apache.http.cookie.CookieAttributeHandler; 37 import org.apache.http.cookie.CookieOrigin; 38 import org.apache.http.cookie.MalformedCookieException; 39 import org.apache.http.cookie.SetCookie; 47     public void parse(final SetCookie cookie, final String value)  49         if (cookie == null)      [all...] | 
|   /external/apache-http/src/org/apache/http/impl/client/ | 
| BasicCookieStore.java  | 41 import org.apache.http.cookie.Cookie; 42 import org.apache.http.cookie.CookieIdentityComparator; 60     private final ArrayList<Cookie> cookies; 62     private final Comparator<Cookie> cookieComparator; 71         this.cookies = new ArrayList<Cookie>(); 76      * Adds an {@link Cookie HTTP cookie}, replacing any existing equivalent cookies. 77      * If the given cookie has already expired it will not be added, but existing  80      * @param cookie the {@link Cookie cookie} to be adde     [all...] | 
|   /external/chromium/webkit/glue/ | 
| webcookie.h  | 24   // Cookie name. 27   // Cookie value. 30   // Cookie domain. 33   // Cookie path. 36   // Cookie expires param if any. 39   // Cookie HTTPOnly param. 42   // Cookie secure param. 45   // Session cookie flag.
  | 
|   /external/webkit/LayoutTests/http/tests/cookies/script-tests/ | 
| simple-cookies-max-age.js  | 7 debug("Check that setting a simple cookie works."); 11 debug("Check setting a cookie that timed out.");
  | 
|   /external/apache-http/src/org/apache/http/cookie/ | 
| CookieSpec.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieSpec.java $ 32 package org.apache.http.cookie; 39  * Defines the cookie management specification. 40  * <p>Cookie management specification must define 42  *   <li> rules of parsing "Set-Cookie" header 44  *   <li>  formatting of "Cookie" header  56      * Returns version of the state management this cookie specification 64       * Parse the <tt>"Set-Cookie"</tt> Header into an array of Cookies. 67       * {@link Cookie}s</p>  71       * @param header the <tt>Set-Cookie</tt> received from the serve     [all...] | 
| SetCookie.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie.java $ 32 package org.apache.http.cookie; 44 public interface SetCookie extends Cookie { 49      * If a user agent (web browser) presents this cookie to a user, the 50      * cookie's purpose will be described using this comment. 64      * @param expiryDate the {@link Date} after which this cookie is no longer valid. 66      * @see Cookie#getExpiryDate 76      * @see Cookie#getDomain 85      * @see Cookie#getPath 91      * Sets the secure attribute of the cookie     [all...] | 
|   /external/apache-http/src/org/apache/http/client/protocol/ | 
| ResponseProcessCookies.java  | 45 import org.apache.http.cookie.Cookie; 46 import org.apache.http.cookie.CookieOrigin; 47 import org.apache.http.cookie.CookieSpec; 48 import org.apache.http.cookie.MalformedCookieException; 49 import org.apache.http.cookie.SM; 79         // Obtain cookie store 83             this.log.info("Cookie store not available in HTTP context"); 103         // see if the cookie spec supports cookie versioning     [all...] | 
|   /external/chromium/base/win/ | 
| pe_image.h  | 27   // cookie is the value passed to the enumerate method. 32                                        PVOID cookie); 36   // contains the dll and symbol to forward this export to. cookie is the value 41                                       LPCSTR forward, PVOID cookie); 45   // this block. cookie is the value passed to the enumerate method. 49                                            PIMAGE_THUNK_DATA iat, PVOID cookie); 52   // module is the dll that exports this symbol. cookie is the value passed to 57                                       PIMAGE_THUNK_DATA iat, PVOID cookie); 60   // module is the dll that exports this block of symbols. cookie is the value 70                                                 PVOID cookie);     [all...] | 
|   /bootable/bootloader/legacy/libc/ | 
| xprintf.c  | 42 static void xputs(const char *s, void (*xputc)(unsigned n, void *cookie), void *cookie) 45         xputc(*s++, cookie); 50                void (*xputc)(unsigned n, void *cookie), 51                void *cookie) 64                 xputc(n, cookie); 70                 xputc(hex2asc(n >> 12), cookie); 71                 xputc(hex2asc(n >> 8), cookie); 72                 xputc(hex2asc(n >> 4), cookie); 73                 xputc(hex2asc(n >> 0), cookie);     [all...] | 
|   /external/chromium/chrome/browser/resources/options/ | 
| cookies_view.css  | 53 list.cookie-list .deletable-item { 58 list.cookie-list .deletable-item > :first-child { 63 list.cookie-list > .deletable-item > .close-button { 69 html[dir=rtl] list.cookie-list > .deletable-item > .close-button { 76 .cookie-site { 86 list.cookie-list > .deletable-item[selected] .cookie-site { 90 .cookie-data { 94 list.cookie-list > .deletable-item[selected] .cookie-data      [all...] | 
|   /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...] | 
| CookieSyncManager.java  | 21 import android.webkit.CookieManager.Cookie; 27  * The CookieSyncManager is used to synchronize the browser cookie store 107      * @return A list of Cookie 109     ArrayList<Cookie> getCookiesForDomain(String domain) { 111         // persistent cookie. No sync needed. 113             return new ArrayList<Cookie>(); 125         // persistent cookie. 138         // persistent cookie. 152         // persistent cookie. 166         // persistent cookie 204  Cookie cookie = iter.next();  local      [all...] | 
|   /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ | 
| CookiePolicyTest.java  | 35         HttpCookie cookie = new HttpCookie("Harmony_6", "ongoing");  local  38             CookiePolicy.ACCEPT_ORIGINAL_SERVER.shouldAccept(null, cookie); 59         boolean accept = CookiePolicy.ACCEPT_ALL.shouldAccept(null, cookie); 69         accept = CookiePolicy.ACCEPT_NONE.shouldAccept(null, cookie); 79         accept = CookiePolicy.ACCEPT_ORIGINAL_SERVER.shouldAccept(uri, cookie); 82         cookie.setDomain(".b.c"); 84                 "schema://a.b.c"), cookie); 87         cookie.setDomain(".b.c"); 89                 "s://a.b.c.d"), cookie); 92         cookie.setDomain("b.c")     [all...] | 
|   /dalvik/vm/test/ | 
| TestIndirectRefTable.cpp  | 42     const u4 cookie = IRT_FIRST_SEGMENT;  local  50     if (irt.remove(cookie, iref0)) { 59     iref0 = irt.add(cookie, obj0); 60     iref1 = irt.add(cookie, obj1); 61     iref2 = irt.add(cookie, obj2); 78     if (!irt.remove(cookie, iref0) || 79             !irt.remove(cookie, iref1) || 80             !irt.remove(cookie, iref2)) 102     iref0 = irt.add(cookie, obj0); 103     iref1 = irt.add(cookie, obj1)     [all...] | 
|   /external/chromium/chrome/browser/ui/cocoa/content_settings/ | 
| cookie_details.h  | 18 // cookie details. 20   // Represents grouping of cookie data, used in the cookie tree. 23   // Detailed information about a cookie, used both in the cookie 24   // tree and the cookie prompt. 28   // display in the cookie tree. 32   // display in the cookie tree. 36   // cookie tree. 40   // cookie tree     [all...] |