Searched defs:cookie (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/net/
H A DCookiePolicy.java34 public boolean shouldAccept(URI uri, HttpCookie cookie) {
43 public boolean shouldAccept(URI uri, HttpCookie cookie) {
52 public boolean shouldAccept(URI uri, HttpCookie cookie) {
53 return HttpCookie.domainMatches(cookie.getDomain(), uri.getHost());
58 * This method is used to determine whether or not the specified cookie
63 * @param cookie
65 * @return true if this cookie should be accepted; false otherwise
67 boolean shouldAccept(URI uri, HttpCookie cookie); argument
H A DCookieStore.java33 * 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 t
50 add(URI uri, HttpCookie cookie) argument
95 remove(URI uri, HttpCookie cookie) argument
[all...]
H A DCookieStoreImpl.java27 * An in-memory cookie store.
34 public synchronized void add(URI uri, HttpCookie cookie) { argument
35 if (cookie == null) {
36 throw new NullPointerException("cookie == null");
45 cookies.remove(cookie);
47 cookies.add(cookie);
72 HttpCookie cookie = i.next();
73 if (cookie.hasExpired()) {
76 result.add(cookie);
89 HttpCookie cookie
125 remove(URI uri, HttpCookie cookie) argument
[all...]
H A DHttpCookie.java31 * session with an HTTP server. This class parses cookie headers for all three
32 * commonly used HTTP cookie specifications:
35 * <li>The Netscape cookie spec is officially obsolete but widely used in
36 * practice. Each cookie contains one key-value pair and the following
45 * the Netscape cookie spec. It replaces the {@code Expires} timestamp
131 * Returns true if {@code cookie} should be sent to or accepted from {@code uri} with respect
132 * to the cookie's path. Cookies match by directory prefix: URI "/foo" matches cookies "/foo",
135 static boolean pathMatches(HttpCookie cookie, URI uri) { argument
137 String cookiePath = matchablePath(cookie.getPath());
142 * Returns true if {@code cookie} shoul
145 secureMatches(HttpCookie cookie, URI uri) argument
153 portMatches(HttpCookie cookie, URI uri) argument
315 setAttribute(HttpCookie cookie, String name, String value) argument
[all...]
/libcore/dalvik/src/main/java/dalvik/system/
H A DDexFile.java83 //System.out.println("DEX FILE cookie is " + mCookie);
114 //System.out.println("DEX FILE cookie is " + mCookie);
218 private static Class defineClass(String name, ClassLoader loader, int cookie, argument
222 result = defineClassNative(name, loader, cookie);
235 private static native Class defineClassNative(String name, ClassLoader loader, int cookie) argument
270 native private static String[] getClassNameList(int cookie); argument
291 * Open a DEX file. The value returned is a magic VM cookie. On
307 native private static void closeDexFile(int cookie); argument
/libcore/luni/src/test/java/libcore/java/net/
H A DCookiesTest.java62 HttpCookie cookie = cookies.get(0);
63 assertEquals("a", cookie.getName());
64 assertEquals("android", cookie.getValue());
65 assertEquals(null, cookie.getComment());
66 assertEquals(null, cookie.getCommentURL());
67 assertEquals(false, cookie.getDiscard());
68 assertEquals(server.getCookieDomain(), cookie.getDomain());
69 assertTrue(cookie.getMaxAge() > 100000000000L);
70 assertEquals("/path", cookie.getPath());
71 assertEquals(true, cookie
577 add(URI uri, HttpCookie cookie) argument
602 remove(URI uri, HttpCookie cookie) argument
[all...]

Completed in 101 milliseconds