HomeSort by relevance Sort by last modified time
    Searched refs:httponly (Results 1 - 4 of 4) sorted by null

  /external/chromium-trace/trace-viewer/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...]
  /external/chromium-trace/trace-viewer/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/chromium-trace/trace-viewer/third_party/Paste/paste/
wsgiwrappers.py 388 domain=None, secure=None, httponly=None):
395 ('secure', secure), ('expires', expires), ('httponly', httponly)]:

Completed in 76 milliseconds