HomeSort by relevance Sort by last modified time
    Searched refs:cookies (Results 51 - 75 of 167) sorted by null

1 23 4 5 6 7

  /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/android/autofill/
url_fetcher_proxy.h 112 const ResponseCookies& cookies,
118 cookies_ = cookies;
  /external/chromium/net/url_request/
url_request_http_job.h 38 // Shadows URLRequestJob's version of this method so we can grab cookies.
51 std::vector<std::string>* cookies);
76 virtual bool GetResponseCookies(std::vector<std::string>* cookies);
  /external/webkit/LayoutTests/http/tests/cookies/resources/
cookies-test-pre.js 152 var cookies = new Array();
154 // This method sets the cookies using XMLHttpRequest.
156 // FIXME: Add the possibility to set multiple cookies in a row.
166 cookies.push(cookie);
182 // We get the cookies throught an XMLHttpRequest.
205 cookies.push(cookieName);
212 if (!cookies.length)
221 while (cookie = cookies.pop()) {
227 debug("Could not clear the cookies expect the following results to fail");
  /packages/apps/Browser/src/com/android/browser/
FetchUrlMimeType.java 57 String uri, String cookies, String userAgent) {
61 mCookies = cookies;
  /external/chromium/chrome/browser/
alternate_nav_url_fetcher.h 57 const ResponseCookies& cookies,
spellcheck_host_impl.h 99 const ResponseCookies& cookies,
  /external/chromium/chrome/browser/chromeos/login/
image_downloader.cc 45 const ResponseCookies& cookies,
  /external/chromium/chrome/browser/net/
sdch_dictionary_fetcher.cc 77 const ResponseCookies& cookies,
sqlite_persistent_cookie_store.cc 68 bool Load(std::vector<net::CookieMonster::CanonicalCookie*>* cookies);
151 // Number of cookies that have actually been saved. Updated during Commit().
165 // number of cookies.
171 // Initializes the cookies table, returning true on success.
173 if (!db->DoesTableExist("cookies")) {
174 if (!db->Execute("CREATE TABLE cookies ("
181 // On some mobile platforms, we persist session cookies
198 "CREATE INDEX IF NOT EXISTS cookie_times ON cookies (creation_utc)");
205 std::vector<net::CookieMonster::CanonicalCookie*>* cookies) {
209 // Ensure the parent directory for storing cookies is created before readin
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
malware_details_cache.h 63 const ResponseCookies& cookies,
  /external/webkit/Source/WebCore/inspector/
InspectorPageAgent.h 64 void getCookies(ErrorString*, RefPtr<InspectorArray>* cookies, WTF::String* cookiesString);
  /external/webkit/Source/WebCore/platform/android/
PlatformBridge.h 106 // Cookies
108 static String cookies(const Document*, const KURL&);
  /external/chromium/net/base/
cookie_monster.cc 85 // Comparator to sort cookies from highest creation date to lowest
113 // Cookies accessed less recently should be deleted first.
117 // In rare cases we might have two cookies with identical last access times.
119 // older cookies over newer ones. CreationDate() is guaranteed to be unique.
125 // {list of cookies with this signature, sorted by creation time}.
129 // Two cookies are considered equivalent if they have the same domain,
213 return false; // IP addresses/intranet hosts can't set domain cookies.
247 // to be generous and accept cookies with an invalid path attribute, and
318 // |num_max - num_purge| most recently accessed cookies from cookie_its.
320 // eviction in cookie_its.) The cookies returned will be in order sorted b
    [all...]
  /external/chromium/chrome/browser/automation/
automation_resource_message_filter.h 109 // Retrieves cookies for the url passed in from the external host. The
115 // Sets cookies on the URL in the external host. Returns true on success.
125 const std::string& cookies, int cookie_id);
146 const std::string& cookies, net::CompletionCallback* callback,
199 // Contains information used for completing the request to read cookies from
204 // actual callback which is invoked on successful retrieval of cookies from
206 // cookies from the host and is removed when we receive a response from the
  /external/chromium/chrome/browser/policy/
device_management_service.cc 55 // No cookies, please.
186 const ResponseCookies& cookies,
192 job->HandleResponse(status, response_code, cookies, data);
  /external/chromium/chrome/browser/ui/webui/
new_tab_page_sync_handler.cc 33 // A simple pair of fields that identify a set of Google cookies, used to
37 // cookies with id |cookie_id| are obtained / accessed.
44 // Filters to select Google GAIA cookies.
47 // Add filters here for other interesting cookies that should result in
59 std::string cookies = store->GetCookiesWithOptions(url, options); local
61 base::SplitString(cookies, ';', &cookie_list);
  /external/chromium/chrome/browser/autofill/
autofill_download.h 145 const ResponseCookies& cookies,
  /external/chromium/chrome/browser/google/
google_url_tracker.h 113 const ResponseCookies& cookies,
  /external/chromium/chrome/common/net/
url_fetcher.h 80 const ResponseCookies& cookies,
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 38 * {@code Secure}. The {@link #getVersion() version} of cookies in this
47 * Version} attributes. The {@link #getVersion() version} of cookies in
52 * to {@code Set-Cookie2}. The {@link #getVersion() version} of cookies
59 * cookies from being exposed in the DOM to JavaScript, etc.
132 * to the cookie's path. Cookies match by directory prefix: URI "/foo" matches cookies "/foo",
143 * secure attribute. Secure cookies should not be sent in insecure (ie. non-HTTPS) requests.
197 * @return a list of constructed cookies
234 List<HttpCookie> cookies = new ArrayList<HttpCookie>(2); local
247 * Read a comma-separated list of cookies. Note that the values may contain commas
    [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;
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.cc 55 // This method currently only returns meaningful values for cookies.
117 container.cookies()->SetCookieWithDetails(url,
138 blocked_local_shared_objects_.cookies()->SetCookieWithOptions(
142 allowed_local_shared_objects_.cookies()->SetCookieWithOptions(
  /external/webkit/Source/WebKit/android/WebCoreSupport/
PlatformBridge.cpp 87 String PlatformBridge::cookies(const Document* document, const KURL& url) function in class:WebCore::PlatformBridge
94 std::string cookies = cookieJar->cookieStore()->GetCookies(cookieGurl); local
95 cookieString = cookies.c_str();

Completed in 971 milliseconds

1 23 4 5 6 7