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

12 3 4 5 6 7 8 91011>>

  /external/strace/tests-mx32/
nlattr_nlmsgerr.c 76 static const uint8_t cookie[] = { 0xab, 0xfe }; local
80 sizeof(cookie), cookie, sizeof(cookie),
81 printf("[%u, %u]", cookie[0], cookie[1]);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
CookiePolicyTest.java 34 HttpCookie cookie = new HttpCookie("Harmony_6", "ongoing"); local
39 accept = CookiePolicy.ACCEPT_ALL.shouldAccept(null, cookie);
49 accept = CookiePolicy.ACCEPT_NONE.shouldAccept(null, cookie);
59 accept = CookiePolicy.ACCEPT_ORIGINAL_SERVER.shouldAccept(uri, cookie);
62 cookie.setDomain(".b.c");
64 "schema://a.b.c"), cookie);
67 cookie.setDomain(".b.c");
69 "s://a.b.c.d"), cookie);
72 cookie.setDomain("b.c");
74 "s://a.b.c.d"), cookie);
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BrowserCompatSpec.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BrowserCompatSpec.java $
32 package org.apache.http.impl.cookie;
41 import org.apache.http.cookie.ClientCookie;
42 import org.apache.http.cookie.Cookie;
43 import org.apache.http.cookie.CookieOrigin;
44 import org.apache.http.cookie.MalformedCookieException;
45 import org.apache.http.cookie.SM;
51 * Cookie specification that strives to closely mimic (mis)behavior of
108 public List<Cookie> parse(final Header header, final CookieOrigin origin)
169 Cookie cookie = cookies.get(i); local
    [all...]
AbstractCookieSpec.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/AbstractCookieSpec.java $
32 package org.apache.http.impl.cookie;
38 import org.apache.http.cookie.CookieAttributeHandler;
39 import org.apache.http.cookie.CookieSpec;
42 * Abstract cookie specification which can delegate the job of parsing,
43 * validation or matching cookie attributes to a number of arbitrary
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;
51 public void parse(final SetCookie cookie, final String value)
53 if (cookie == null)
    [all...]
BasicExpiresHandler.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicExpiresHandler.java $
31 package org.apache.http.impl.cookie;
33 import org.apache.http.cookie.MalformedCookieException;
34 import org.apache.http.cookie.SetCookie;
55 public void parse(final SetCookie cookie, final String value)
57 if (cookie == null) {
58 throw new IllegalArgumentException("Cookie may not be null");
64 cookie.setExpiryDate(DateUtils.parseDate(value, this.datepatterns));
BasicPathHandler.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicPathHandler.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;
51 public void parse(final SetCookie cookie, String value)
53 if (cookie == null)
    [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;
53 public void validate(final Cookie cookie, final CookieOrigin origin)
55 super.validate(cookie, origin);
56 // Perform Netscape Cookie draft specific validatio
    [all...]
NetscapeDraftHeaderParser.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/NetscapeDraftHeaderParser.java $
32 package org.apache.http.impl.cookie;
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;
53 public void parse(final SetCookie cookie, final String value)
55 if (cookie == 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;
50 public void parse(final SetCookie cookie, final String value)
52 if (cookie == null) {
53 throw new IllegalArgumentException("Cookie may not be null")
    [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...]
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...]
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
85 BasicClientCookie cookie = new BasicClientCookie(name, value); local
93 BasicClientCookie2 cookie = new BasicClientCookie2(name, value); local
123 BasicClientCookie cookie; local
    [all...]
RFC2965VersionAttributeHandler.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2965VersionAttributeHandler.java $
32 package org.apache.http.impl.cookie;
34 import org.apache.http.cookie.ClientCookie;
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;
40 import org.apache.http.cookie.SetCookie2
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
CookiePathComparator.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookiePathComparator.java $
32 package org.apache.http.cookie;
38 * This cookie comparator ensures that multiple cookies satisfying
39 * a common criteria are ordered in the <tt>Cookie</tt> header such
56 public class CookiePathComparator implements Serializable, Comparator<Cookie> {
60 private String normalizePath(final Cookie cookie) {
61 String path = cookie.getPath();
71 public int compare(final Cookie c1, final Cookie c2)
    [all...]
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
61 * Returns version of the state management this cookie specification
69 * Parse the <tt>"Set-Cookie"</tt> Header into an array of Cookies.
72 * {@link Cookie}s</p>
76 * @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;
49 public interface SetCookie extends Cookie {
54 * If a user agent (web browser) presents this cookie to a user, the
55 * cookie's purpose will be described using this comment.
69 * @param expiryDate the {@link Date} after which this cookie is no longer valid.
71 * @see Cookie#getExpiryDate
81 * @see Cookie#getDomain
90 * @see Cookie#getPath
96 * Sets the secure attribute of the cookie
    [all...]
  /external/apache-http/src/org/apache/http/cookie/params/
CookieSpecParamBean.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/params/CookieSpecParamBean.java $
32 package org.apache.http.cookie.params;
  /external/compiler-rt/test/msan/Linux/
fopencookie.cc 16 static ssize_t cookie_read(void *cookie, char *buf, size_t size) {
17 assert((uintptr_t)cookie == kMagicCookie);
22 static ssize_t cookie_write(void *cookie, const char *buf, size_t size) {
23 assert((uintptr_t)cookie == kMagicCookie);
28 static int cookie_seek(void *cookie, off64_t *offset, int whence) {
29 assert((uintptr_t)cookie == kMagicCookie);
34 static int cookie_close(void *cookie) {
35 assert((uintptr_t)cookie == kMagicCookie);
49 void *cookie = (void *)kMagicCookie; local
50 FILE *f = fopencookie(cookie, "rw"
    [all...]
  /frameworks/base/libs/androidfw/tests/
BenchmarkHelpers.cpp 29 if (!assetmanager.addAssetPath(String8(path.c_str()), nullptr /* cookie */,
80 ApkAssetsCookie cookie = assetmanager.GetResource( local
82 assetmanager.ResolveReference(cookie, &value, &selected_config, &flags, &last_id);
  /packages/experimental/InstantCookieApp/src/test/instant/cookie/
CookieTest.java 17 package test.instant.cookie;
40 // The max cookie size is greater than zero
43 // Initially there is no cookie
44 byte[] cookie = pm.getInstantAppCookie();
45 assertTrue(cookie != null && cookie.length == 0);
47 // Setting a cookie below max size should work
50 // // Setting a cookie above max size should not work
54 // // Ensure cookie not modified
62 // // Set a cookie to later check when reinstalled as instant ap
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
hidsdi.h 37 PVOID cookie; member in struct:_HIDD_CONFIGURATION
  /system/chre/core/include/chre/core/
timer_pool.h 47 * Requests a timer for a nanoapp given a cookie to pass to the nanoapp when
52 * @param cookie A cookie to pass to the app when the timer elapses.
58 const void *cookie, bool oneShot);
95 //! The cookie pointer to be passed as an event to the requesting nanoapp.
96 const void *cookie; member in struct:chre::TimerPool::TimerRequest

Completed in 261 milliseconds

12 3 4 5 6 7 8 91011>>