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