|   /external/webkit/Source/WebCore/inspector/ | 
| InspectorPageAgent.cpp  | 38 #include "Cookie.h" 130 static PassRefPtr<InspectorObject> buildObjectForCookie(const Cookie& cookie) 133     value->setString("name", cookie.name); 134     value->setString("value", cookie.value); 135     value->setString("domain", cookie.domain); 136     value->setString("path", cookie.path); 137     value->setNumber("expires", cookie.expires); 138     value->setNumber("size", (cookie.name.length() + cookie.value.length()))     [all...] | 
|   /external/apache-http/src/org/apache/http/cookie/ | 
| 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 {
  | 
| 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";
  | 
|   /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-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ | 
| CookieManagerTest.java  | 113         // cookie-key | (content, URI)... 115                 { "Set-cookie",  116                     "Set-cookie:PREF=test;path=/;domain=.b.c;", "http://a.b.c/",  117                     "Set-cookie:PREF1=test2;path=/;domain=.beg.com;", "http://a.b.c/"}, 122                 { "Set-cookie",  137         // requires path of cookie is the prefix of uri 138         // domain of cookie must match that of uri 150         List<String> list = map.get("Cookie"); 153         // requires path of cookie is the prefix of uri 155         list = map.get("Cookie");     [all...] | 
|   /external/webkit/Source/WebCore/platform/ | 
| Cookie.h  | 37     struct Cookie { 38         Cookie(const String& name, const String& value, const String& domain, 63         static unsigned hash(Cookie key) 68         static bool equal(Cookie a, Cookie b) 77     template<> struct DefaultHash<WebCore::Cookie> {
  | 
|   /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...] | 
| 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; 49     public void parse(final SetCookie cookie, final String value)  51         if (cookie == null) { 52             throw new IllegalArgumentException("Cookie may not be null"); 58             cookie.setExpiryDate(DateUtils.parseDate(value, this.datepatterns));
  | 
| BasicMaxAgeHandler.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicMaxAgeHandler.java $ 31 package org.apache.http.impl.cookie; 35 import org.apache.http.cookie.MalformedCookieException; 36 import org.apache.http.cookie.SetCookie; 44     public void parse(final SetCookie cookie, final String value)  46         if (cookie == null) { 47             throw new IllegalArgumentException("Cookie may not be null"); 63         cookie.setExpiryDate(new Date(System.currentTimeMillis() + age * 1000L));
  | 
| BrowserCompatSpecFactory.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BrowserCompatSpecFactory.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;
  | 
| NetscapeDraftSpecFactory.java  | 2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/NetscapeDraftSpecFactory.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;
  | 
|   /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/webkit/Tools/iExploder/iexploder-1.7.2/src/headers/ | 
| mozilla  | 22 Cookie 58 Set-Cookie
  | 
|   /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;
  | 
|   /external/chromium/chrome/browser/importer/ | 
| toolbar_importer_utils.h  | 12 // not the user currently has their GAIA cookie.  This is done by the function
  | 
|   /external/chromium/net/base/ | 
| static_cookie_policy.h  | 18 // The StaticCookiePolicy class implements a static cookie policy that supports 29     // Do not perform any cookie blocking. 54   // Consults the user's third-party cookie blocking preferences to determine 59   // Consults the user's third-party cookie blocking preferences to determine
  | 
| cookie_store.h  | 30   // Sets a single cookie.  Expects a cookie line, like "a=1; domain=b.com". 36   // that big or do we need multiple Cookie: headers? 37   // Simple interface, gets a cookie string "a=b; c=d" for the given URL. 42   // Deletes the passed in cookie for the specified URL. 53   // Sets a cookie for the given URL using default options. 59   // Sets a vector of response cookie values for the same URL.
  | 
|   /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...] | 
|   /external/chromium/base/win/ | 
| pe_image_unittest.cc  | 21                      PVOID cookie) { 22   int* count = reinterpret_cast<int*>(cookie); 34                      PVOID cookie) { 35   int* count = reinterpret_cast<int*>(cookie); 45                        PVOID cookie) { 46   int* count = reinterpret_cast<int*>(cookie); 55                     PVOID cookie) { 56   int* count = reinterpret_cast<int*>(cookie); 66                           PVOID cookie) { 67   int* count = reinterpret_cast<int*>(cookie);     [all...] | 
|   /external/chromium/chrome/browser/ui/webui/ | 
| cookies_tree_model_util.cc  | 80       dict->SetString(kKeyType, "cookie"); 83       const net::CookieMonster::CanonicalCookie& cookie =  local  84           *node.GetDetailedInfo().cookie; 86       dict->SetString(kKeyName, cookie.Name()); 87       dict->SetString(kKeyContent, cookie.Value()); 88       dict->SetString(kKeyDomain, cookie.Domain()); 89       dict->SetString(kKeyPath, cookie.Path()); 90       dict->SetString(kKeySendFor, cookie.IsSecure() ? 93       std::string accessible = cookie.IsHttpOnly() ? 98           base::TimeFormatFriendlyDateAndTime(cookie.CreationDate())))     [all...] | 
|   /external/webkit/LayoutTests/http/tests/cookies/resources/ | 
| third-party-cookie-relaxing-iframe.html  | 27     alert("Test stage " + stage++ + " document.cookie is: " + document.cookie); 33     var baseurl = "http://localhost:8000/cookies/resources/cookie-utility.php";
  | 
|   /frameworks/base/core/java/android/view/textservice/ | 
| SuggestionsInfo.java  | 76      * @param cookie the cookie of the input TextInfo 77      * @param sequence the cookie of the input TextInfo 80             int suggestionsAttributes, String[] suggestions, int cookie, int sequence) { 89         mCookie = cookie; 117      * Set the cookie and the sequence of SuggestionsInfo which are set to TextInfo from a client 119      * @param cookie the cookie of an input TextInfo 120      * @param sequence the cookie of an input TextInfo 122     public void setCookieAndSequence(int cookie, int sequence)      [all...] | 
| TextInfo.java  | 42      * @param cookie the cookie for this TextInfo 45     public TextInfo(String text, int cookie, int sequence) { 50         mCookie = cookie; 81      * @return the cookie of TextInfo
  | 
|   /external/kernel-headers/original/linux/ | 
| dmaengine.h  | 47  * typedef dma_cookie_t - an opaque DMA cookie 49  * if dma_cookie_t is >0 it's a DMA request cookie, <0 it's an error code 53 #define dma_submit_error(cookie) ((cookie) < 0 ? 1 : 0) 85  * @cookie: last cookie value returned to client 98 	dma_cookie_t cookie;  member in struct:dma_chan  199 			dma_cookie_t cookie, dma_cookie_t *last, 301  * @cookie: transaction identifier to check status of 302  * @last: returns last completed cookie, can be NUL     [all...] | 
|   /external/chromium/chrome/browser/ui/views/ | 
| cookie_info_view.h  | 40 //  Responsible for displaying a tabular grid of Cookie information. 52   // Update the display from the specified cookie string. 55   // Clears the cookie display to indicate that no or multiple cookies are 59   // Enables or disables the cookie property text fields. 111   // expires_value_combobox_ instead of expires_value_field_. The cookie's 113   // CookiesPromptView (alert before cookie is set), in all other cases we 114   // don't let user directly change cookie setting.
  |