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

1 23 4 5 6 7 8

  /external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
background.js 5 chrome.cookies.onChanged.addListener(function(info) {
  /external/chromium_org/net/cookies/
cookie_monster_perftest.cc 12 #include "net/cookies/canonical_cookie.h"
13 #include "net/cookies/cookie_monster.h"
14 #include "net/cookies/cookie_monster_store_test.h"
15 #include "net/cookies/parsed_cookie.h"
88 void Run(const std::string& cookies) {
89 cookies_ = cookies;
121 std::vector<std::string> cookies; local
123 cookies.push_back(base::StringPrintf("a%03d=b", i));
128 // Add a bunch of cookies on a single host
131 for (std::vector<std::string>::const_iterator it = cookies.begin()
    [all...]
cookie_monster.cc 45 #include "net/cookies/cookie_monster.h"
63 #include "net/cookies/canonical_cookie.h"
64 #include "net/cookies/cookie_util.h"
65 #include "net/cookies/parsed_cookie.h"
130 // Comparator to sort cookies from highest creation date to lowest
157 // Cookies accessed less recently should be deleted first.
161 // In rare cases we might have two cookies with identical last access times.
163 // older cookies over newer ones. CreationDate() is guaranteed to be unique.
169 // {list of cookies with this signature, sorted by creation time}.
173 // Two cookies are considered equivalent if they have the same domain
484 CookieList cookies = this->cookie_monster()->GetAllCookies(); local
521 CookieList cookies = this->cookie_monster()-> local
1160 CookieList cookies; local
1320 std::vector<CanonicalCookie*> cookies; local
1343 std::vector<CanonicalCookie*> cookies; local
    [all...]
cookie_store.h 18 #include "net/cookies/canonical_cookie.h"
19 #include "net/cookies/cookie_options.h"
27 // An interface for storing and retrieving cookies. Implementations need to
32 typedef base::Callback<void(const CookieList& cookies)> GetCookieListCallback;
48 // TODO(???): what if the total size of all the cookies >4k, can we have a
53 // Use options to access httponly cookies.
59 // Returns all matching cookies without marking them as accessed,
60 // including HTTP only cookies.
70 // Deletes all of the cookies that have a creation_date greater than or equal
72 // Returns the number of cookies that have been deleted
    [all...]
cookie_monster.h 26 #include "net/cookies/canonical_cookie.h"
27 #include "net/cookies/cookie_constants.h"
28 #include "net/cookies/cookie_store.h"
43 // The cookie monster is the system for storing and retrieving cookies. It has
44 // an in-memory list of all cookies, and synchronizes non-session cookies to an
52 // all affected cookies are not yet loaded from the backing store. Otherwise,
57 // loading of cookies for a specfic domain key(eTLD+1). In the former case, the
61 // loads cookies for the specified domain key(eTLD+1) on DB thread.
92 // effective domain of the cookies. If the domain of the cookie has a
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_page.py 117 cookies = res['result']['cookies']
118 for cookie in cookies:
  /external/chromium_org/chrome/browser/extensions/api/cookies/
cookies_api.cc 5 // Implements the Chrome Extensions Cookies API.
7 #include "chrome/browser/extensions/api/cookies/cookies_api.h"
19 #include "chrome/browser/extensions/api/cookies/cookies_api_constants.h"
20 #include "chrome/browser/extensions/api/cookies/cookies_helpers.h"
24 #include "chrome/common/extensions/api/cookies.h"
31 #include "net/cookies/canonical_cookie.h"
32 #include "net/cookies/cookie_constants.h"
33 #include "net/cookies/cookie_monster.h"
38 using extensions::api::cookies::Cookie;
39 using extensions::api::cookies::CookieStore
    [all...]
cookies_helpers.cc 5 // Implements common functionality for the Chrome Extensions Cookies API.
7 #include "chrome/browser/extensions/api/cookies/cookies_helpers.h"
17 #include "chrome/browser/extensions/api/cookies/cookies_api_constants.h"
22 #include "chrome/common/extensions/api/cookies.h"
27 #include "net/cookies/canonical_cookie.h"
28 #include "net/cookies/cookie_util.h"
31 using extensions::api::cookies::Cookie;
32 using extensions::api::cookies::CookieStore;
34 namespace GetAll = extensions::api::cookies::GetAll;
cookies_unittest.cc 5 // Tests common functionality used by the Chrome Extensions Cookies API
11 #include "chrome/browser/extensions/api/cookies/cookies_api_constants.h"
12 #include "chrome/browser/extensions/api/cookies/cookies_helpers.h"
13 #include "chrome/common/extensions/api/cookies.h"
15 #include "net/cookies/canonical_cookie.h"
16 #include "net/cookies/cookie_constants.h"
19 using extensions::api::cookies::Cookie;
20 using extensions::api::cookies::CookieStore;
22 namespace GetAll = extensions::api::cookies::GetAll;
  /external/chromium_org/chrome/browser/content_settings/
local_shared_objects_container.h 43 CannedBrowsingDataCookieHelper* cookies() const { return cookies_.get(); } function in class:LocalSharedObjectsContainer
local_shared_objects_container.cc 19 #include "net/cookies/canonical_cookie.h"
64 count += cookies()->GetCookieCount();
78 // Count all cookies that have the same domain as the provided |origin|. This
79 // means count all cookies that has been set by a host that is not considered
81 // E.g. if the origin is "http://foo.com" then all cookies with domain foo.com,
86 cookies()->origin_cookie_list_map();
187 cookies(),
  /external/chromium_org/content/ppapi_plugin/
ppapi_webkitplatformsupport_impl.h 36 virtual blink::WebString cookies(
  /external/chromium_org/google_apis/gaia/
mock_url_fetcher_factory.h 29 const net::ResponseCookies& cookies,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cookielib.py 4 HTTP::Cookies, from the libwww-perl library.
456 Currently, this is also used for parsing RFC 2109 cookies.
460 # RFC 2109 attrs (may turn up in Netscape cookies, too)
710 This class represents both Netscape and RFC 2965 cookies.
806 """Defines which cookies get accepted from and returned to server.
808 May also modify cookies, though this is probably a bad idea.
811 and RFC 2965 cookies -- override that if you want a customised policy.
817 Currently, pre-expired cookies never get this far -- the CookieJar
818 class deletes such cookies itself.
828 """Return false if cookies should not be returned, given cookie domain
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cookielib.py 4 HTTP::Cookies, from the libwww-perl library.
456 Currently, this is also used for parsing RFC 2109 cookies.
460 # RFC 2109 attrs (may turn up in Netscape cookies, too)
710 This class represents both Netscape and RFC 2965 cookies.
806 """Defines which cookies get accepted from and returned to server.
808 May also modify cookies, though this is probably a bad idea.
811 and RFC 2965 cookies -- override that if you want a customised policy.
817 Currently, pre-expired cookies never get this far -- the CookieJar
818 class deletes such cookies itself.
828 """Return false if cookies should not be returned, given cookie domain
    [all...]
  /external/apache-http/src/org/apache/http/client/protocol/
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_org/components/autofill/content/browser/wallet/
wallet_signin_helper_unittest.cc 19 #include "net/cookies/canonical_cookie.h"
20 #include "net/cookies/cookie_monster.h"
21 #include "net/cookies/cookie_options.h"
70 const net::ResponseCookies& cookies,
80 fetcher->set_cookies(cookies);
  /external/chromium_org/net/url_request/
url_request_http_job.h 18 #include "net/cookies/cookie_store.h"
68 // Shadows URLRequestJob's version of this method so we can grab cookies.
80 void FetchResponseCookies(std::vector<std::string>* cookies);
107 virtual bool GetResponseCookies(std::vector<std::string>* cookies) OVERRIDE;
  /packages/apps/Browser/src/com/android/browser/
FetchUrlMimeType.java 57 String uri, String cookies, String userAgent) {
61 mCookies = cookies;
DownloadHandler.java 212 // XXX: Have to use the old url since the cookies were stored using the
214 String cookies = CookieManager.getInstance().getCookie(url, privateBrowsing); local
215 request.addRequestHeader("cookie", cookies);
226 new FetchUrlMimeType(activity, request, addressString, cookies,
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_url_fetcher_unittest.cc 101 const net::ResponseCookies& cookies,
154 const net::ResponseCookies& cookies,
236 const net::ResponseCookies& cookies,
250 const net::ResponseCookies& cookies,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
HAREntry.js 81 cookies: this._buildCookies(this._request.requestCookies || []),
102 cookies: this._buildCookies(this._request.responseCookies || []),
202 * @param {!Array.<!WebInspector.Cookie>} cookies
205 _buildCookies: function(cookies)
207 return cookies.map(this._buildCookie.bind(this));
  /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
135 * to the cookie's path. Cookies match by directory prefix: URI "/foo" matches cookies "/foo",
146 * secure attribute. Secure cookies should not be sent in insecure (ie. non-HTTPS) requests.
200 * @return a list of constructed cookies
237 List<HttpCookie> cookies = new ArrayList<HttpCookie>(2); local
250 * Read a comma-separated list of cookies. Note that the values may contain commas!
256 if (cookies.isEmpty())
    [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_org/third_party/WebKit/Source/devtools/front_end/sdk/
CookieParser.js 62 cookies: function()
259 // RFC 2965 suggests using Discard attribute to mark session cookies, but this does not seem to be widely used.
371 WebInspector.Cookies = {}
376 WebInspector.Cookies.getCookiesAsync = function(callback)
380 * @param {!Array.<!PageAgent.Cookie>} cookies
382 function mycallback(error, cookies)
386 callback(cookies.map(WebInspector.Cookies.buildCookieProtocolObject));
396 WebInspector.Cookies.buildCookieProtocolObject = function(protocolCookie)
417 WebInspector.Cookies.cookieMatchesResourceURL = function(cookie, resourceURL
    [all...]

Completed in 393 milliseconds

1 23 4 5 6 7 8