HomeSort by relevance Sort by last modified time
    Searched defs:cookies (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium/chrome/browser/importer/
toolbar_importer_utils.cc 30 std::string cookies = store->GetCookiesWithOptions(url, options); local
32 base::SplitString(cookies, kSplitStringToken, &cookie_list);
  /external/webkit/Source/WebCore/platform/efl/
CookieJarEfl.cpp 45 String cookies(const Document* document, const KURL& url) function in namespace:WebCore
  /external/webkit/Source/WebCore/platform/network/android/
CookieJarAndroid.cpp 39 String cookies(const Document* document, const KURL& url) function in namespace:WebCore
41 return PlatformBridge::cookies(document, url);
47 return PlatformBridge::cookies(document, url);
  /external/webkit/Source/WebCore/platform/network/chromium/
CookieJarChromium.cpp 45 String cookies(const Document* document, const KURL& url) function in namespace:WebCore
47 return PlatformBridge::cookies(document, url);
  /external/apache-http/src/org/apache/http/impl/client/
BasicCookieStore.java 60 private final ArrayList<Cookie> cookies; field in class:BasicCookieStore
71 this.cookies = new ArrayList<Cookie>();
76 * Adds an {@link Cookie HTTP cookie}, replacing any existing equivalent cookies.
88 for (Iterator<Cookie> it = cookies.iterator(); it.hasNext();) {
95 cookies.add(cookie);
101 * Adds an array of {@link Cookie HTTP cookies}. Cookies are added individually and
102 * in the given array order. If any of the given cookies has already expired it will
105 * @param cookies the {@link Cookie cookies} to be adde
    [all...]
  /external/chromium/chrome/browser/net/
cookie_policy_browsertest.cc 25 std::string* cookies)
29 cookies_(cookies) {}
52 std::string cookies; local
60 new GetCookiesTask(url, context_getter, &event, &cookies)));
62 return cookies;
100 // third-party cookie blocking if the first party for cookies URL is not
sqlite_persistent_cookie_store_unittest.cc 32 std::vector<net::CookieMonster::CanonicalCookie*> cookies; local
33 ASSERT_TRUE(store_->Load(&cookies));
34 ASSERT_TRUE(0 == cookies.size());
81 std::vector<net::CookieMonster::CanonicalCookie*> cookies; local
94 ASSERT_TRUE(store_->Load(&cookies));
95 ASSERT_EQ(1U, cookies.size());
96 ASSERT_STREQ("http://foo.bar", cookies[0]->Domain().c_str());
97 ASSERT_STREQ("A", cookies[0]->Name().c_str());
98 ASSERT_STREQ("B", cookies[0]->Value().c_str());
101 store_->DeleteCookie(*cookies[0])
    [all...]
  /external/chromium/chrome/browser/remoting/
directory_add_request_unittest.cc 40 ResponseCookies cookies; local
42 cookies, data);
  /external/webkit/Source/WebCore/platform/haiku/
CookieJarHaiku.cpp 49 String cookies(const Document*, const KURL& url) function in namespace:WebCore
56 // FIXME: include HttpOnly cookies.
  /external/webkit/Source/WebCore/platform/network/curl/
CookieJarCurl.cpp 36 String cookies(const Document* /*document*/, const KURL& url) function in namespace:WebCore
  /external/webkit/Source/WebCore/platform/network/soup/
CookieJarSoup.cpp 76 String cookies(const Document* /*document*/, const KURL& url) function in namespace:WebCore
83 char* cookies = soup_cookie_jar_get_cookies(jar, uri, FALSE); local
86 String result(String::fromUTF8(cookies));
87 g_free(cookies);
99 char* cookies = soup_cookie_jar_get_cookies(jar, uri, TRUE); local
102 String result(String::fromUTF8(cookies));
103 g_free(cookies);
  /external/webkit/Source/WebCore/platform/network/win/
CookieJarWin.cpp 47 String cookies(const Document* /*document*/, const KURL& url) function in namespace:WebCore
69 return cookies(document, url);
  /external/webkit/Source/WebCore/platform/qt/
