Lines Matching refs:msg
9 void os_log_trace(const char* tag, const char* msg, va_list list) in os_log_trace() argument
11 __android_log_vprint(ANDROID_LOG_VERBOSE, tag, msg, list); in os_log_trace()
14 void os_log_debug(const char* tag, const char* msg, va_list list) in os_log_debug() argument
16 __android_log_vprint(ANDROID_LOG_DEBUG, tag, msg, list); in os_log_debug()
19 void os_log_info(const char* tag, const char* msg, va_list list) in os_log_info() argument
21 __android_log_vprint(ANDROID_LOG_INFO, tag, msg, list); in os_log_info()
24 void os_log_warn(const char* tag, const char* msg, va_list list) in os_log_warn() argument
26 __android_log_vprint(ANDROID_LOG_WARN, tag, msg, list); in os_log_warn()
29 void os_log_error(const char* tag, const char* msg, va_list list) in os_log_error() argument
31 __android_log_vprint(ANDROID_LOG_ERROR, tag, msg, list); in os_log_error()
34 void os_log_fatal(const char* tag, const char* msg, va_list list) in os_log_fatal() argument
36 __android_log_vprint(ANDROID_LOG_FATAL, tag, msg, list); in os_log_fatal()