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

12 3 4 5 6 7 8 91011>>

  /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-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...]
  /bootable/bootloader/legacy/libboot/
tags_cmdline.c 33 static void tag_cmdline(unsigned tag, void *data, unsigned bytes, void *cookie)
35 *((const char **) cookie) = data;
45 h.cookie = &cmdline;
tags_revision.c 33 static void tag_revision(unsigned tag, void *data, unsigned bytes, void *cookie)
36 memcpy(cookie, data, 4);
47 h.cookie = &n;
tags_serialno.c 33 static void tag_serialno(unsigned tag, void *data, unsigned bytes, void *cookie)
36 memcpy(cookie, data, 8);
46 h.cookie = sn;
  /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.
  /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));
  /bootable/bootloader/legacy/include/boot/
tags.h 37 void (*func)(unsigned type, void *data, unsigned bytes, void *cookie);
38 void *cookie; member in struct:tag_handler
  /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...]
  /system/core/include/cutils/
properties.h 47 int property_list(void (*propfn)(const char *key, const char *value, void *cookie), void *cookie);
  /frameworks/base/core/java/android/webkit/
CookieSyncManager.java 21 import android.webkit.CookieManager.Cookie;
27 * The CookieSyncManager is used to synchronize the browser cookie store
105 * @return A list of Cookie
107 ArrayList<Cookie> getCookiesForDomain(String domain) {
109 // persistent cookie. No sync needed.
111 return new ArrayList<Cookie>();
123 // persistent cookie.
136 // persistent cookie.
150 // persistent cookie.
164 // persistent cookie
198 Cookie cookie = iter.next(); local
    [all...]

Completed in 447 milliseconds

12 3 4 5 6 7 8 91011>>