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

  /external/chromium/net/base/
cookie_options.h 14 // Default is to exclude httponly, which means:
15 // - reading operations will not return httponly cookies.
16 // - writing operations will not write httponly cookies.
cookie_monster_unittest.cc 64 "aBc=" + input + " ; path=\"/\" ; httponly ");
90 net::CookieMonster::ParsedCookie pc("BLAHHH; Path=/; sECuRe; httpONLY");
139 net::CookieMonster::ParsedCookie pc(" A = BC ;secure;;; httponly");
152 net::CookieMonster::ParsedCookie pc(" A=== BC ;secure;;; httponly");
535 // Create a httponly cookie.
536 EXPECT_TRUE(cm->SetCookieWithOptions(url_google, "A=B; httponly", options));
538 // Check httponly read protection.
542 // Check httponly overwrite protection.
549 // Check httponly create protection.
550 EXPECT_FALSE(cm->SetCookie(url_google, "B=A; httponly"));
    [all...]
cookie_monster.h 170 // If |skip_httponly| is true, httponly cookies will not be deleted. The
171 // return value with be true if |skip_httponly| skipped an httponly cookie.
307 bool httponly,
320 httponly_(httponly) {
343 // It seems like it would make sense to take secure and httponly into
cookie_store.h 35 // Use options to access httponly cookies.
cookie_monster.cc 436 COOKIE_DLOG(INFO) << "SetCookie() not setting httponly cookie";
463 COOKIE_DLOG(INFO) << "SetCookie() not clobbering httponly cookie";
    [all...]
  /external/webkit/WebKit/chromium/public/
WebCookie.h 46 , httpOnly(false)
53 const WebString& path, double expires, bool httpOnly, bool secure, bool session)
59 , httpOnly(httpOnly)
70 bool httpOnly;
  /external/webkit/WebCore/platform/
Cookie.h 39 const String& path, double expires, bool httpOnly, bool secure,
46 , httpOnly(httpOnly)
57 bool httpOnly;
CookieJar.h 39 // cookies omits HttpOnly cookies.
  /external/webkit/WebCore/platform/network/android/
CookieJarAndroid.cpp 46 // FIXME: include HttpOnly cookie.
  /external/webkit/WebCore/platform/network/curl/
CookieJarCurl.cpp 44 // FIXME: include HttpOnly cookie.
  /external/webkit/WebCore/platform/haiku/
CookieJarHaiku.cpp 57 // FIXME: include HttpOnly cookies.
  /external/webkit/WebCore/platform/network/win/
CookieJarWin.cpp 64 // FIXME: include HttpOnly cookie
CookieJarCFNetWin.cpp 155 bool httpOnly = CFHTTPCookieIsHTTPOnly(cookie);
159 rawCookies.uncheckedAppend(Cookie(name, value, domain, path, expires, httpOnly, secure, session));
  /external/webkit/WebCore/platform/mac/
CookieJar.mm 149 bool httpOnly = [cookie isHTTPOnly];
152 rawCookies.uncheckedAppend(Cookie(name, value, domain, path, expires, httpOnly, secure, session));
  /external/webkit/WebCore/inspector/front-end/
CookieItemsView.js 209 case 6: comparator = localeCompare.bind(this, "httpOnly"); break;
227 data[6] = (cookie.httpOnly ? "\u2713" : ""); // Checkmark
  /frameworks/base/core/java/android/webkit/
CookieManager.java 54 private static final String HTTP_ONLY = "httponly";
770 * path=PATH; domain=DOMAIN_NAME; secure httponly" to a list of Cookies.
    [all...]
  /external/webkit/WebCore/inspector/
InspectorController.cpp     [all...]
  /external/webkit/WebKit/chromium/src/
ChromiumBridge.cpp 203 webCookie.httpOnly,
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 59 * particular, the {@code HttpOnly} attribute is widely served but isn't in any
  /external/chromium/net/http/
http_response_headers_unittest.cc 418 "Set-Cookie: foo=bar; httponly\n"
    [all...]
  /external/webkit/WebCore/
ChangeLog 126 WebSocket ignores HttpOnly cookies, but should use in Handshake.
129 Test: websocket/tests/cookies/httponly-cookie.pl
153 (WebCore::WebSocketHandshake::clientHandshakeMessage): use cookieRequestHeaderFieldValue() instead of cookies() to include HttpOnly cookies.
    [all...]
  /external/webkit/WebKitTools/
ChangeLog 97 WebSocket ignores HttpOnly cookies, but should use in Handshake.
    [all...]

Completed in 503 milliseconds