Lines Matching refs:category
20 int OSSL_trace_enabled(int category);
22 BIO *OSSL_trace_begin(int category);
23 void OSSL_trace_end(int category, BIO *channel);
26 OSSL_TRACE_BEGIN(category) {
30 OSSL_TRACE_CANCEL(category);
34 } OSSL_TRACE_END(category);
37 OSSL_TRACE(category, text)
38 OSSL_TRACE1(category, format, arg1)
39 OSSL_TRACE2(category, format, arg1, arg2)
41 OSSL_TRACE9(category, format, arg1, ..., arg9)
42 OSSL_TRACE_STRING(category, text, full, data, len)
48 /* check whether a trace category is enabled */
49 if (OSSL_TRACE_ENABLED(category)) {
69 Tracing for a specific category is enabled at run-time if a so-called
96 I<category> is enabled, i.e., if the tracing facility has been statically
101 and get the channel for the given I<category> in form of a BIO.
103 The pointer returned is NULL if the category is invalid or not enabled.
174 The macro call C<OSSL_TRACE(category, text)>, produces literal text trace output.
176 The macro call C<OSSL_TRACEn(category, format, arg1, ..., argn)> produces
180 OSSL_TRACE_BEGIN(category) {
182 } OSSL_TRACE_END(category)
188 The macro call C<OSSL_TRACE_STRING(category, text, full, data, len)>
190 if tracing for the given I<category> is enabled.
193 OSSL_TRACE_BEGIN(category) {
195 } OSSL_TRACE_END(category)
198 only if a specific trace category is enabled.
216 I<OSSL_TRACE(category, ...)> by I<OSSL_TRACE_ENABLED(category)>.
220 executed only if the trace category is enabled.