Lines Matching defs:msg
150 #define _LIBUNWIND_ABORT(msg) \
155 #define _LIBUNWIND_ABORT(msg) \
157 fprintf(stderr, "libunwind: %s - %s\n", __func__, msg); \
164 #define _LIBUNWIND_LOG0(msg)
165 #define _LIBUNWIND_LOG(msg, ...)
167 #define _LIBUNWIND_LOG0(msg) do { \
168 fprintf(stderr, "libunwind: " msg "\n"); \
171 #define _LIBUNWIND_LOG(msg, ...) do { \
172 fprintf(stderr, "libunwind: " msg "\n", __VA_ARGS__); \
190 #define _LIBUNWIND_DEBUG_LOG(msg, ...)
191 #define _LIBUNWIND_TRACE_API(msg, ...)
194 #define _LIBUNWIND_TRACE_UNWINDING(msg, ...)
206 #define _LIBUNWIND_DEBUG_LOG(msg, ...) _LIBUNWIND_LOG(msg, __VA_ARGS__)
207 #define _LIBUNWIND_TRACE_API(msg, ...) \
210 _LIBUNWIND_LOG(msg, __VA_ARGS__); \
214 #define _LIBUNWIND_TRACE_UNWINDING(msg, ...) \
217 _LIBUNWIND_LOG(msg, __VA_ARGS__); \