Lines Matching refs:category
19 int OSSL_trace_enabled(int category);
21 BIO *OSSL_trace_begin(int category);
22 void OSSL_trace_end(int category, BIO *channel);
25 OSSL_TRACE_BEGIN(category) {
29 OSSL_TRACE_CANCEL(category);
33 } OSSL_TRACE_END(category);
36 OSSL_TRACE1(category, format, arg1)
37 OSSL_TRACE2(category, format, arg1, arg2)
39 OSSL_TRACE9(category, format, arg1, ..., arg9)
41 /* check whether a trace category is enabled */
42 if (OSSL_TRACE_ENABLED(category)) {
62 Tracing for a specific category is enabled if a so called
89 I<category> is enabled.
92 channel for the given I<category> in form of a BIO.
158 The macro call C<OSSL_TRACE(category, text)>, produces literal text trace output.
160 The macro call C<OSSL_TRACEn(category, format, arg1, ..., argn)> produces
164 OSSL_TRACE_BEGIN(category) {
166 } OSSL_TRACE_END(category)
173 only if a specific trace category is enabled.
192 executed only if the trace category is enabled.