/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...] |
/external/apache-http/src/org/apache/http/cookie/ |
Cookie.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/Cookie.java $ 32 package org.apache.http.cookie; 37 * HTTP "magic-cookie" represents a piece of state information 45 public interface Cookie { 62 * Returns the comment describing the purpose of this cookie, or 70 * If a user agent (web browser) presents this cookie to a user, the 71 * cookie's purpose will be described by the information at this URL. 76 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt> 86 * Returns <tt>false</tt> if the cookie should be discarded at the en [all...] |
MalformedCookieException.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/MalformedCookieException.java $ 32 package org.apache.http.cookie; 37 * Signals that a cookie is in some way invalid or illegal in a given
|
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...] |
ClientCookie.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/ClientCookie.java $ 32 package org.apache.http.cookie; 35 * ClientCookie extends the standard {@link Cookie} interface with 37 * original cookie attributes exactly as they were specified by the 38 * origin server. This is important for generating the <tt>Cookie</tt> 39 * header because some cookie specifications require that the 40 * <tt>Cookie</tt> header should include certain attributes only if 41 * they were specified in the <tt>Set-Cookie</tt> header. 47 public interface ClientCookie extends Cookie {
|
/external/chromium/chrome/browser/printing/ |
print_job_worker_owner.h | 37 // Cookie uniquely identifying the PrintedDocument and/or loaded settings. 38 virtual int cookie() const = 0;
|
print_view_manager.h | 63 void OnDidGetPrintedPagesCount(int cookie, int number_pages); 112 bool OpportunisticallyCreatePrintJob(int cookie);
|
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
saslcookiemechanism.h | 43 const std::string & cookie, 47 cookie_(cookie), 52 const std::string & cookie) 55 cookie_(cookie),
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_ec.h | 21 unsigned long cookie; member in struct:sockaddr_ec
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/neteconet/ |
ec.h | 39 unsigned long cookie; member in struct:sockaddr_ec
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/ |
nlm_prot.x | 47 netobj cookie; 52 netobj cookie; 66 netobj cookie; 75 netobj cookie; 82 netobj cookie; 88 netobj cookie; 122 netobj cookie; 128 netobj cookie;
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
gmon_out.h | 33 #define GMON_MAGIC "gmon" /* magic cookie */ 48 char cookie[4]; member in struct:gmon_hdr
|
/external/apache-http/src/org/apache/http/client/protocol/ |
RequestAddCookies.java | 52 import org.apache.http.cookie.Cookie; 53 import org.apache.http.cookie.CookieOrigin; 54 import org.apache.http.cookie.CookieSpec; 55 import org.apache.http.cookie.CookieSpecRegistry; 87 // Obtain cookie store 91 this.log.info("Cookie store not available in HTTP context"); 95 // Obtain the registry of cookie specs 146 // Get an instance of the selected cookie policy 149 List<Cookie> cookies = new ArrayList<Cookie>(cookieStore.getCookies()) [all...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
CookieManagerTest.java | 129 String cookie = mCookieManager.getCookie(url); local 130 assertNotNull(cookie); 131 // 'count' value of the returned cookie is 0 133 Matcher m = pat.matcher(cookie); 139 assertEquals("count=0", mWebView.getTitle()); // outgoing cookie 141 cookie = mCookieManager.getCookie(url); 142 assertNotNull(cookie); 143 m = pat.matcher(cookie); 150 assertEquals("count=41", mWebView.getTitle()); // outgoing cookie 152 cookie = mCookieManager.getCookie(url) 184 String cookie = "name=test"; local 296 String cookie = mCookieManager.getCookie(uri); local [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
CookiesTable.js | 95 return node ? node.cookie : null; 181 _createGridNode: function(cookie) 184 data[0] = cookie.name; 185 data[1] = cookie.value; 186 data[2] = cookie.domain || ""; 187 data[3] = cookie.path || ""; 188 data[4] = cookie.type === WebInspector.Cookie.Type.Request ? "" : 189 (cookie.session ? WebInspector.UIString("Session") : new Date(cookie.expires).toGMTString()) [all...] |
HAREntry.js | 160 _buildCookie: function(cookie) 164 name: cookie.name, 165 value: cookie.value, 166 path: cookie.path, 167 domain: cookie.domain, 168 expires: cookie.expires(new Date(this._resource.startTime * 1000)), 169 httpOnly: cookie.httpOnly, 170 secure: cookie.secure
|
/libcore/luni/src/test/java/libcore/java/net/ |
CookiesTest.java | 53 server.enqueue(new MockResponse().addHeader("Set-Cookie: a=android; " 62 HttpCookie cookie = cookies.get(0); local 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(".local", cookie.getDomain()); 69 assertTrue(cookie.getMaxAge() > 100000000000L); 70 assertEquals("/path", cookie.getPath()) 92 HttpCookie cookie = cookies.get(0); local 125 HttpCookie cookie = cookies.get(0); local 159 HttpCookie cookie = cookies.get(0); local 283 HttpCookie cookie = new HttpCookie("c", "cookie"); local 425 HttpCookie cookie = new HttpCookie("Foo", "foo"); local [all...] |
/external/chromium/chrome/browser/automation/ |
automation_util.cc | 64 const net::CookieMonster::CanonicalCookie& cookie, 73 url, cookie.Name(), cookie.Value(), original_domain, 74 cookie.Path(), cookie.ExpiryDate(), cookie.IsSecure(), 75 cookie.IsHttpOnly()); 213 const net::CookieMonster::CanonicalCookie& cookie = cookie_list[i]; local 215 cookie_dict->SetString("name", cookie.Name()); 216 cookie_dict->SetString("value", cookie.Value()) [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 103 public List<Cookie> parse(final Header header, final CookieOrigin origin) 164 Cookie cookie = cookies.get(i); local [all...] |
NetscapeDraftSpec.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/NetscapeDraftSpec.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.MalformedCookieException; 44 import org.apache.http.cookie.SM; 50 * Netscape cookie draft compliant cookie polic 158 Cookie cookie = cookies.get(i); local [all...] |
BasicClientCookie2.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicClientCookie2.java $ 32 package org.apache.http.impl.cookie; 36 import org.apache.http.cookie.SetCookie2; 39 * HTTP "magic-cookie" represents a piece of state information
|
/external/webkit/LayoutTests/http/tests/cookies/resources/ |
cookies-test-pre.js | 155 // We do not set the cookie right away as it is forbidden by the XHR spec. 157 function setCookies(cookie) 162 xhr.setRequestHeader("SET_COOKIE", cookie); 166 cookies.push(cookie); 175 // Normalize a cookie string 176 function normalizeCookie(cookie) 178 // Split the cookie string, sort it and then put it back together. 179 return cookie.split('; ').sort().join('; '); 188 var cookie = xhr.getResponseHeader("HTTP_COOKIE") == null ? '"null"' : xhr.getResponseHeader("HTTP_COOKIE"); 190 // Normalize the cookie strings [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
httpread.h | 77 void (*cb)(struct httpread *handle, void *cookie, 79 void *cookie, /* pass to callback */
|
/external/wpa_supplicant_8/src/wps/ |
httpread.h | 77 void (*cb)(struct httpread *handle, void *cookie, 79 void *cookie, /* pass to callback */
|
/bootable/bootloader/legacy/libboot/ |
tags_partition.c | 33 static void ptn_importer(unsigned tag, void *data, unsigned bytes, void *cookie)
|