Searched refs:lifetime (Results 1 – 9 of 9) sorted by relevance
109 uint32_t lifetime );
1516 uint32_t *lifetime );
121 uint32_t lifetime ) in mbedtls_ssl_ticket_setup() argument129 ctx->ticket_lifetime = lifetime; in mbedtls_ssl_ticket_setup()
4193 uint32_t lifetime; in ssl_write_new_session_ticket() local4215 &tlen, &lifetime ) ) != 0 ) in ssl_write_new_session_ticket()4221 ssl->out_msg[4] = ( lifetime >> 24 ) & 0xFF; in ssl_write_new_session_ticket()4222 ssl->out_msg[5] = ( lifetime >> 16 ) & 0xFF; in ssl_write_new_session_ticket()4223 ssl->out_msg[6] = ( lifetime >> 8 ) & 0xFF; in ssl_write_new_session_ticket()4224 ssl->out_msg[7] = ( lifetime ) & 0xFF; in ssl_write_new_session_ticket()
3400 uint32_t lifetime; in ssl_parse_new_session_ticket() local3442 lifetime = ( ((uint32_t) msg[0]) << 24 ) | ( msg[1] << 16 ) | in ssl_parse_new_session_ticket()3486 ssl->session_negotiate->ticket_lifetime = lifetime; in ssl_parse_new_session_ticket()
28 lifetime. In the most common use case, one would construct such an object at the
754 The pools can be regarded as lifetime identifiers for objects. Two758 Permanent lifetime is used for parameters and tables that should be carried760 parameters. Image lifetime is used for everything else. (A third lifetime,
2268 the lifetime of the object, unless it is overwritten by a new table definition.2813 JPEG memory manager with lifetime JPOOL_PERMANENT will work nicely.) You
162 invalidated keys of a lifetime of less than a 1s. Fixes #1968.
Completed in 33 milliseconds