HomeSort by relevance Sort by last modified time
    Searched refs:cookies (Results 26 - 50 of 65) sorted by null

12 3

  /external/apache-http/src/org/apache/http/client/protocol/
ResponseProcessCookies.java 54 * contained in response cookies received in the given the HTTP response.
120 List<Cookie> cookies = cookieSpec.parse(header, cookieOrigin); local
121 for (Cookie cookie : cookies) {
RequestAddCookies.java 60 * Request interceptor that matches cookies available in the current
148 // Get all cookies available in the HTTP state
149 List<Cookie> cookies = new ArrayList<Cookie>(cookieStore.getCookies()); local
150 // Find cookies matching the given origin
152 for (Cookie cookie : cookies) {
  /external/chromium/net/url_request/
url_request_http_job.h 43 virtual bool GetResponseCookies(std::vector<std::string>* cookies);
59 // Shadows URLRequestJob's version of this method so we can grab cookies.
69 std::vector<std::string>* cookies);
url_request_http_job.cc 201 std::vector<std::string>* cookies) {
207 // TODO(darin): Why are we extracting response cookies again? Perhaps we
210 cookies->clear();
211 FetchResponseCookies(response_info_, cookies);
334 // Update the cookies, since the cookie store may have been updated from the
335 // headers in the 401/407. Since cookies were already appended to
438 std::string cookies = local
441 if (request_->context()->InterceptRequestCookies(request_, cookies) &&
442 !cookies.empty())
443 request_info_.extra_headers += "Cookie: " + cookies + "\r\n"
    [all...]
url_request_context.h 5 // This class represents contextual information (cookies, cache, etc.)
67 // cookies are not stored).
71 // cookies are allowed).
110 // Called before adding cookies to requests. Returns true if cookie can
113 const std::string& cookies) const {
117 // Called before adding cookies from respones to the cookie monster. Returns
url_request_job.h 111 // NOTE: This removes the cookies from the job, so it will only return
113 virtual bool GetResponseCookies(std::vector<std::string>* cookies) {
url_request.cc 185 bool URLRequest::GetResponseCookies(ResponseCookies* cookies) {
187 return job_->GetResponseCookies(cookies);
url_request.h 340 // separated by commas (per RFC 2616). This will not work with cookies since
380 // that can have cookies. Returns true if the request is a cookie-bearing
383 bool GetResponseCookies(ResponseCookies* cookies);
  /external/webkit/WebKit/android/WebCoreSupport/
PlatformBridge.cpp 101 String PlatformBridge::cookies(const KURL& url) function in class:WebCore::PlatformBridge
107 return client->cookies(url);
  /external/webkit/WebKit/chromium/public/
WebKitClient.h 181 const WebURL& url, const WebURL& firstPartyForCookies, const WebString& cookies) { }
182 virtual WebString cookies(const WebURL& url, const WebURL& firstPartyForCookies) { return WebString(); } function in class:WebKit::WebKitClient
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 40 * {@code Secure}. The {@link #getVersion() version} of cookies in this
49 * Version} attributes. The {@link #getVersion() version} of cookies in
54 * to {@code Set-Cookie2}. The {@link #getVersion() version} of cookies
61 * cookies from being exposed in the DOM to JavaScript, etc.
68 * Most websites serve cookies in the blessed format. Eagerly create the parser to ensure such
69 * cookies are on the fast path.
168 * to the cookie's path. Cookies match by directory prefix: URI "/foo" matches cookies "/foo",
179 * secure attribute. Secure cookies should not be sent in insecure (ie. non-HTTPS) requests.
232 * @return a list of constructed cookies
269 List<HttpCookie> cookies = new ArrayList<HttpCookie>(2); local
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965Spec.java 110 List<Cookie> cookies = new ArrayList<Cookie>(elems.length); local
147 cookies.add(cookie);
149 return cookies;
  /frameworks/base/core/java/android/net/http/
Headers.java 126 private ArrayList<String> cookies = new ArrayList<String>(2); field in class:Headers
281 cookies.add(val);
362 return this.cookies;
  /external/webkit/WebCore/inspector/
InspectorFrontend.h 136 void didGetCookies(int callId, const ScriptArray& cookies, const String& cookiesString);
  /external/webkit/WebKit/mac/Plugins/Hosted/
WebKitPluginClient.defs 63 out cookies :data_t, dealloc);
68 cookies :data_t;
  /frameworks/base/core/java/android/webkit/
CookieManager.java 36 * CookieManager manages cookies according to RFC2109 spec.
154 // both values are null, the cookies match. If both values are
155 // non-null, the cookies match. If one value is null and the other
156 // is non-null, the cookies do not match (i.e. "foo=;" and "foo;")
207 // According to RFC 2109, multiple cookies are ordered in a way such
222 // If both cookies have null values, fall back to using the name
329 ArrayList<Cookie> cookies = null; local
331 cookies = parseCookie(hostAndPath[0], hostAndPath[1], value);
336 if (cookies == null || cookies.size() == 0)
583 ArrayList<Cookie> cookies = new ArrayList<Cookie>(); local
    [all...]
JWebCoreJavaBridge.java 57 * WebCore timers and cookies.
192 * @return A String representing the cookies for the given resource url.
194 private String cookies(String url) { method in class:JWebCoreJavaBridge
199 * Returns whether cookies are enabled or not.
  /external/chromium/net/base/
cookie_monster_unittest.cc 203 // TODO some better test cases for invalid cookies.
259 // Test and make sure we find domain cookies on the same domain.
288 // Test that cookies can bet set on higher level domains.
405 { // IP addresses should not be able to set domain cookies.
419 // Test host cookies, and setting of cookies on TLD.
431 EXPECT_EQ("", cm->GetCookies(GURL("http://hopefully-no-cookies.com/")));
440 EXPECT_EQ("", cm->GetCookies(GURL("http://hopefully-no-cookies.com./")));
469 { // Intranet URLs should only be able to set host cookies.
479 // Test reading/writing cookies when the domain ends with a period
858 std::string cookies = cm->GetCookies(url_google); local
922 net::CookieMonster::CookieList cookies = cm->GetAllCookies(); local
1037 net::CookieMonster::CookieList cookies = cm->GetAllCookies(); local
    [all...]
cookie_monster.h 24 // The cookie monster is the system for storing and retrieving cookies. It has
25 // an in-memory list of all cookies, and synchronizes non-session cookies to an
97 // Returns all the cookies, for use in management UI, etc. This does not mark
98 // the cookies as having been accessed.
101 // Returns all the cookies, for use in management UI, etc. Filters results
102 // using given url scheme and host / domain. This does not mark the cookies
106 // Delete all of the cookies.
108 // Delete all of the cookies that have a creation_date greater than or equal
113 // Delete all of the cookies that have a creation_date more recent than th
    [all...]
  /frameworks/base/core/java/android/content/res/
AssetManager.java 609 * cookies for each added asset with 0 indicating failure, or null if
618 int[] cookies = new int[paths.length]; local
620 cookies[i] = addAssetPath(paths[i]);
623 return cookies;
  /external/webkit/WebCore/platform/chromium/
ChromiumBridge.h 85 // Cookies ------------------------------------------------------------
87 static String cookies(const KURL& url, const KURL& firstPartyForCookies);
  /external/webkit/WebCore/inspector/front-end/
AuditRules.js 712 " can cause cookies to be shared by multiple users.",
    [all...]
DOMAgent.js 454 WebInspector.Cookies = {}
456 WebInspector.Cookies.getCookiesAsync = function(callback)
458 function mycallback(cookies, cookiesString) {
460 callback(WebInspector.Cookies.buildCookiesFromString(cookiesString), false);
462 callback(cookies, true);
468 WebInspector.Cookies.buildCookiesFromString = function(rawCookieString)
471 var cookies = [];
480 cookies.push({ name: name, value: value, size: size });
484 return cookies;
487 WebInspector.Cookies.cookieMatchesResourceURL = function(cookie, resourceURL
    [all...]
  /external/webkit/WebCore/platform/network/win/
CookieJarCFNetWin.cpp 54 // that, but we also need to avoid sending cookies that were previously stored, and
81 // cookiesWithResponseHeaderFields doesn't parse cookies without a value
95 String cookies(const Document* /*document*/, const KURL& url) function in namespace:WebCore
  /external/webkit/WebKit/android/jni/
WebCoreJniOnLoad.cpp 157 virtual String cookies(const KURL&) { return ""; } function in class:MyJavaSharedClient

Completed in 175 milliseconds

12 3