Home
last modified time | relevance | path

Searched refs:cookies (Results 1 – 25 of 206) sorted by relevance

123456789

/third_party/libsoup/tests/
Dcookies-test.c113 GSList *cookies; in do_cookies_subdomain_policy_test() local
135 cookies = soup_cookie_jar_all_cookies (jar); in do_cookies_subdomain_policy_test()
136 g_assert_cmpint (g_slist_length (cookies), ==, 1); in do_cookies_subdomain_policy_test()
137 g_slist_free_full (cookies, (GDestroyNotify)soup_cookie_free); in do_cookies_subdomain_policy_test()
141 cookies = soup_cookie_jar_all_cookies (jar); in do_cookies_subdomain_policy_test()
142 g_assert_cmpint (g_slist_length (cookies), ==, 2); in do_cookies_subdomain_policy_test()
143 g_slist_free_full (cookies, (GDestroyNotify)soup_cookie_free); in do_cookies_subdomain_policy_test()
149 cookies = soup_cookie_jar_all_cookies (jar); in do_cookies_subdomain_policy_test()
150 g_assert_cmpint (g_slist_length (cookies), ==, 2); in do_cookies_subdomain_policy_test()
151 g_slist_free_full (cookies, (GDestroyNotify)soup_cookie_free); in do_cookies_subdomain_policy_test()
[all …]
Dsamesite-test.c9 GSList *cookies; member
40 g_slist_free_full (fixture->cookies, (GDestroyNotify) soup_cookie_free); in same_site_teardown()
44 assert_highest_policy_visible (GSList *cookies, SoupSameSitePolicy policy) in assert_highest_policy_visible() argument
48 for (l = cookies; l; l = l->next) { in assert_highest_policy_visible()
82 …fixture->cookies = soup_cookie_jar_get_cookie_list_with_same_site_info (fixture->jar, fixture->ori… in same_site_test()
88 assert_highest_policy_visible (fixture->cookies, test->visible_policy); in same_site_test()
/third_party/python/Lib/test/
Dtest_http_cookies.py6 from http import cookies
54 C = cookies.SimpleCookie()
62 C = cookies.SimpleCookie()
89 C = cookies.SimpleCookie()
96 C = cookies.SimpleCookie('Customer="WILE_E_COYOTE"')
102 C = cookies.SimpleCookie()
106 C = cookies.SimpleCookie()
112 C = cookies.SimpleCookie('Customer="WILE_E_COYOTE"')
118 C = cookies.SimpleCookie('Customer="WILE_E_COYOTE"')
128 C = cookies.SimpleCookie('Customer="WILE_E_COYOTE"')
[all …]
/third_party/python/Doc/library/
Dhttp.cookiejar.rst5 :synopsis: Classes for automatic handling of HTTP cookies.
15 cookies. It is useful for accessing web sites that require small pieces of data
16 -- :dfn:`cookies` -- to be set on the client machine by an HTTP response from a
21 :rfc:`2109` cookies are parsed as Netscape cookies and subsequently treated
22 either as Netscape or RFC 2965 cookies according to the 'policy' in effect.
23 Note that the great majority of cookies on the internet are Netscape cookies.
44 cookies from a file. :exc:`LoadError` is a subclass of :exc:`OSError`.
58 The :class:`CookieJar` class stores HTTP cookies. It extracts cookies from HTTP
60 automatically expire contained cookies when necessary. Subclasses are also
61 responsible for storing and retrieving cookies from a file or database.
[all …]
Dhttp.cookies.rst1 :mod:`http.cookies` --- HTTP state management
4 .. module:: http.cookies
5 :synopsis: Support for HTTP state management (cookies).
10 **Source code:** :source:`Lib/http/cookies.py`
14 The :mod:`http.cookies` module defines classes for abstracting the concept of
15 cookies, an HTTP state management mechanism. It supports both simple string-only
16 cookies, and provides an abstraction for having any serializable data-type as
66 :mod:`http.cookies` modules do not depend on each other.
245 The following example demonstrates how to use the :mod:`http.cookies` module.
250 >>> from http import cookies
[all …]
/third_party/cef/tests/ceftests/
Dcookie_unittest.cc95 TestVisitor(CookieVector* cookies, in TestVisitor() argument
98 : cookies_(cookies), in TestVisitor()
128 const CookieVector& cookies, in SetCookies() argument
131 CookieVector::const_iterator it = cookies.begin(); in SetCookies()
132 for (; it != cookies.end(); ++it) { in SetCookies()
171 CookieVector cookies; in CreateCookie() local
172 cookies.push_back(cookie); in CreateCookie()
174 SetCookies(manager, kTestUrl, cookies, true, event); in CreateCookie()
181 CookieVector& cookies, in VisitUrlCookies() argument
186 new TestVisitor(&cookies, deleteCookies, std::move(callback)))); in VisitUrlCookies()
[all …]
/third_party/libsoup/libsoup/
Dsoup-cookie.c901 GSList *cookies = NULL; in soup_cookies_from_response() local
917 cookies = g_slist_prepend (cookies, cookie); in soup_cookies_from_response()
919 return g_slist_reverse (cookies); in soup_cookies_from_response()
943 GSList *cookies = NULL; in soup_cookies_from_request() local
959 cookies = g_slist_prepend (cookies, cookie); in soup_cookies_from_request()
964 return g_slist_reverse (cookies); in soup_cookies_from_request()
979 soup_cookies_to_response (GSList *cookies, SoupMessage *msg) in soup_cookies_to_response() argument
984 while (cookies) { in soup_cookies_to_response()
985 serialize_cookie (cookies->data, header, TRUE); in soup_cookies_to_response()
989 cookies = cookies->next; in soup_cookies_to_response()
[all …]
Dsoup-cookie-jar.c341 GSList *cookies, *domain_cookies; in get_cookies() local
355 cookies = NULL; in get_cookies()
376 cookies = g_slist_append (cookies, copy_cookies ? soup_cookie_copy (cookie) : cookie); in get_cookies()
394 return g_slist_sort_with_data (cookies, compare_cookies, jar); in get_cookies()
424 GSList *cookies; in soup_cookie_jar_get_cookies() local
429 cookies = get_cookies (jar, uri, NULL, NULL, TRUE, for_http, FALSE, FALSE); in soup_cookie_jar_get_cookies()
431 if (cookies) { in soup_cookie_jar_get_cookies()
432 char *result = soup_cookies_to_cookie_header (cookies); in soup_cookie_jar_get_cookies()
433 g_slist_free (cookies); in soup_cookie_jar_get_cookies()
825 GSList *cookies; in msg_starting_cb() local
[all …]
/third_party/curl/lib/
Dcookie.c336 data->cookies, in Curl_cookie_loadfiles()
345 data->cookies = newcookies; in Curl_cookie_loadfiles()
378 static void remove_expired(struct CookieInfo *cookies) in remove_expired() argument
392 if(now < cookies->next_expiration && in remove_expired()
393 cookies->next_expiration != CURL_OFF_T_MAX) in remove_expired()
396 cookies->next_expiration = CURL_OFF_T_MAX; in remove_expired()
400 co = cookies->cookies[i]; in remove_expired()
405 cookies->cookies[i] = co->next; in remove_expired()
410 cookies->numcookies--; in remove_expired()
418 if(co->expires && co->expires < cookies->next_expiration) in remove_expired()
[all …]
Dshare.c86 if(!share->cookies) { in curl_share_setopt()
87 share->cookies = Curl_cookie_init(NULL, NULL, NULL, TRUE); in curl_share_setopt()
88 if(!share->cookies) in curl_share_setopt()
151 if(share->cookies) { in curl_share_setopt()
152 Curl_cookie_cleanup(share->cookies); in curl_share_setopt()
153 share->cookies = NULL; in curl_share_setopt()
233 Curl_cookie_cleanup(share->cookies); in curl_share_cleanup()
Dcookie.h61 struct Cookie *cookies[COOKIE_HASH_SIZE]; member
119 void Curl_cookie_freelist(struct Cookie *cookies);
120 void Curl_cookie_clearall(struct CookieInfo *cookies);
121 void Curl_cookie_clearsess(struct CookieInfo *cookies);
/third_party/curl/docs/
DHTTP-COOKIES.md7 requests to the same domains and paths for which the cookies were set.
9 Cookies are either "session cookies" which typically are forgotten when the
11 the cookies aren't session cookies they have expiration dates after which
17 For a very long time, the only spec explaining how to use cookies was the
21 published and details how cookies work within HTTP. In 2016, an update which
26 to deprecate modification of 'secure' cookies from non-secure origins. Both
34 Netscape once created a file format for storing cookies on disk so that they
36 sharing the cookies with browsers, only to see browsers move away from that
70 have curl receive and send cookies exactly as mandated in the specs.
76 tell curl a file to read cookies from and start the cookie engine, or if it
[all …]
/third_party/cef/patch/patches/
Dservices_network_2622.patch44 diff --git net/cookies/cookie_monster.cc net/cookies/cookie_monster.cc
46 --- net/cookies/cookie_monster.cc
47 +++ net/cookies/cookie_monster.cc
74 diff --git net/cookies/cookie_monster.h net/cookies/cookie_monster.h
76 --- net/cookies/cookie_monster.h
77 +++ net/cookies/cookie_monster.h
85 // Enables writing session cookies into the cookie database. If this this
87 diff --git net/cookies/cookie_store.h net/cookies/cookie_store.h
89 --- net/cookies/cookie_store.h
90 +++ net/cookies/cookie_store.h
[all …]
/third_party/curl/docs/cmdline-opts/
Dcookie-jar.d5 Help: Write cookies to <filename> after operation
8 Specify to which file you want curl to write all cookies after a completed
9 operation. Curl writes all cookies from its in-memory cookie storage to the
10 given file at the end of operations. If no cookies are known, no data will be
12 you set the file name to a single dash, "-", the cookies will be written to
16 record and use cookies. Another way to activate it is to use the --cookie
Djunk-session-cookies.d1 Long: junk-session-cookies
3 Help: Ignore session cookies read from file
8 When curl is told to read cookies from a given file, this option will make it
10 a new session is started. Typical browsers always discard session cookies when
/third_party/curl/tests/data/
Dtest11516 cookies
13 # reject cookies with too long name (instead of capping)
39 HTTP with too long cookies
42 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -c log/cookies%TESTNUMBER.txt
55 <file name="log/cookies%TESTNUMBER.txt" mode="text">
57 # https://curl.se/docs/http-cookies.html
Dtest3276 cookies
43 HTTP with cookiejar without cookies left
46 http://%HOSTIP:%HTTPPORT/we/want/%TESTNUMBER -b none -c log/cookies%TESTNUMBER http://%HOSTIP:%HTTP…
65 <file name="log/cookies%TESTNUMBER" mode="text">
67 # https://curl.se/docs/http-cookies.html
Dtest11616 cookies
31 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -c log/cookies%TESTNUMBER.txt
44 <file name="log/cookies%TESTNUMBER.txt" mode="text">
46 # https://curl.se/docs/http-cookies.html
Dtest11556 cookies
31 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -c log/cookies%TESTNUMBER.txt
44 <file name="log/cookies%TESTNUMBER.txt" mode="text">
46 # https://curl.se/docs/http-cookies.html
/third_party/node/deps/npm/node_modules/request/lib/
Dhar.js52 if (data.cookies && data.cookies.length) {
53 var cookies = data.cookies.map(function (cookie) {
57 if (cookies.length) {
58 data.headersObj.cookie = cookies.join('; ')
127 har.cookies = har.cookies || []
/third_party/node/deps/npm/node_modules/tough-cookie/lib/
Dcookie.js1183 store.findCookies(host, allPaths ? null : path, function(err,cookies) { argument
1188 cookies = cookies.filter(matchingCookie);
1192 cookies = cookies.sort(cookieCompare);
1197 cookies.forEach(function(c) {
1202 cb(null,cookies);
1210 var next = function(err,cookies) { argument
1214 cb(null, cookies
1230 var next = function(err,cookies) { argument
1234 cb(null, cookies.map(function(c){
1264 cookies: [] property
[all …]
/third_party/curl/docs/examples/
Dcookie_interface.c39 struct curl_slist *cookies; in print_cookies() local
44 res = curl_easy_getinfo(curl, CURLINFO_COOKIELIST, &cookies); in print_cookies()
50 nc = cookies; in print_cookies()
60 curl_slist_free_all(cookies); in print_cookies()
/third_party/node/test/parallel/
Dtest-http-proxy.js28 const cookies = [ variable
34 'set-cookie': cookies,
55 assert.deepStrictEqual(proxy_res.headers['set-cookie'], cookies);
86 assert.deepStrictEqual(res.headers['set-cookie'], cookies);
/third_party/node/deps/npm/node_modules/tough-cookie/
DREADME.md19 cookiejar.getCookies('http://example.com/otherpath',function(err,cookies) {
20 res.headers['cookie'] = cookies.join('; ');
30 Why the name? NPM modules `cookie`, `cookies` and `cookiejar` were already taken.
84 …ame upon which a cookie can be set. Returns `null` if the hostname cannot have cookies set for it.
92 For use with `.sort()`, sorts a list of cookies into the recommended order given in the RFC (Sectio…
99 var cookies = [ /* unsorted array of Cookie objects */ ];
100 cookies = cookies.sort(cookieCompare);
103cookies within the same milisecond are entirely possible. This is especially true when using the `…
124 …* _loose_ - boolean - if `true` enable parsing of key-less cookies like `=abc` and `=`, which are …
132 cookies = res.headers['set-cookie'].map(Cookie.parse);
[all …]
/third_party/cef/libcef/browser/net_service/
Dcookie_manager_impl.cc71 const std::vector<net::CanonicalCookie>& cookies) { in ExecuteVisitor() argument
80 int total = cookies.size(), count = 0; in ExecuteVisitor()
81 for (const auto& cc : cookies) { in ExecuteVisitor()
101 const net::CookieList& cookies) { in GetAllCookiesCallbackImpl() argument
103 browser_context_getter, cookies)); in GetAllCookiesCallbackImpl()
111 net::CookieList cookies; in GetCookiesCallbackImpl() local
113 cookies.push_back(status.cookie); in GetCookiesCallbackImpl()
115 GetAllCookiesCallbackImpl(visitor, browser_context_getter, cookies); in GetCookiesCallbackImpl()

123456789