HomeSort by relevance Sort by last modified time
    Searched full:httponly (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/curl/tests/data/
test31 32 Set-Cookie: httpo1=value1 ; domain=127.0.0.1; path=/p1/; httponly
33 Set-Cookie: httpo2=value2 ; domain=127.0.0.1; path=/p2/; httponly=
34 Set-Cookie: httpo3=value3 ; httponly; domain=127.0.0.1; path=/p3/;
35 Set-Cookie: httpo4=value4 ; httponly=; domain=127.0.0.1; path=/p4/;
36 Set-Cookie: httponly=myvalue1 ; domain=127.0.0.1; path=/p4/; httponly
37 Set-Cookie: httpandsec=myvalue2 ; domain=127.0.0.1; path=/p4/; httponly; secure
38 Set-Cookie: httpandsec2=myvalue3; domain=127.0.0.1; path=/p4/; httponly=; secure
39 Set-Cookie: httpandsec3=myvalue4 ; domain=127.0.0.1; path=/p4/; httponly; secure=
40 Set-Cookie: httpandsec4=myvalue5 ; domain=127.0.0.1; path=/p4/; httponly=; secure=
    [all...]
test61 9 httponly
20 Set-Cookie: test=yes; httponly; domain=foo.com; expires=Fri Feb 2 11:56:27 GMT 2035
test62 8 httponly
  /external/chromium-trace/catapult/third_party/WebOb/webob/
cookies.py 253 httponly = cookie_property(b'httponly', bool) variable in class:Morsel
278 if self.httponly:
279 add(b'HttpOnly')
427 _c_keys.update([b'expires', b'secure', b'httponly'])
431 secure=False, httponly=False, comment=None):
458 if httponly:
459 morsel.httponly = True
621 ``httponly``
622 Hide the cookie from Javascript by setting the 'HttpOnly' flag of th
    [all...]
response.py 696 path='/', domain=None, secure=False, httponly=False,
742 ``httponly``
744 A boolean. If it's ``True``, the ``HttpOnly`` flag will be sent
745 in the cookie, if it's ``False``, the ``HttpOnly`` flag will not
785 domain=domain, secure=secure, httponly=httponly,
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
cookie_test.go 201 Header{"Set-Cookie": {"NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly"}},
207 HttpOnly: true,
210 Raw: "NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly",
214 Header{"Set-Cookie": {".ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly"}},
221 HttpOnly: true,
222 Raw: ".ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly",
226 Header{"Set-Cookie": {"ASP.NET_SessionId=foo; path=/; HttpOnly"}},
231 HttpOnly: true,
232 Raw: "ASP.NET_SessionId=foo; path=/; HttpOnly",
274 // Header{"Set-Cookie": {"ASP.NET_SessionId=foo; path=/; HttpOnly, .ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly"}}
    [all...]
cookie.go 35 HttpOnly bool
87 case "httponly":
88 c.HttpOnly = true
173 if c.HttpOnly {
174 fmt.Fprintf(&b, "; HttpOnly")
  /prebuilts/go/linux-x86/src/net/http/
cookie_test.go 201 Header{"Set-Cookie": {"NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly"}},
207 HttpOnly: true,
210 Raw: "NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly",
214 Header{"Set-Cookie": {".ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly"}},
221 HttpOnly: true,
222 Raw: ".ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly",
226 Header{"Set-Cookie": {"ASP.NET_SessionId=foo; path=/; HttpOnly"}},
231 HttpOnly: true,
232 Raw: "ASP.NET_SessionId=foo; path=/; HttpOnly",
274 // Header{"Set-Cookie": {"ASP.NET_SessionId=foo; path=/; HttpOnly, .ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly"}}
    [all...]
cookie.go 35 HttpOnly bool
87 case "httponly":
88 c.HttpOnly = true
173 if c.HttpOnly {
174 fmt.Fprintf(&b, "; HttpOnly")
  /external/jetty/src/resources/org/eclipse/jetty/server/session/jmx/
AbstractSessionManager-mbean.properties 2 httpOnly: True if cookies use the http only flag
  /external/curl/lib/
cookie.h 45 bool httponly; /* true if the httponly directive is present */ member in struct:Cookie
cookie.c 443 'secure' and 'httponly' specified this weirdly */
447 else if(Curl_raw_equal("httponly", name))
448 co->httponly = TRUE;
648 marked with httpOnly after the domain name are not accessible
656 co->httponly = TRUE;
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/auth/
auth_tkt.py 246 ``httponly``:
247 If the cookie should be marked as HttpOnly, which means that it's
282 include_ip=True, logout_path=None, httponly=False,
289 self.httponly = httponly
374 if self.httponly:
375 cookie_options += "; HttpOnly"
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpCookie.java 80 public HttpCookie(String name, String value, String domain, String path, int maxAge, boolean httpOnly, boolean secure)
85 _httpOnly = httpOnly;
95 public HttpCookie(String name, String value, String domain, String path, int maxAge, boolean httpOnly, boolean secure, String comment, int version)
100 _httpOnly = httpOnly;
  /external/chromium-trace/catapult/third_party/webapp2/docs/guide/
response.rst 42 set_cookie(key, value='', max_age=None, path='/', domain=None, secure=None, httponly=False, comment=None, expires=None, overwrite=False)
81 httponly
  /libcore/ojluni/src/main/java/java/net/
HttpCookie.java 76 RESERVED_NAMES.add("httponly"); // RFC 6265
106 private boolean httpOnly; // HttpOnly ... i.e. not accessible to scripts
716 * Returns {@code true} if this cookie contains the <i>HttpOnly</i>
725 return httpOnly;
733 * @param httpOnly if {@code true} make the cookie HTTP only, i.e.
737 public void setHttpOnly(boolean httpOnly)
739 this.httpOnly = httpOnly;
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/cookiejar/
jar.go 97 HttpOnly bool
423 e.HttpOnly = c.HttpOnly
  /prebuilts/go/linux-x86/src/net/http/cookiejar/
jar.go 97 HttpOnly bool
423 e.HttpOnly = c.HttpOnly
  /external/curl/docs/libcurl/opts/
CURLOPT_COOKIELIST.3 70 You can set the cookie as HttpOnly to prevent XSS attacks by prepending
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
HttpCookieTest.java 859 // Default is !httpOnly.
864 list = HttpCookie.parse("Set-Cookie: SID=31d4d96e407aad42; HttpOnly");
868 list = HttpCookie.parse("Set-Cookie: SID=31d4d96e407aad42; Path=/; Secure; HttpOnly");
874 list = HttpCookie.parse("Set-Cookie:SID=31d4d96e407aad42;Path=/;secure=false;httponly=false");
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
Cookie.py 417 # httponly
428 "httponly" : "httponly",
511 elif K == "httponly":
  /prebuilts/gdb/linux-x86/lib/python2.7/
Cookie.py 417 # httponly
428 "httponly" : "httponly",
511 elif K == "httponly":
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Cookie.py 417 # httponly
428 "httponly" : "httponly",
511 elif K == "httponly":
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Cookie.py 417 # httponly
428 "httponly" : "httponly",
511 elif K == "httponly":
  /external/chromium-trace/catapult/third_party/Paste/paste/
wsgiwrappers.py 388 domain=None, secure=None, httponly=None):
395 ('secure', secure), ('expires', expires), ('httponly', httponly)]:

Completed in 1131 milliseconds

1 2 3 4