/third_party/curl/lib/ |
H A D | cookie.h | 30 struct Cookie { struct 31 struct Cookie *next; /* next in the chain */ 34 char *path; /* path = <this> which is in Set-Cookie: */ 57 struct Cookie *cookies[COOKIE_HASH_SIZE]; 86 /* Maximum number of Set-Cookie: lines accepted in a single response. If more 109 struct Cookie *Curl_cookie_add(struct Curl_easy *data, 115 struct Cookie *Curl_cookie_getlist(struct Curl_easy *data, 118 void Curl_cookie_freelist(struct Cookie *cookies);
|
H A D | cookie.c | 37 struct Cookie *Curl_cookie_add(struct Curl_easy *data, 113 static void freecookie(struct Cookie *co) in freecookie() 141 * "example.com", the user agent will include the cookie in the Cookie in cookie_tailmatch() 382 struct Cookie *co, *nx; in remove_expired() 401 struct Cookie *pv = NULL; in remove_expired() 480 struct Cookie * 492 struct Cookie *clist; in Curl_cookie_add() 493 struct Cookie *co; in Curl_cookie_add() 494 struct Cookie *lastc = NULL; in Curl_cookie_add() 495 struct Cookie *replace_c in Curl_cookie_add() [all...] |
H A D | http.c | 1826 hd_name_eq(name, namelen, STRCONST("Cookie:"))) && in Curl_dynhds_add_custom() 1972 checkprefix("Cookie:", compare)) && in Curl_add_custom_headers() 2774 !Curl_checkheaders(data, STRCONST("Cookie"))) in Curl_http_cookies() 2778 struct Cookie *co = NULL; /* no cookies from start */ in Curl_http_cookies() 2795 struct Cookie *store = co; in Curl_http_cookies() 2796 size_t clen = 8; /* hold the size of the generated Cookie: header */ in Curl_http_cookies() 2802 result = Curl_dyn_addn(r, STRCONST("Cookie: ")); in Curl_http_cookies() 2826 result = Curl_dyn_addn(r, STRCONST("Cookie: ")); in Curl_http_cookies() 3618 checkprefix("Set-Cookie:", headp)) { in Curl_http_header() 3632 headp + strlen("Set-Cookie in Curl_http_header() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Signals.cpp | 52 void *Cookie; member 67 (*RunMe.Callback)(RunMe.Cookie); in RunSignalHandlers() 69 RunMe.Cookie = nullptr; in RunSignalHandlers() 76 void *Cookie) { in insertSignalHandler() 84 SetMe.Cookie = Cookie; in insertSignalHandler() 75 insertSignalHandler(sys::SignalHandlerCallback FnPtr, void *Cookie) insertSignalHandler() argument
|
H A D | Debug.cpp | 121 static void debug_user_sig_handler(void *Cookie) { in debug_user_sig_handler() argument
|
/third_party/node/deps/undici/src/lib/cookies/ |
H A D | index.js | 9 * @typedef {Object} Cookie 73 * @returns {Cookie[]} 92 * @param {Cookie} cookie 100 cookie = webidl.converters.Cookie(cookie) 105 headers.append('Set-Cookie', stringify(cookie)) 122 webidl.converters.Cookie = webidl.dictionaryConverter([
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Signals.h | 62 void AddSignalHandler(void (*FnPtr)(void *), void *Cookie);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86WinEHState.cpp | 97 Constant *Cookie = nullptr; member in __anon24957::WinEHStatePass 135 Cookie = nullptr; in doFinalization() 328 Cookie = TheModule->getOrInsertGlobal("__security_cookie", Int32Ty); in emitExceptionRegistrationRecord() 329 Value *Val = Builder.CreateLoad(Int32Ty, Cookie, "cookie"); in emitExceptionRegistrationRecord() 334 // If using _except_handler4, the EHGuard contains: FramePtr xor Cookie. in emitExceptionRegistrationRecord() 336 Value *Val = Builder.CreateLoad(Int32Ty, Cookie); in emitExceptionRegistrationRecord() 478 OptionalArgs.push_back(Cookie); in rewriteSetJmpCallSite()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | Signals.h | 63 void AddSignalHandler(SignalHandlerCallback FnPtr, void *Cookie);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | Debug.cpp | 114 static void debug_user_sig_handler(void *Cookie) { in debug_user_sig_handler() argument
|
/third_party/python/Lib/http/ |
H A D | cookiejar.py | 28 __all__ = ['Cookie', 'CookieJar', 'CookiePolicy', 'DefaultCookiePolicy', 56 NETSCAPE_MAGIC_RGX = re.compile("#( Netscape)? HTTP Cookie File") 60 # Netscape HTTP Cookie File 469 The old Netscape cookie format for Set-Cookie can for instance contain 474 that Netscape Cookie headers contain. Ronald Tschalar's HTTPClient 743 class Cookie: class 744 """HTTP Cookie. 749 possible to construct Cookie instances that don't comply with the cookie 750 standards. CookieJar.make_cookies is the factory function for Cookie 824 return "<Cookie [all...] |
/third_party/python/Lib/test/ |
H A D | test_http_cookiejar.py | 16 parse_ns_headers, join_header_words, split_header_words, Cookie, 225 # of Set-Cookie: header 226 # Cookie with name 'expires' 319 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie") 322 """Perform a single request / response cycle, returning Cookie: header.""" 325 cookie_hdr = req.get_header("Cookie", "") 376 # Cookie file should only be readable by the creator 390 # Cookie file should only be readable by the creator 409 headers = ["Set-Cookie: pll_lang=en; Max-Age=31536000; path=/"] 462 # Set-Cookie wit [all...] |