/third_party/libsoup/libsoup/ |
D | soup-hsts-policy.c | 78 copy->expires = policy->expires ? in G_DEFINE_BOXED_TYPE() 79 soup_date_copy (policy->expires) : NULL; in G_DEFINE_BOXED_TYPE() 111 if ((policy1->expires && !policy2->expires) || in soup_hsts_policy_equal() 112 (!policy1->expires && policy2->expires)) in soup_hsts_policy_equal() 115 if (policy1->expires && policy2->expires && in soup_hsts_policy_equal() 116 soup_date_to_time_t (policy1->expires) != in soup_hsts_policy_equal() 117 soup_date_to_time_t (policy2->expires)) in soup_hsts_policy_equal() 161 SoupDate *expires; in soup_hsts_policy_new() local 167 expires = soup_date_new (1970, 1, 1, 0, 0, 0); in soup_hsts_policy_new() 169 expires = soup_date_new_from_now (max_age); in soup_hsts_policy_new() [all …]
|
D | soup-cookie.c | 87 if (cookie->expires) in G_DEFINE_BOXED_TYPE() 88 copy->expires = soup_date_copy(cookie->expires); in G_DEFINE_BOXED_TYPE() 218 cookie->expires = parse_date (&p); in parse_one_cookie() 565 if (cookie->expires) in soup_cookie_set_max_age() 566 soup_date_free (cookie->expires); in soup_cookie_set_max_age() 569 cookie->expires = NULL; in soup_cookie_set_max_age() 574 cookie->expires = soup_date_new (1970, 1, 1, 0, 0, 0); in soup_cookie_set_max_age() 576 cookie->expires = soup_date_new_from_now (max_age); in soup_cookie_set_max_age() 627 return cookie->expires; in soup_cookie_get_expires() 644 soup_cookie_set_expires (SoupCookie *cookie, SoupDate *expires) in soup_cookie_set_expires() argument [all …]
|
D | soup-hsts-enforcer-db.c | 153 SoupDate *expires; in query_all_callback() local 164 expires = soup_date_new_from_time_t (expire_time); in query_all_callback() 168 policy = soup_hsts_policy_new_full (host, max_age, expires, include_subdomains); in query_all_callback() 174 soup_date_free (expires); in query_all_callback() 279 if (new_policy && new_policy->expires) { in soup_hsts_enforcer_db_changed() 280 gulong expires; in soup_hsts_enforcer_db_changed() local 282 expires = (gulong)soup_date_to_time_t (new_policy->expires); in soup_hsts_enforcer_db_changed() 287 expires, in soup_hsts_enforcer_db_changed()
|
D | soup-cookie-jar-db.c | 297 if (new_cookie && new_cookie->expires) { in soup_cookie_jar_db_changed() 298 gulong expires; in soup_cookie_jar_db_changed() local 300 expires = (gulong)soup_date_to_time_t (new_cookie->expires); in soup_cookie_jar_db_changed() 306 expires, in soup_cookie_jar_db_changed()
|
D | soup-cookie-jar-text.c | 160 char *host, *path, *secure, *expires, *name, *value, *samesite = NULL; in parse_cookie() local 177 expires = result[4]; in parse_cookie() 178 expire_time = strtoul (expires, NULL, 10); in parse_cookie() 264 (gulong)soup_date_to_time_t (cookie->expires), in write_cookie() 354 if (new_cookie->expires) in soup_cookie_jar_text_changed()
|
D | soup-hsts-policy.h | 17 SoupDate *expires; member 34 SoupDate *expires,
|
/third_party/toybox/toys/pending/ |
D | dumpleases.c | 30 uint32_t expires; member 59 exp = ntohl(lease_struct.expires) + written_time; in dumpleases_main() 66 unsigned expires = exp - current_time; in dumpleases_main() local 67 dt = expires / (24*60*60); expires %= (24*60*60); in dumpleases_main() 68 hr = expires / (60*60); expires %= (60*60); in dumpleases_main() 69 m = expires / 60; expires %= 60; in dumpleases_main() 71 xprintf("%02u:%02u:%02u\n", hr, m, (unsigned)expires); in dumpleases_main()
|
D | dhcpd.c | 190 uint32_t expires; member 200 uint32_t expires; member 1211 tmp_time = dls->expires; in write_leasefile() 1212 dls->expires -= curr; in write_leasefile() 1213 if ((int32_t) dls->expires < 0) goto skip; in write_leasefile() 1214 dls->expires = htonl(dls->expires); in write_leasefile() 1217 dls->expires = tmp_time; in write_leasefile() 1248 tmp_time = dls6->expires; in write_lease6file() 1249 dls6->expires -= curr; in write_lease6file() 1250 if ((int32_t) dls6->expires < 0) goto skip; in write_lease6file() [all …]
|
/third_party/curl/lib/ |
D | hsts.c | 114 curl_off_t expires) in hsts_create() argument 120 sts->expires = expires; in hsts_create() 135 curl_off_t expires = 0; in Curl_hsts_parse() local 165 offt = curlx_strtoofft(p, &endp, 10, &expires); in Curl_hsts_parse() 167 expires = CURL_OFF_T_MAX; in Curl_hsts_parse() 202 if(!expires) { in Curl_hsts_parse() 212 if(CURL_OFF_T_MAX - now < expires) in Curl_hsts_parse() 214 expires = CURL_OFF_T_MAX; in Curl_hsts_parse() 216 expires += now; in Curl_hsts_parse() 222 sts->expires = expires; in Curl_hsts_parse() [all …]
|
D | psl.c | 65 if(!pslcache->psl || pslcache->expires <= now) { in Curl_psl_use() 74 if(!pslcache->psl || pslcache->expires <= now) { in Curl_psl_use() 76 time_t expires = TIME_T_MAX; in Curl_psl_use() local 82 expires = now < TIME_T_MAX - PSL_TTL? now + PSL_TTL: TIME_T_MAX; in Curl_psl_use() 94 pslcache->expires = expires; in Curl_psl_use()
|
D | cookie.c | 403 if(co->expires && co->expires < now) { in remove_expired() 418 if(co->expires && co->expires < cookies->next_expiration) in remove_expired() 419 cookies->next_expiration = co->expires; in remove_expired() 763 &co->expires); in Curl_cookie_add() 766 co->expires = CURL_OFF_T_MAX; in Curl_cookie_add() 768 if(!co->expires) in Curl_cookie_add() 770 co->expires = 1; in Curl_cookie_add() 771 else if(CURL_OFF_T_MAX - now < co->expires) in Curl_cookie_add() 773 co->expires = CURL_OFF_T_MAX; in Curl_cookie_add() 775 co->expires += now; in Curl_cookie_add() [all …]
|
D | altsvc.c | 165 time_t expires = Curl_getdate_capped(date); in altsvc_add() local 168 as->expires = expires; in altsvc_add() 234 CURLcode result = Curl_gmtime(as->expires, &stamp); in altsvc_out() 569 as->expires = maxage + time(NULL); in Curl_altsvc_parse() 619 if(as->expires < now) { in Curl_altsvc_lookup()
|
/third_party/curl/tests/data/ |
D | test1415 | 23 Set-Cookie: test2value=test2; expires=Thursday, 31-Dec-2037 00:00:00 GMT; domain=example.com; path=… 24 Set-Cookie: test3value=test3; expires=Monday, 13-Jun-1988 03:04:55 GMT; domain=example.com; path=/; 25 Set-Cookie: test4value=test4; expires=Thursday, 31-Dec-2037 00:00:00 GMT; domain=example.com; path=… 26 Set-Cookie: test5value=test5; expires=Monday, 13-Jun-1988 03:04:55 GMT; domain=example.com; path=/; 27 Set-Cookie: test6value=test6; expires=Monday, 13-Jun-1988 03:04:55 GMT; domain=example.com; path=/; 28 Set-Cookie: test7value=test7; expires=Thursday, 31-Dec-2037 00:00:00 GMT; domain=example.com; path=… 29 Set-Cookie: test8value=test8; expires=Monday, 13-Jun-1988 03:04:55 GMT; domain=example.com; path=/;
|
D | test1104 | 18 Set-Cookie: test=true; domain=127.0.0.1; path=/; expires=Thu Jan 1 00:00:00 GMT 1970; 19 Set-Cookie: test2=true; domain=127.0.0.1; path=/; expires=Fri Feb 13 11:56:27 GMT 2037; 39 Set-Cookie: test=true; domain=127.0.0.1; path=/; expires=Thu Jan 1 00:00:00 GMT 1970; 40 Set-Cookie: test2=true; domain=127.0.0.1; path=/; expires=Fri Feb 13 11:56:27 GMT 2037;
|
D | test506 | 18 Set-Cookie: test1=one; domain=foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 19 Set-Cookie: test2=two; domain=host.foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 20 Set-Cookie: test3=three; domain=foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 30 Set-Cookie: test4=four; domain=host.foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 31 Set-Cookie: test5=five; domain=host.foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 42 Set-Cookie: test4=overwritten4; domain=host.foo.com; expires=Sat May 5 GMT 11:56:27 2035 43 Set-Cookie: test1=overwritten1; domain=foo.com; expires=Thu Mar 3 GMT 11:56:27 2033 44 Set-Cookie: test6=six; domain=.www.host.foo.com; expires=Thu Mar 3 GMT 11:56:27 2033 45 Set-Cookie: test6=six_more; expires=Thu Mar 3 GMT 11:56:27 2033
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
D | timer.h | 46 ULONG expires; member 72 #define mod_timer(timer, expires) \ argument 73 linux_mod_timer(timer, expires) 84 extern int linux_mod_timer(timer_list_t *timer, ULONG expires);
|
/third_party/node/deps/npm/node_modules/tough-cookie/lib/ |
D | cookie.js | 494 c.expires = exp; 722 Cookie.prototype.expires = "Infinity"; // coerces to literal Infinity method in Cookie 810 if (this.expires != Infinity && !(this.expires instanceof Date) && !parseDate(this.expires)) { 835 this.expires = exp; 837 this.expires = parseDate(exp) || "Infinity"; 865 if (this.expires != Infinity) { 866 if (this.expires instanceof Date) { 867 str += '; Expires='+formatDate(this.expires); 869 str += '; Expires='+this.expires; 913 var expires = this.expires; [all …]
|
/third_party/flutter/flutter/packages/flutter/test/gestures/ |
D | multidrag_test.dart | 31 …er.route(pointer.move(const Offset(20.0, 60.0))); // move more than touch slop before delay expires 35 tester.route(pointer.move(const Offset(30.0, 120.0))); // move some more after delay expires 56 …er.route(pointer.move(const Offset(20.0, 20.0))); // move less than touch slop before delay expires 60 …ter.route(pointer.move(const Offset(30.0, 70.0))); // move more than touch slop after delay expires 82 …ute(mousePointer.move(const Offset(20.0, 20.0))); // move less than touch slop before delay expires 87 …oute(mousePointer.move(const Offset(30.0, 70.0))); // move more than touch slop after delay expires
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
D | linux_timer.c | 65 …ret = LOS_SwtmrCreate(timer->expires, LOS_SWTMR_MODE_NO_SELFDELETE, (SWTMR_PROC_FUNC)timer->functi… in DoAddTimer() 122 int linux_mod_timer(struct timer_list *timer, unsigned long expires) in linux_mod_timer() argument 136 timer->expires = expires; in linux_mod_timer()
|
/third_party/python/Lib/http/ |
D | cookiejar.py | 767 expires, argument 776 if expires is not None: expires = int(float(expires)) 796 self.expires = expires 813 if (self.expires is not None) and (self.expires <= now): 1499 expires = standard.get("expires", Absent) 1557 if expires is Absent: 1558 expires = None 1560 elif expires <= self._now: 1577 expires, 1850 if cookie.expires: h.append(("expires", [all …]
|
/third_party/node/deps/npm/node_modules/http-cache-semantics/node4/ |
D | index.js | 106 delete this._resHeaders.expires; 138 this._resHeaders.expires || 149 …rn this._isShared && this._rescc['s-maxage'] || this._rescc['max-age'] || this._resHeaders.expires; 366 if (this._resHeaders.expires) { 367 var expires = Date.parse(this._resHeaders.expires); 369 if (Number.isNaN(expires) || expires < dateValue) { 372 return Math.max(defaultMinTtl, (expires - dateValue) / 1000);
|
/third_party/tzdata/ |
D | leapseconds.awk | 107 sstamp_to_ymdhMs(expires, ss_NTP) 131 sstamp_to_ymdhMs(expires, ss_NTP) 133 expires - epoch_minus_NTP, \
|
/third_party/python/Doc/library/ |
D | spwd.rst | 36 | | | expires to warn user about it | 39 | | | expires until account is | 43 | | | when account expires |
|
/third_party/popt/tests/test3-data/ |
D | 03.answer | 1 single string: ' --confversion="1.0.0.0" --expires="19:57:56 03/16/01" --sessions="-1" --hostid="72… 4 '--expires=19:57:56 03/16/01'
|
/third_party/cef/tests/ceftests/ |
D | cookie_unittest.cc | 165 cookie.expires.year = 2200; in CreateCookie() 166 cookie.expires.month = 4; in CreateCookie() 167 cookie.expires.day_of_week = 5; in CreateCookie() 168 cookie.expires.day_of_month = 11; in CreateCookie() 246 EXPECT_EQ(cookie.expires.year, cookie_read.expires.year); in GetCookie() 247 EXPECT_EQ(cookie.expires.month, cookie_read.expires.month); in GetCookie() 248 EXPECT_EQ(cookie.expires.day_of_week, cookie_read.expires.day_of_week); in GetCookie() 249 EXPECT_EQ(cookie.expires.day_of_month, cookie_read.expires.day_of_month); in GetCookie() 250 EXPECT_EQ(cookie.expires.hour, cookie_read.expires.hour); in GetCookie() 251 EXPECT_EQ(cookie.expires.minute, cookie_read.expires.minute); in GetCookie() [all …]
|