HomeSort by relevance Sort by last modified time
    Searched defs:Cookie (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/
Console.h 21 /* The members Cookie through Abstraction, inclusive, are the same type and order
27 UINT32 Cookie; ///< Special value identifying this as a valid ConInstance
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IkeCommon.c 37 UINT64 Cookie;
40 Status = IpSecCryptoIoGenerateRandomBytes ((UINT8 *)&Cookie, sizeof (UINT64));
44 return Cookie;
  /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
50 public interface Cookie {
67 * Returns the comment describing the purpose of this cookie, or
75 * If a user agent (web browser) presents this cookie to a user, the
76 * cookie's purpose will be described by the information at this URL.
81 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
91 * Returns <tt>false</tt> if the cookie should be discarded at the en
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
CookieList.java 30 * Convert a web browser cookie list string to a JSONObject and back.
37 * Convert a cookie list into a JSONObject. A cookie list is a sequence
42 * To add a cookie to a cooklist,
45 * @param string A cookie list string
53 String name = Cookie.unescape(x.nextTo('='));
55 o.put(name, Cookie.unescape(x.nextTo(';')));
63 * Convert a JSONObject into a cookie list. A cookie list is a sequence
68 * @return A cookie list strin
    [all...]
Cookie.java 28 * Convert a web browser cookie specification to a JSONObject and back.
33 public class Cookie {
67 * Convert a cookie specification string into a JSONObject. The string
70 * cookie properties may follow, separated by ';', also represented as
74 * validation of the parameters. It only converts the cookie string into
76 * @param string The cookie specification string.
96 throw x.syntaxError("Missing '=' in cookie parameter.");
109 * Convert a JSONObject into a cookie specification string. The JSONObject
112 * members, they will be appended to the cookie specification string.
115 * @return A cookie specification strin
    [all...]
Test.java 349 j = Cookie.toJSONObject("f%oo=blah; secure ;expires = April 24, 2002");
351 System.out.println(Cookie.toString(j));
  /prebuilts/go/darwin-x86/src/net/http/
cookie.go 16 // A Cookie represents an HTTP cookie as sent in the Set-Cookie header of an
17 // HTTP response or the Cookie header of an HTTP request.
20 type Cookie struct {
30 // MaxAge<0 means delete cookie now, equivalently 'Max-Age: 0'
39 // readSetCookies parses all "Set-Cookie" values from
41 func readSetCookies(h Header) []*Cookie {
42 cookieCount := len(h["Set-Cookie"])
44 return []*Cookie{}
    [all...]
request.go 362 func (r *Request) Cookies() []*Cookie {
366 // ErrNoCookie is returned by Request's Cookie method when a cookie is not found.
367 var ErrNoCookie = errors.New("http: named cookie not present")
369 // Cookie returns the named cookie provided in the request or
371 // If multiple cookies match the given name, only one cookie will
373 func (r *Request) Cookie(name string) (*Cookie, error) {
380 // AddCookie adds a cookie to the request. Per RFC 6265 section 5.4
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
cookie.go 16 // A Cookie represents an HTTP cookie as sent in the Set-Cookie header of an
17 // HTTP response or the Cookie header of an HTTP request.
20 type Cookie struct {
30 // MaxAge<0 means delete cookie now, equivalently 'Max-Age: 0'
39 // readSetCookies parses all "Set-Cookie" values from
41 func readSetCookies(h Header) []*Cookie {
42 cookieCount := len(h["Set-Cookie"])
44 return []*Cookie{}
    [all...]
request.go 362 func (r *Request) Cookies() []*Cookie {
366 // ErrNoCookie is returned by Request's Cookie method when a cookie is not found.
367 var ErrNoCookie = errors.New("http: named cookie not present")
369 // Cookie returns the named cookie provided in the request or
371 // If multiple cookies match the given name, only one cookie will
373 func (r *Request) Cookie(name string) (*Cookie, error) {
380 // AddCookie adds a cookie to the request. Per RFC 6265 section 5.4
    [all...]
  /prebuilts/go/darwin-x86/src/net/internal/socktest/
switch.go 32 // Stats returns a list of per-cookie socket statistics.
55 // A Cookie represents a 3-tuple of a socket; address family, socket
57 type Cookie uint64
60 func (c Cookie) Family() int { return int(c >> 48) }
63 func (c Cookie) Type() int { return int(c << 16 >> 32) }
66 func (c Cookie) Protocol() int { return int(c & 0xff) }
68 func cookie(family, sotype, proto int) Cookie { func
69 return Cookie(family)<<48 | Cookie(sotype)&0xffffffff<<16 | Cookie(proto)&0xf
    [all...]
  /prebuilts/go/linux-x86/src/net/internal/socktest/
switch.go 32 // Stats returns a list of per-cookie socket statistics.
55 // A Cookie represents a 3-tuple of a socket; address family, socket
57 type Cookie uint64
60 func (c Cookie) Family() int { return int(c >> 48) }
63 func (c Cookie) Type() int { return int(c << 16 >> 32) }
66 func (c Cookie) Protocol() int { return int(c & 0xff) }
68 func cookie(family, sotype, proto int) Cookie { func
69 return Cookie(family)<<48 | Cookie(sotype)&0xffffffff<<16 | Cookie(proto)&0xf
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Cookie.py 29 # Id: Cookie.py,v 2.29 2000/08/23 05:28:49 timo Exp
32 # Cookie.py is a Python module for the handling of HTTP
51 >>> import Cookie
53 Most of the time you start by creating a cookie. Cookies come in
57 >>> C = Cookie.SimpleCookie()
58 >>> C = Cookie.SerialCookie()
59 >>> C = Cookie.SmartCookie()
61 [Note: Long-time users of Cookie.py will remember using
62 Cookie.Cookie() to create an Cookie object. Although deprecated, it
    [all...]
cookielib.py 1 """HTTP cookie handling for web clients.
7 attributes of the HTTP cookie system as cookie-attributes, to distinguish
28 __all__ = ['Cookie', 'CookieJar', 'CookiePolicy', 'DefaultCookiePolicy',
445 """Ad-hoc parser for Netscape protocol cookie-attributes.
447 The old Netscape cookie format for Set-Cookie can for instance contain
452 that Netscape Cookie headers contain. Ronald Tschalar's HTTPClient
480 # This is an RFC 2109 cookie.
707 class Cookie:
    [all...]
  /external/curl/lib/
cookie.h 28 struct Cookie {
29 struct Cookie *next; /* next in the chain */
32 char *path; /* path = <this> which is in Set-Cookie: */
33 char *spath; /* sanitized cookie path */
39 /* RFC 2109 keywords. Version=1 means 2109-compliant cookie sending */
50 struct Cookie *cookies;
53 bool running; /* state info, for cookie adding information */
58 /* This is the maximum line length we accept for a cookie line. RFC 2109
61 "at least 4096 bytes per cookie (as measured by the size of the characters
62 that comprise the cookie non-terminal in the syntax description of th
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
Cookie.py 29 # Id: Cookie.py,v 2.29 2000/08/23 05:28:49 timo Exp
32 # Cookie.py is a Python module for the handling of HTTP
51 >>> import Cookie
53 Most of the time you start by creating a cookie. Cookies come in
57 >>> C = Cookie.SimpleCookie()
58 >>> C = Cookie.SerialCookie()
59 >>> C = Cookie.SmartCookie()
61 [Note: Long-time users of Cookie.py will remember using
62 Cookie.Cookie() to create an Cookie object. Although deprecated, i
    [all...]
cookielib.py 1 r"""HTTP cookie handling for web clients.
7 attributes of the HTTP cookie system as cookie-attributes, to distinguish
28 __all__ = ['Cookie', 'CookieJar', 'CookiePolicy', 'DefaultCookiePolicy',
445 """Ad-hoc parser for Netscape protocol cookie-attributes.
447 The old Netscape cookie format for Set-Cookie can for instance contain
452 that Netscape Cookie headers contain. Ronald Tschalar's HTTPClient
480 # This is an RFC 2109 cookie.
707 class Cookie
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
Cookie.py 29 # Id: Cookie.py,v 2.29 2000/08/23 05:28:49 timo Exp
32 # Cookie.py is a Python module for the handling of HTTP
51 >>> import Cookie
53 Most of the time you start by creating a cookie. Cookies come in
57 >>> C = Cookie.SimpleCookie()
58 >>> C = Cookie.SerialCookie()
59 >>> C = Cookie.SmartCookie()
61 [Note: Long-time users of Cookie.py will remember using
62 Cookie.Cookie() to create an Cookie object. Although deprecated, i
    [all...]
cookielib.py 1 r"""HTTP cookie handling for web clients.
7 attributes of the HTTP cookie system as cookie-attributes, to distinguish
28 __all__ = ['Cookie', 'CookieJar', 'CookiePolicy', 'DefaultCookiePolicy',
445 """Ad-hoc parser for Netscape protocol cookie-attributes.
447 The old Netscape cookie format for Set-Cookie can for instance contain
452 that Netscape Cookie headers contain. Ronald Tschalar's HTTPClient
480 # This is an RFC 2109 cookie.
707 class Cookie
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Cookie.py 29 # Id: Cookie.py,v 2.29 2000/08/23 05:28:49 timo Exp
32 # Cookie.py is a Python module for the handling of HTTP
51 >>> import Cookie
53 Most of the time you start by creating a cookie. Cookies come in
57 >>> C = Cookie.SimpleCookie()
58 >>> C = Cookie.SerialCookie()
59 >>> C = Cookie.SmartCookie()
61 [Note: Long-time users of Cookie.py will remember using
62 Cookie.Cookie() to create an Cookie object. Although deprecated, i
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Cookie.py 29 # Id: Cookie.py,v 2.29 2000/08/23 05:28:49 timo Exp
32 # Cookie.py is a Python module for the handling of HTTP
51 >>> import Cookie
53 Most of the time you start by creating a cookie. Cookies come in
57 >>> C = Cookie.SimpleCookie()
58 >>> C = Cookie.SerialCookie()
59 >>> C = Cookie.SmartCookie()
61 [Note: Long-time users of Cookie.py will remember using
62 Cookie.Cookie() to create an Cookie object. Although deprecated, i
    [all...]
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/
kfile.h 138 UINT32 Cookie; ///< Special value identifying this as a valid Instance
  /external/compiler-rt/lib/scudo/
scudo_allocator.cpp 48 // Global static cookie, initialized at start-up.
49 static u64 Cookie;
102 u64 Crc = _mm_crc32_u64(Cookie, reinterpret_cast<uptr>(this));
313 Cookie = Prng.Next();
  /external/llvm/lib/Target/X86/
X86WinEHState.cpp 103 Constant *Cookie = nullptr;
141 Cookie = nullptr;
333 Cookie = TheModule->getOrInsertGlobal("__security_cookie", Int32Ty);
334 Value *Val = Builder.CreateLoad(Int32Ty, Cookie, "cookie");
339 // If using _except_handler4, the EHGuard contains: FramePtr xor Cookie.
341 Value *Val = Builder.CreateLoad(Int32Ty, Cookie);
478 OptionalArgs.push_back(Cookie);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
setjmp.h 43 unsigned long Cookie;
64 unsigned long Cookie;

Completed in 1287 milliseconds

1 2 3 4