HomeSort by relevance Sort by last modified time
    Searched refs:cookies (Results 201 - 225 of 262) sorted by null

1 2 3 4 5 6 7 891011

  /external/chromium_org/content/worker/
worker_webkitplatformsupport_impl.cc 157 WebString WorkerWebKitPlatformSupportImpl::cookies( function in class:content::WorkerWebKitPlatformSupportImpl
159 // WebSocketHandshake may access cookies in worker process.
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.h 98 virtual void getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> >& cookies);
InspectorPageAgent.cpp 488 RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> > cookies = TypeBuilder::Array<TypeBuilder::Page::Cookie>::create(); local
493 cookies->addItem(buildObjectForCookie(*it));
495 return cookies;
542 void InspectorPageAgent::getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> >& cookies)
560 cookies = buildArrayForCookies(rawCookiesList);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cookielib.py 253 # cookies with no value should be saved and loaded consistently
282 # Invalid contents of cookies file (eg. bad magic string)
303 # Netscape cookies work the same as RFC 2965 with regard to port.
305 # If turn RFC 2965 handling off, Set-Cookie2 cookies should not clobber
306 # Set-Cookie cookies.
307 # Cookie2 should be sent if *any* cookies are not V1 (ie. V0 OR V2 etc.).
308 # Cookies (V1 and V0) with no expiry date should be set to be discarded.
397 # cookies unchanged apart from lost info re. whether path was specified
407 # RFC 2109 cookies are handled as RFC 2965 or Netscape cookies,
    [all...]
test_httplib.py 241 cookies = r.getheader("Set-Cookie")
242 if cookies != hdr:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cookielib.py 253 # cookies with no value should be saved and loaded consistently
282 # Invalid contents of cookies file (eg. bad magic string)
303 # Netscape cookies work the same as RFC 2965 with regard to port.
305 # If turn RFC 2965 handling off, Set-Cookie2 cookies should not clobber
306 # Set-Cookie cookies.
307 # Cookie2 should be sent if *any* cookies are not V1 (ie. V0 OR V2 etc.).
308 # Cookies (V1 and V0) with no expiry date should be set to be discarded.
397 # cookies unchanged apart from lost info re. whether path was specified
407 # RFC 2109 cookies are handled as RFC 2965 or Netscape cookies,
    [all...]
test_httplib.py 241 cookies = r.getheader("Set-Cookie")
242 if cookies != hdr:
  /external/chromium_org/net/cookies/
cookie_store_unittest.h 12 #include "net/cookies/cookie_monster.h"
13 #include "net/cookies/cookie_store.h"
14 #include "net/cookies/cookie_store_test_callbacks.h"
45 // // The cookie store supports cookies with the exclude_httponly() option.
56 // // The cookie store rejects cookies for invalid schemes such as ftp.
63 // // Time to wait between two cookie insertions to ensure that cookies have
209 std::string cookies = GetCookies(cs, url); local
210 bool matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies));
217 cookies = GetCookies(cs, url);
218 matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies));
    [all...]
  /external/chromium/net/url_request/
url_request.cc 290 bool URLRequest::GetResponseCookies(ResponseCookies* cookies) {
292 return job_->GetResponseCookies(cookies);
url_request_job.cc 110 bool URLRequestJob::GetResponseCookies(std::vector<std::string>* cookies) {
  /external/chromium_org/chrome/test/chromedriver/chrome/
web_view_impl.cc 305 Status WebViewImpl::GetCookies(scoped_ptr<base::ListValue>* cookies) {
313 if (!result->GetList("cookies", &cookies_tmp))
314 return Status(kUnknownError, "DevTools didn't return cookies");
315 cookies->reset(cookies_tmp->DeepCopy());
  /external/chromium/chrome/browser/autofill/
autofill_download.cc 309 const ResponseCookies& cookies,
  /external/chromium/chrome/browser/chromeos/
customization_document.cc 322 const ResponseCookies& cookies,
  /external/chromium/chrome/browser/
spellcheck_host_impl.cc 256 const ResponseCookies& cookies,
  /external/chromium_org/net/url_request/
url_request.h 27 #include "net/cookies/canonical_cookie.h"
312 // Changes the default cookie policy from allowing all cookies to blocking all
313 // cookies. Embedders that want to implement a more flexible policy should
314 // change the default to blocking all cookies, and provide a NetworkDelegate
317 // started. Once it was set to block all cookies, it cannot be changed back.
346 // first-party for cookies will be the URL of the first URL in the
474 // separated by commas (per RFC 2616). This will not work with cookies since
529 // that can have cookies. Returns true if the request is a cookie-bearing
532 bool GetResponseCookies(ResponseCookies* cookies);
    [all...]
url_request_job.cc 133 bool URLRequestJob::GetResponseCookies(std::vector<std::string>* cookies) {
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 617 * Return a page with a title containing a list of all incoming cookies,
623 Header[] cookies = request.getHeaders("Cookie"); local
626 cookieString.append(cookies.length);
628 for (Header cookie : cookies) {
    [all...]
  /external/chromium_org/content/renderer/npapi/
webplugin_delegate_proxy.cc     [all...]
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 
  /external/chromium_org/content/browser/
storage_partition_impl_unittest.cc 19 #include "net/cookies/cookie_monster.h"
158 void GetCookieCallback(const std::string& cookies) {
159 if (cookies == "A=1") {
162 EXPECT_EQ("", cookies);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 451 // Create the merge cookies in the opposite order to ensure that we don't
453 LinkedList<MergeCookie> cookies = new LinkedList<MergeCookie>(); local
456 cookies.addFirst(new MergeCookie(node));
458 Iterator<MergeCookie> it = cookies.iterator();
492 // Sets alternating merge cookies and checks whether the node sibling lists are
544 // Sets alternating merge cookies and checks whether the node sibling lists are
    [all...]
  /external/chromium/chrome/browser/importer/
toolbar_importer.cc 100 const ResponseCookies& cookies,
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_test.cc 500 const ResponseCookies& cookies,
  /external/chromium/chrome/common/net/gaia/
gaia_auth_fetcher.cc 424 const ResponseCookies& cookies,
  /external/chromium_org/chrome/browser/resources/options/
options.js 115 $('show-cookies-button')]);

Completed in 964 milliseconds

1 2 3 4 5 6 7 891011