HomeSort by relevance Sort by last modified time
    Searched refs:cookie (Results 26 - 50 of 887) sorted by null

12 3 4 5 6 7 8 91011>>

  /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...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BestMatchSpec.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BestMatchSpec.java $
32 package org.apache.http.impl.cookie;
38 import org.apache.http.cookie.Cookie;
39 import org.apache.http.cookie.CookieOrigin;
40 import org.apache.http.cookie.CookieSpec;
41 import org.apache.http.cookie.MalformedCookieException;
44 * 'Meta' cookie specification that selects a cookie policy depending
45 * on the format of the cookie(s
    [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...]
BestMatchSpecFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BestMatchSpecFactory.java $
32 package org.apache.http.impl.cookie;
34 import org.apache.http.cookie.CookieSpec;
35 import org.apache.http.cookie.CookieSpecFactory;
36 import org.apache.http.cookie.params.CookieSpecPNames;
DateParseException.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/DateParseException.java $
32 package org.apache.http.impl.cookie;
RFC2109SpecFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2109SpecFactory.java $
32 package org.apache.http.impl.cookie;
34 import org.apache.http.cookie.CookieSpec;
35 import org.apache.http.cookie.CookieSpecFactory;
36 import org.apache.http.cookie.params.CookieSpecPNames;
RFC2965SpecFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2965SpecFactory.java $
32 package org.apache.http.impl.cookie;
34 import org.apache.http.cookie.CookieSpec;
35 import org.apache.http.cookie.CookieSpecFactory;
36 import org.apache.http.cookie.params.CookieSpecPNames;
RFC2965Spec.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2965Spec.java $
31 package org.apache.http.impl.cookie;
42 import org.apache.http.cookie.ClientCookie;
43 import org.apache.http.cookie.Cookie;
44 import org.apache.http.cookie.CookieAttributeHandler;
45 import org.apache.http.cookie.CookieOrigin;
46 import org.apache.http.cookie.MalformedCookieException;
47 import org.apache.http.cookie.SM;
52 * <p>RFC 2965 specific cookie management functions.</p
80 BasicClientCookie cookie = new BasicClientCookie(name, value); local
88 BasicClientCookie2 cookie = new BasicClientCookie2(name, value); local
118 BasicClientCookie cookie; local
    [all...]
RFC2109Spec.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2109Spec.java $
32 package org.apache.http.impl.cookie;
40 import org.apache.http.cookie.ClientCookie;
41 import org.apache.http.cookie.Cookie;
42 import org.apache.http.cookie.CookieOrigin;
43 import org.apache.http.cookie.CookiePathComparator;
44 import org.apache.http.cookie.MalformedCookieException;
45 import org.apache.http.cookie.SM;
50 * RFC 2109 compliant cookie polic
165 Cookie cookie = cooky; 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...]
  /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/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...]
CookieSpecFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieSpecFactory.java $
32 package org.apache.http.cookie;
SM.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SM.java $
32 package org.apache.http.cookie;
43 public static final String COOKIE = "Cookie";
45 public static final String SET_COOKIE = "Set-Cookie";
SetCookie2.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie2.java $
32 package org.apache.http.cookie;
45 * If a user agent (web browser) presents this cookie to a user, the
46 * cookie's purpose will be described by the information at this URL.
51 * Sets the Port attribute. It restricts the ports to which a cookie
52 * may be returned in a Cookie request header.
  /external/chromium/net/base/
cookie_monster_store_test.h 27 const CookieMonster::CanonicalCookie& cookie)
29 cookie(cookie) {}
32 CookieMonster::CanonicalCookie cookie; member in struct:net::CookieStoreCommand
57 virtual void AddCookie(const CookieMonster::CanonicalCookie& cookie);
60 const CookieMonster::CanonicalCookie& cookie);
63 const CookieMonster::CanonicalCookie& cookie);
93 const CookieMonster::CanonicalCookie& cookie,
112 // Just act like a backing database. Keep cookie information from
124 const CookieMonster::CanonicalCookie& cookie);
    [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...]
  /libcore/luni/src/main/java/java/net/
CookieManager.java 29 * CookiePolicy. The former is in charge of cookie storage and the latter makes
32 * CookieHandler is in the center of cookie management. User can make use of
36 * some cookies into a cookie store. Three built-in CookiePolicy is defined:
38 * the policy by implementing CookiePolicy. Any accepted HTTP cookie is stored
44 * There are many ways to customize user's own HTTP cookie management:
60 private static final String VERSION_ZERO_HEADER = "Set-cookie";
65 * Constructs a new cookie manager.
76 * Constructs a new cookie manager using a specified cookie store and a
77 * cookie policy
    [all...]
CookieStore.java 33 * Saves a HTTP cookie to this store. This is called for every incoming HTTP
36 * A cookie may or may not has an associated URI. If not, the cookie's
39 * cookie, the given URI will indicate where this cookie comes from.
41 * If a cookie corresponding to the given URI already exists, then it is
45 * the uri associated with the specified cookie. A null value
46 * indicates the cookie is not associated with a URI
47 * @param cookie
48 * the cookie to be store
    [all...]
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...]
  /bionic/libc/stdio/
stdio.c 44 __sread(void *cookie, char *buf, int n)
46 FILE *fp = cookie;
59 __swrite(void *cookie, const char *buf, int n)
61 FILE *fp = cookie;
70 __sseek(void *cookie, fpos_t offset, int whence)
72 FILE *fp = cookie;
86 __sclose(void *cookie)
88 return (close(((FILE *)cookie)->_file));
  /external/apache-http/src/org/apache/http/client/
CookieStore.java 36 import org.apache.http.cookie.Cookie;
39 * Abstract cookie store.
48 * Adds an {@link Cookie HTTP cookie}, replacing any existing equivalent cookies.
49 * If the given cookie has already expired it will not be added, but existing
52 * @param cookie the {@link Cookie cookie} to be added
54 void addCookie(Cookie cookie)
    [all...]
  /external/chromium/chrome/browser/net/
chrome_cookie_notification_details.h 16 : cookie(cookie_copy),
21 const net::CookieMonster::CanonicalCookie* cookie; member in struct:ChromeCookieDetails
  /system/core/include/cutils/
properties.h 47 int property_list(void (*propfn)(const char *key, const char *value, void *cookie), void *cookie);

Completed in 315 milliseconds

12 3 4 5 6 7 8 91011>>