Home
last modified time | relevance | path

Searched refs:hex_data (Results 1 – 3 of 3) sorted by relevance

/netbsd/external/ibm-public/postfix/dist/src/tls/
H A Dtls_scache.c198 VSTRING *hex_data; in tls_scache_encode() local
215 hex_data = vstring_alloc(2 * binary_data_len + 1); in tls_scache_encode()
231 return (hex_data); in tls_scache_encode()
248 cp->cache_label, cache_id, hex_data); in tls_scache_decode()
263 cp->cache_label, cache_id, hex_data); in tls_scache_decode()
300 const char *hex_data; in tls_scache_lookup() local
317 if ((hex_data = dict_get(cp->db, cache_id)) == 0) in tls_scache_lookup()
323 if (tls_scache_decode(cp, cache_id, hex_data, strlen(hex_data), in tls_scache_lookup()
337 VSTRING *hex_data; in tls_scache_update() local
357 dict_put(cp->db, cache_id, STR(hex_data)); in tls_scache_update()
[all …]
/netbsd/sys/external/bsd/drm2/dist/drm/amd/display/include/
H A Dlogger_interface.h45 void dc_conn_log_hex_linux(const uint8_t *hex_data, int hex_data_count);
104 #define CONN_DATA_DETECT(link, hex_data, hex_len, ...) \ argument
107 dc_conn_log_hex_linux(hex_data, hex_len); \
111 #define CONN_DATA_LINK_LOSS(link, hex_data, hex_len, ...) \ argument
114 dc_conn_log_hex_linux(hex_data, hex_len); \
/netbsd/sys/external/bsd/drm2/dist/drm/amd/display/dc/basics/
H A Damdgpu_log_helpers.c36 void dc_conn_log_hex_linux(const uint8_t *hex_data, int hex_data_count) in dc_conn_log_hex_linux() argument
40 if (hex_data) in dc_conn_log_hex_linux()
42 DC_LOG_DEBUG("%2.2X ", hex_data[i]); in dc_conn_log_hex_linux()