Searched refs:cookie (Results 101 - 125 of 424) sorted by relevance

1234567891011>>

/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwCookieManager.java38 * Control whether cookie is enabled or disabled
39 * @param accept TRUE if accept cookie
46 * Return whether cookie is enabled
47 * @return TRUE if accept cookie
75 * Set cookie for a given url. The old cookie with same host/path/name will
76 * be removed. The new cookie will be added if it is not expired or it does
77 * not have expiration which implies it is session cookie.
78 * @param url The url which cookie is set for.
79 * @param value The value for set-cookie
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dmock_browsing_data_cookie_helper.h23 virtual void DeleteCookie(const net::CanonicalCookie& cookie) OVERRIDE;
25 // Adds some cookie samples.
H A Dbrowsing_data_cookie_helper_unittest.cc18 // Test expectations for a given cookie.
23 bool MatchesCookie(const net::CanonicalCookie& cookie) const {
24 if (!source_.empty() && source_ != cookie.Source())
26 if (!domain_.empty() && domain_ != cookie.Domain())
28 if (!path_.empty() && path_ != cookie.Path())
30 if (!name_.empty() && name_ != cookie.Name())
32 if (!value_.empty() && value_ != cookie.Value())
48 explicit CookieMatcher(const net::CanonicalCookie& cookie) argument
49 : cookie_(cookie) {}
69 // Adds an expectation for a cookie tha
242 net::CanonicalCookie cookie = cookie_list_[0]; local
282 net::CookieList cookie; local
315 net::CookieList cookie; local
341 net::CookieList cookie; local
[all...]
/external/chromium_org/chrome/browser/net/
H A Dcookie_store_util.cc45 const net::CanonicalCookie& cookie,
51 this, cookie, removed, cause));
72 const net::CanonicalCookie& cookie,
77 ChromeCookieDetails cookie_details(&cookie, removed, cause);
71 OnCookieChangedAsyncHelper( const net::CanonicalCookie& cookie, bool removed, net::CookieMonster::Delegate::ChangeCause cause) argument
/external/chromium_org/mojo/services/html_viewer/
H A Dwebcookiejar_impl.h22 const blink::WebString& cookie);
H A Dwebcookiejar_impl.cc32 const blink::WebString& cookie) {
34 store_->Set(url.string().utf8(), cookie.utf8(),
37 // Wait to ensure the cookie was set before advancing. That way any
38 // subsequent URL request will see the changes to the cookie store.
53 // Wait for the result. Since every outbound request we make to the cookie
30 setCookie(const blink::WebURL& url, const blink::WebURL& first_party_for_cookies, const blink::WebString& cookie) argument
/external/chromium_org/mojo/services/network/
H A Dcookie_store_impl.h23 virtual void Set(const String& url, const String& cookie,
H A Dcookie_store_impl.cc51 const String& cookie,
61 cookie,
50 Set(const String& url, const String& cookie, const Callback<void(bool)>& callback) argument
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCookieJar.h44 virtual void setCookie(const WebURL&, const WebURL& firstPartyForCookies, const WebString& cookie) { } argument
/external/chromium_org/tools/page_cycler/common/
H A Dhead.js15 var cookies = document.cookie.split("; ");
38 document.cookie = "__pc_timings=" + timings + "; path=/";
63 document.cookie = "__pc_done=1; path=/";
80 document.cookie = "__navigated_to_report=1; path=/";
/external/chromium_org/tools/perf/measurements/
H A Dpage_cycler.js23 document.cookie = name + "=" + value + "; path=/";
/external/chromium_org/components/signin/core/browser/
H A Dsignin_client.h35 typedef base::Callback<void(const net::CanonicalCookie* cookie)>
38 typedef base::CallbackList<void(const net::CanonicalCookie* cookie)>
65 // Returns whether the user's credentials should be merged into the cookie
73 // Adds or removes a callback that should be called when a cookie changes.
75 // code observe cookie changes once //chrome/browser/net has been
/external/chromium_org/net/spdy/
H A Dhpack_encoder.cc35 if (it->first == "cookie") {
36 // Note that there can only be one "cookie" header, because header_set is
171 void HpackEncoder::CookieToCrumbs(const Representation& cookie, argument
179 size_t end = cookie.second.find(";", pos);
183 cookie.first,
184 cookie.second.substr(pos)));
188 cookie.first,
189 cookie.second.substr(pos, end - pos)));
193 if (pos != cookie.second.size() && cookie
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jar ... .cookie.MalformedCookieException org.apache.http.cookie.Cookie cookie org.apache.http.cookie
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jar ... cookie.Cookie c1 org.apache.http.cookie.Cookie c2 String path1 String path2 public volatile synthetic
/external/kernel-headers/original/uapi/linux/
H A Dbinder.h69 binder_uintptr_t cookie; member in struct:flat_binder_object
137 binder_uintptr_t cookie; /* target object cookie */ member in struct:binder_transaction_data
164 binder_uintptr_t cookie; member in struct:binder_ptr_cookie
169 binder_uintptr_t cookie; member in struct:binder_handle_cookie
180 binder_uintptr_t cookie; member in struct:binder_pri_ptr_cookie
224 * void *: cookie for binder
232 * void *: cookie for binder
257 * void *: cookie
261 * void *: cookie
[all...]
/external/chromium_org/chrome/browser/chromeos/login/
H A Dprofile_auth_data_unittest.cc47 const char kCookieName[] = "cookie";
180 net::CanonicalCookie* cookie = &user_cookies[0]; local
181 EXPECT_EQ(kSAMLIdPCookieURL, cookie->Source());
182 EXPECT_EQ(kCookieName, cookie->Name());
183 EXPECT_EQ(expected_saml_idp_cookie_value, cookie->Value());
184 EXPECT_EQ(kSAMLIdPCookieDomain, cookie->Domain());
185 cookie = &user_cookies[1];
186 EXPECT_EQ(kGAIACookieURL, cookie->Source());
187 EXPECT_EQ(kCookieName, cookie->Name());
188 EXPECT_EQ(expected_gaia_cookie_value, cookie
[all...]
/external/chromium_org/net/cookies/
H A Dcookie_monster_perftest.cc45 // Note that the performance tests currently all operate on a loaded cookie
65 CookieMonster* cm, const GURL& gurl, const std::string& cookie) {
66 cm->SetCookieWithOptionsAsync(gurl, cookie, options_, base::Bind(
99 std::string cookie(kCookieLine);
102 ParsedCookie pc(cookie);
109 std::string cookie(3800, 'z');
110 cookie += kCookieLine;
113 ParsedCookie pc(cookie);
154 std::string cookie(kCookieLine);
162 // Add a cookie o
64 SetCookie( CookieMonster* cm, const GURL& gurl, const std::string& cookie) argument
222 const std::string cookie = base::StringPrintf(domain_cookie_format_tree, local
264 const std::string cookie = base::StringPrintf(domain_cookie_format_line, local
[all...]
/external/chromium_org/chrome/browser/extensions/api/cookies/
H A Dcookies_unittest.cc89 canonical_cookie1, "some cookie store"));
99 EXPECT_EQ("some cookie store", cookie1->store_id);
107 canonical_cookie2, "some cookie store"));
144 net::CanonicalCookie cookie; local
145 EXPECT_TRUE(filter.MatchesCookie(cookie));
168 net::CanonicalCookie cookie(GURL(),
179 EXPECT_EQ(tests[i].matches, filter.MatchesCookie(cookie));
195 scoped_ptr<Cookie> cookie(
197 canonical_cookie, "some cookie store"));
198 EXPECT_EQ(std::string("011Q255bNX_1!yd\xEF\xBF\xBD" "e+"), cookie
[all...]
/external/chromium_org/chrome/renderer/printing/
H A Dmock_printer.h79 void ScriptedPrint(int cookie,
83 void UpdateSettings(int cookie, PrintMsg_PrintPages_Params* params,
86 void SetPrintedPagesCount(int cookie, int number_pages);
/external/chromium_org/ppapi/generators/
H A Didl_option.py20 testfunc = None, cookie = None):
31 self.cookie = cookie
/external/chromium_org/printing/
H A Dprinted_document.h39 // The cookie shall be unique and has a specific relationship with its
43 int cookie,
98 int cookie() const { return immutable_.cookie_; } function in class:printing::PrintedDocument
156 int cookie,
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8WorkerGlobalScopeEventListener.cpp83 InspectorInstrumentationCookie cookie; local
89 cookie = InspectorInstrumentation::willCallFunction(scriptState()->executionContext(), scriptId, resourceName, lineNumber);
95 InspectorInstrumentation::didCallFunction(cookie);
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dinspector_page.py135 """Returns the value of the cookie by the given |name|."""
141 for cookie in cookies:
142 if cookie['name'] == name:
143 return cookie['value']
/external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/
H A Dwebdriver_tab_backend.py85 cookie = self._browser_backend.driver.get_cookie(name)
86 if cookie:
87 return cookie['value']

Completed in 4898 milliseconds

1234567891011>>