CookieJarQt.cpp 68 QList<QNetworkCookie> cookies = QNetworkCookie::parseCookies(QString(value).toAscii());
69 QList<QNetworkCookie>::Iterator it = cookies.begin();
70 while (it != cookies.end()) {
72 it = cookies.erase(it);
76 jar->setCookiesFromUrl(cookies, u);
79 String cookies(const Document* document, const KURL& url) function in namespace:WebCore
86 QList<QNetworkCookie> cookies = jar->cookiesForUrl(u);
87 if (cookies.isEmpty())
91 foreach (QNetworkCookie networkCookie, cookies) {
107 QList<QNetworkCookie> cookies = jar->cookiesForUrl(u)
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebCookieJar.h 44 virtual WebString cookies(const WebURL&, const WebURL& firstPartyForCookies) { return WebString(); } function in class:WebKit::WebCookieJar
  /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/apache-http/src/org/apache/http/impl/cookie/
CookieSpecBase.java 73 List<Cookie> cookies = new ArrayList<Cookie>(elems.length); local
98 cookies.add(cookie);
100 return cookies;
  /external/chromium/net/base/
cookie_monster_perftest.cc 52 std::vector<std::string> cookies; local
54 cookies.push_back(base::StringPrintf("a%03d=b", i));
57 // Add a bunch of cookies on a single host
59 for (std::vector<std::string>::const_iterator it = cookies.begin();
60 it != cookies.end(); ++it) {
66 for (std::vector<std::string>::const_iterator it = cookies.begin();
67 it != cookies.end(); ++it) {
169 // Create a line of 32 domain cookies such that all cookies stored
207 // cookies each. Creation times must be unique
    [all...]
  /external/chromium/net/websockets/
websocket_handshake_handler_unittest.cc 139 std::vector<std::string> cookies; local
140 handler.GetHeaders(kSetCookieHeaders, arraysize(kSetCookieHeaders), &cookies);
141 ASSERT_EQ(2U, cookies.size());
142 EXPECT_EQ("WK-websocket-test-1", cookies[0]);
143 EXPECT_EQ("WK-websocket-test-httponly=1; HttpOnly", cookies[1]);
  /external/webkit/Source/WebKit/android/jni/
CookieManager.cpp 63 std::string cookies = WebCookieJar::get(privateBrowsing)->cookieStore()->GetCookieMonster()->GetCookiesWithOptions(gurl, options); local
64 return stdStringToJstring(env, cookies);
88 // context doesn't already exist, there's no need to create it, as cookies
94 // The Java code removes cookies directly from the backing database, so we do the same,
103 // This simply forces a GC. The getters delete expired cookies so won't return expired cookies anyway.
113 CookieList cookies = cookieMonster->GetAllCookies(); local
114 for (CookieList::const_iterator iter = cookies.begin(); iter != cookies.end(); ++iter) {
163 // File scheme cookies are always accepted with the Android HTTP stack
    [all...]
  /libcore/luni/src/main/java/java/net/
CookieManager.java 27 * the storage of cookies from the policy which decides to accept or deny
28 * cookies. The constructor can have two arguments: a CookieStore and a
36 * some cookies into a cookie store. Three built-in CookiePolicy is defined:
93 * Searches and gets all cookies in the cache by the specified uri in the
100 * @return a map that record all such cookies, the map is unchangeable
123 private static Map<String, List<String>> cookiesToHeaders(List<HttpCookie> cookies) {
124 if (cookies.isEmpty()) {
130 // If all cookies are version 1, add a version 1 header. No header for version 0 cookies.
132 for (HttpCookie cookie : cookies) {
164 List<HttpCookie> cookies = parseCookie(responseHeaders); local
207 List<HttpCookie> cookies = new ArrayList<HttpCookie>(); local
    [all...]
CookieStoreImpl.java 40 List<HttpCookie> cookies = map.get(uri); local
41 if (cookies == null) {
42 cookies = new ArrayList<HttpCookie>();
43 map.put(uri, cookies);
45 cookies.remove(cookie);
47 cookies.add(cookie);
68 // get cookies associated with given URI. If none, returns an empty list
74 i.remove(); // remove expired cookies
81 // get all cookies that domain matches the URI
94 i.remove(); // remove expired cookies
130 List<HttpCookie> cookies = map.get(cookiesUri(uri)); local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
http_bridge_unittest.cc 127 // We return no cookies and a dummy content response.
128 ResponseCookies cookies; local
134 200, cookies, response_content);
173 // no request cookies.
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.h 50 // Resets all cookies related information.
73 // only tracks cookies.
85 // Returns a CookiesTreeModel object for the recoreded allowed cookies.
88 // Returns a CookiesTreeModel object for the recoreded blocked cookies.
131 net::CookieMonster* cookies() const { return cookies_; } function in class:TabSpecificContentSettings::LocalSharedObjectsContainer
182 // Stores the blocked/allowed cookies.
  /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);

Completed in 842 milliseconds

1 2 3