/third_party/f2fs-tools/lib/ |
D | nls_utf8.c | 80 unsigned int maxage; member 499 if (leaf_age <= data->maxage && leaf_age > age) 522 age = data->maxage; 528 if (leaf_age <= data->maxage && leaf_age < age) 556 if (leaf_age <= data->maxage && leaf_age > age) 579 age = data->maxage; 585 if (leaf_age <= data->maxage && leaf_age < age) 613 if (utf8agetab[LEAF_GEN(leaf)] > data->maxage) 642 if (utf8agetab[LEAF_GEN(leaf)] > data->maxage) 775 if (utf8agetab[LEAF_GEN(leaf)] > u8c->data->maxage) { in utf8byte() [all …]
|
/third_party/libcoap/include/coap3/ |
D | coap_block.h | 276 int maxage, 397 int maxage,
|
/third_party/openssl/apps/ |
D | ocsp.c | 68 long maxage); 255 long nsec = MAX_VALIDITY_PERIOD, maxage = -1; in ocsp_main() local 416 opt_long(opt_arg(), &maxage); in ocsp_main() 846 if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage)) in ocsp_main() 969 long maxage) in print_ocsp_summary() argument 999 if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) { in print_ocsp_summary()
|
/third_party/node/deps/openssl/openssl/apps/ |
D | ocsp.c | 68 long maxage); 255 long nsec = MAX_VALIDITY_PERIOD, maxage = -1; in ocsp_main() local 416 opt_long(opt_arg(), &maxage); in ocsp_main() 846 if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage)) in ocsp_main() 969 long maxage) in print_ocsp_summary() argument 999 if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) { in print_ocsp_summary()
|
/third_party/curl/lib/ |
D | altsvc.c | 540 time_t maxage = 24 * 3600; /* default is 24 hours */ in Curl_altsvc_parse() local 638 maxage = num; in Curl_altsvc_parse() 655 as->expires = maxage + time(NULL); in Curl_altsvc_parse()
|
D | cookie.c | 731 const char *maxage = valuep; in Curl_cookie_add() local 732 offt = curlx_strtoofft((*maxage == '\"')? in Curl_cookie_add() 733 &maxage[1]:&maxage[0], NULL, 10, in Curl_cookie_add()
|
/third_party/libcoap/src/ |
D | coap_block.c | 276 int maxage, in coap_add_data_blocked_response() argument 314 if (maxage >= 0) { in coap_add_data_blocked_response() 317 coap_encode_var_safe(buf, sizeof(buf), maxage), buf); in coap_add_data_blocked_response() 597 int maxage, in coap_add_data_large_internal() argument 867 if (maxage >= 0) { in coap_add_data_large_internal() 871 lg_xmit->b.b2.maxage_expire = coap_ticks_to_rt(now) + maxage; in coap_add_data_large_internal() 1022 int maxage, in coap_add_data_large_response() argument 1081 if (maxage >= 0) { in coap_add_data_large_response() 1084 coap_encode_var_safe(buf, sizeof(buf), maxage), buf); in coap_add_data_large_response() 1111 query, maxage, etag, length, data, in coap_add_data_large_response()
|
/third_party/libcoap/examples/ |
D | coap-server.c | 1613 int maxage = -1; in proxy_response_handler() local 1676 maxage = coap_decode_var_bytes(coap_opt_value(option), in proxy_response_handler() 1705 media_type, maxage, etag, size, data, in proxy_response_handler()
|
/third_party/python/Doc/library/ |
D | collections.rst | 1185 def __init__(self, func, maxsize=128, maxage=30): 1189 self.maxage = maxage 1195 if time() - timestamp <= self.maxage:
|