Home
last modified time | relevance | path

Searched defs:Cookie (Results 1 – 12 of 12) sorted by relevance

/third_party/curl/lib/
Dcookie.h28 struct Cookie { struct
29 struct Cookie *next; /* next in the chain */ argument
32 char *path; /* path = <this> which is in Set-Cookie: */ argument
33 char *spath; /* sanitized cookie path */
34 char *domain; /* domain = <this> */
35 curl_off_t expires; /* expires = <this> */
59 struct CookieInfo { argument
61 struct Cookie *cookies[COOKIE_HASH_SIZE]; argument
/third_party/node/deps/npm/node_modules/tough-cookie/
DREADME.md114 ## Cookie section in API
118 ### `Cookie.parse(cookieString[, options])`
140 ### Properties
163 ### `Cookie([{properties}])`
167 ### `.toString()`
171 ### `.cookieString()`
175 ### `.setExpires(String)`
179 ### `.setMaxAge(number)`
183 ### `.expiryTime([now=Date.now()])`
185 ### `.expiryDate([now=Date.now()])`
[all …]
/third_party/typescript/tests/cases/compiler/
DobjectCreationOfElementAccessExpression.ts28 class Cookie extends MonsterFood { class
53 var foods = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new… variable
54 var foods2: MonsterFood[] = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chi… variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DSignals.cpp52 void *Cookie; member
76 void *Cookie) { in insertSignalHandler()
DDebug.cpp121 static void debug_user_sig_handler(void *Cookie) { in debug_user_sig_handler()
/third_party/node/deps/npm/node_modules/request/lib/
Dcookies.js5 var Cookie = tough.Cookie variable
/third_party/typescript/tests/baselines/reference/
DobjectCreationOfElementAccessExpression.js29 class Cookie extends MonsterFood { class
111 function Cookie(flavor, isGlutenFree) { class in Cookie
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DDebug.cpp114 static void debug_user_sig_handler(void *Cookie) { in debug_user_sig_handler()
/third_party/node/test/parallel/
Dtest-http.js72 Cookie: [ 'foo=bar', 'bar=baz', 'baz=quux' ] property
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86WinEHState.cpp97 Constant *Cookie = nullptr; member in __anon5c7bba070111::WinEHStatePass
/third_party/node/deps/npm/node_modules/tough-cookie/lib/
Dcookie.js690 function Cookie(options) { class
/third_party/python/Lib/http/
Dcookiejar.py744 class Cookie: class