Home
last modified time | relevance | path

Searched refs:maxage (Results 1 – 9 of 9) sorted by relevance

/third_party/f2fs-tools/lib/
Dnls_utf8.c80 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/
Dcoap_block.h276 int maxage,
397 int maxage,
/third_party/openssl/apps/
Docsp.c68 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/
Docsp.c68 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/
Daltsvc.c540 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()
Dcookie.c731 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/
Dcoap_block.c276 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/
Dcoap-server.c1613 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/
Dcollections.rst1185 def __init__(self, func, maxsize=128, maxage=30):
1189 self.maxage = maxage
1195 if time() - timestamp <= self.maxage: