Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/providers/implementations/keymgmt/
H A Dtemplate_kmgmt.c29 static void debug_print(char *fmt, ...) in debug_print() function
33 static void debug_print(char *fmt, ...) in debug_print() function
75 debug_print("new key req\n"); in template_new()
81 debug_print("new key = %p\n", key); in template_new()
87 debug_print("free key %p\n", vkey); in template_free()
100 debug_print("has %p\n", keydata); in template_has()
104 debug_print("has result %d\n", ok); in template_has()
112 debug_print("matching %p and %p\n", keydata1, keydata2); in template_match()
131 debug_print("match result %d\n", ok); in template_match()
153 debug_print("export %p\n", key); in template_export()
[all …]
/freebsd/crypto/openssl/providers/implementations/kem/
H A Dtemplate_kem.c27 static void debug_print(char *fmt, ...) in debug_print() function
32 static void debug_print(char *fmt, ...) in debug_print() function
64 debug_print("newctx called\n"); in template_newctx()
69 debug_print("newctx returns %p\n", ctx); in template_newctx()
77 debug_print("freectx %p\n", ctx); in template_freectx()
86 debug_print("init %p / %p\n", ctx, vkey); in template_init()
92 debug_print("init OK\n"); in template_init()
112 debug_print("set ctx params %p\n", ctx); in template_set_ctx_params()
118 debug_print("set ctx params OK\n"); in template_set_ctx_params()
136 debug_print("encaps %p to %p\n", vctx, out); in template_encapsulate()
[all …]
/freebsd/contrib/wpa/wpa_supplicant/
H A Devents.c650 struct wpa_bss *bss, int debug_print) in wpa_supplicant_ssid_bss_match() argument
675 if (debug_print) in wpa_supplicant_ssid_bss_match()
685 if (debug_print) in wpa_supplicant_ssid_bss_match()
709 if (debug_print) in wpa_supplicant_ssid_bss_match()
718 if (debug_print) in wpa_supplicant_ssid_bss_match()
725 if (debug_print) in wpa_supplicant_ssid_bss_match()
732 if (debug_print) in wpa_supplicant_ssid_bss_match()
740 if (debug_print) in wpa_supplicant_ssid_bss_match()
749 if (debug_print) in wpa_supplicant_ssid_bss_match()
762 if (debug_print) in wpa_supplicant_ssid_bss_match()
[all …]
H A Dwpa_supplicant_i.h1956 int only_first_ssid, int debug_print);
H A Dp2p_supplicant.c4912 p2p.debug_print = wpas_p2p_debug_print; in wpas_p2p_init()
/freebsd/contrib/libcbor/src/cbor/
H A Dcommon.h70 #define debug_print(fmt, ...) \ macro
/freebsd/crypto/krb5/src/lib/krb5/ccache/
H A Dcc_keyring.c109 void debug_print(char *fmt, ...); /* prototype to silence warning */
111 #define DEBUG_PRINT(x) debug_print x
113 debug_print(char *fmt, ...) in debug_print() function
/freebsd/contrib/wpa/src/p2p/
H A Dp2p.c5258 if (!p2p->cfg->debug_print) in p2p_dbg()
5265 p2p->cfg->debug_print(p2p->cfg->cb_ctx, MSG_DEBUG, buf); in p2p_dbg()
5274 if (!p2p->cfg->debug_print) in p2p_info()
5281 p2p->cfg->debug_print(p2p->cfg->cb_ctx, MSG_INFO, buf); in p2p_info()
5290 if (!p2p->cfg->debug_print) in p2p_err()
5297 p2p->cfg->debug_print(p2p->cfg->cb_ctx, MSG_ERROR, buf); in p2p_err()
H A Dp2p.h603 void (*debug_print)(void *ctx, int level, const char *msg); member