HomeSort by relevance Sort by last modified time
    Searched refs:cookie (Results 76 - 100 of 928) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
KexParameters.java 15 public byte[] cookie; field in class:KexParameters
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_ec.h 21 unsigned long cookie; member in struct:sockaddr_ec
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/neteconet/
ec.h 39 unsigned long cookie; member in struct:sockaddr_ec
  /prebuilts/gcc/linux-x86/host/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;
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_ec.h 21 unsigned long cookie; member in struct:sockaddr_ec
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/neteconet/
ec.h 39 unsigned long cookie; member in struct:sockaddr_ec
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
gmon_out.h 33 #define GMON_MAGIC "gmon" /* magic cookie */
48 char cookie[4]; member in struct:gmon_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_ec.h 21 unsigned long cookie; member in struct:sockaddr_ec
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/neteconet/
ec.h 39 unsigned long cookie; member in struct:sockaddr_ec
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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 82 String cookie = mCookieManager.getCookie(url); local
83 assertNotNull(cookie);
84 // 'count' value of the returned cookie is 0
86 Matcher m = pat.matcher(cookie);
92 assertEquals("count=0", mOnUiThread.getTitle()); // outgoing cookie
94 cookie = mCookieManager.getCookie(url);
95 assertNotNull(cookie);
96 m = pat.matcher(cookie);
103 assertEquals("count=41", mOnUiThread.getTitle()); // outgoing cookie
105 cookie = mCookieManager.getCookie(url)
124 String cookie = "name=test"; local
219 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(server.getCookieDomain(), 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
426 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/chromium/chrome/browser/printing/
print_view_manager.h 63 void OnDidGetPrintedPagesCount(int cookie, int number_pages);
112 bool OpportunisticallyCreatePrintJob(int cookie);
  /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 */

Completed in 5121 milliseconds

1 2 34 5 6 7 8 91011>>