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

1 2 34 5 6 7 8 91011>>

  /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),
  /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...]
  /system/core/include/cutils/
trace.h 206 * the event, and the cookie provides a unique identifier for distinguishing
207 * simultaneous events. The name and cookie used to begin an event must be
210 #define ATRACE_ASYNC_BEGIN(name, cookie) \
211 atrace_async_begin(ATRACE_TAG, name, cookie)
213 int32_t cookie)
220 name, cookie);
229 #define ATRACE_ASYNC_END(name, cookie) atrace_async_end(ATRACE_TAG, name, cookie)
231 int32_t cookie)
238 name, cookie);
    [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("1|count=0", mOnUiThread.getTitle()); // outgoing cookie
94 cookie = mCookieManager.getCookie(url);
95 assertNotNull(cookie);
96 m = pat.matcher(cookie);
103 assertEquals("1|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...]
  /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
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/database/
NoNullCursorAsyncQueryHandlerTest.java 69 protected void onNotNullableQueryComplete(int token, Object cookie,
89 final String cookie = "TEST COOKIE"; local
96 protected void onNotNullableQueryComplete(int token, Object cookie,
99 cookieHolder.obj = cookie;
103 handler.startQuery(1, cookie, URI, PROJECTION, null, null, null);
108 assertSame(cookie, cookieHolder.obj);
116 final String cookie = "TEST COOKIE"; local
123 protected void onNotNullableQueryComplete(int token, Object cookie,
    [all...]
  /frameworks/base/core/java/android/os/
Trace.java 81 private static native void nativeAsyncTraceBegin(long tag, String name, int cookie);
82 private static native void nativeAsyncTraceEnd(long tag, String name, int cookie);
220 * asynchronous events do not need to be nested. The name and cookie used to
225 * @param cookie Unique identifier for distinguishing simultaneous events
229 public static void asyncTraceBegin(long traceTag, String methodName, int cookie) {
231 nativeAsyncTraceBegin(traceTag, methodName, cookie);
238 * using the same tag, name and cookie.
242 * @param cookie Unique identifier for distinguishing simultaneous events
246 public static void asyncTraceEnd(long traceTag, String methodName, int cookie) {
248 nativeAsyncTraceEnd(traceTag, methodName, cookie);
    [all...]

Completed in 2027 milliseconds

1 2 34 5 6 7 8 91011>>