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

1 2 3

  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
securecookie.py 11 import Cookie
22 """Serializes and deserializes secure cookie values.
31 A random string to be used as the HMAC secret for the cookie
37 """Serializes a signed cookie value.
40 Cookie name.
42 Cookie value to be serialized.
44 A serialized value ready to be stored in a cookie.
52 """Deserializes a signed cookie value.
55 Cookie name.
57 A cookie value to be deserialized
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cookie.py 1 # Simple test suite for Cookie.py
5 import Cookie
15 'output': 'Set-Cookie: chips=ahoy\nSet-Cookie: vienna=finger',
21 'output': 'Set-Cookie: keebler="E=mc2; L=\\"Loves\\"; fudge=\\012;"',
28 'output': 'Set-Cookie: keebler=E=mc2',
33 C = Cookie.SimpleCookie()
41 C = Cookie.SimpleCookie()
49 'Set-Cookie: Customer="WILE_E_COYOTE"; Path=/acme')
53 document.cookie = "Customer=\"WILE_E_COYOTE\"; Path=/acme; Version=1"
    [all...]
test_cookielib.py 132 # of Set-Cookie: header
135 # Cookie with name 'expires'
235 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie")
238 """Perform a single request / response cycle, returning Cookie: header."""
242 cookie_hdr = req.get_header("Cookie", "")
304 # Set-Cookie with negative max age.
306 # Set-Cookie cookies.
310 # Should accept unquoted cookie-attribute values? check errata draft.
312 # Should always return quoted cookie-attribute values?
329 ## commas and equals are commonly appear in the cookie value). This als
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cookie.py 1 # Simple test suite for Cookie.py
5 import Cookie
15 'output': 'Set-Cookie: chips=ahoy\nSet-Cookie: vienna=finger',
21 'output': 'Set-Cookie: keebler="E=mc2; L=\\"Loves\\"; fudge=\\012;"',
28 'output': 'Set-Cookie: keebler=E=mc2',
33 C = Cookie.SimpleCookie()
41 C = Cookie.SimpleCookie()
49 'Set-Cookie: Customer="WILE_E_COYOTE"; Path=/acme')
53 document.cookie = "Customer=\"WILE_E_COYOTE\"; Path=/acme; Version=1"
    [all...]
test_cookielib.py 132 # of Set-Cookie: header
135 # Cookie with name 'expires'
235 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie")
238 """Perform a single request / response cycle, returning Cookie: header."""
242 cookie_hdr = req.get_header("Cookie", "")
304 # Set-Cookie with negative max age.
306 # Set-Cookie cookies.
310 # Should accept unquoted cookie-attribute values? check errata draft.
312 # Should always return quoted cookie-attribute values?
329 ## commas and equals are commonly appear in the cookie value). This als
    [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
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/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...]
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/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...]
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...]
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
cookies.py 29 __all__ = ['Cookie', 'CookieProfile', 'SignedCookieProfile', 'SignedSerializer',
93 raise TypeError(name, 'cookie name must be a string')
99 raise TypeError('cookie name must be encodable to ascii')
101 raise TypeError('cookie name must be valid according to RFC 6265')
107 raise ValueError(value, 'cookie value must be a string')
113 value, 'cookie value must be utf-8 binary or unicode')
163 class Cookie(dict):
332 # these chars can be in cookie value see
345 # these are the characters accepted in cookie *names*
395 "Cookie value contains invalid bytes: (%s). Future versions
    [all...]
  /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;
http.h 579 PCHAR Cookie;
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusimaging.h 136 UINT Cookie;
  /external/robolectric/lib/main/
json-20080701.jar 
  /prebuilts/tools/common/m2/repository/org/json/json/20080701/
json-20080701.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
javax.servlet_2.5.0.v200910301333.jar 
org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar 
  /external/jetty/lib/
javax.servlet-3.0.0.v201112011016.jar 
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-api/2.42.2/
selenium-api-2.42.2.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddk.h     [all...]

Completed in 491 milliseconds

1 2 3