Lines Matching refs:list
42 void os_log_trace(const char* tag, const char* msg, va_list list) in os_log_trace() argument
46 vsyslog(LOG_NOTICE, line, list); in os_log_trace()
49 void os_log_debug(const char* tag, const char* msg, va_list list) in os_log_debug() argument
53 vsyslog(LOG_DEBUG, line, list); in os_log_debug()
56 void os_log_info(const char* tag, const char* msg, va_list list) in os_log_info() argument
60 vsyslog(LOG_INFO, line, list); in os_log_info()
63 void os_log_warn(const char* tag, const char* msg, va_list list) in os_log_warn() argument
67 vsyslog(LOG_WARNING, line, list); in os_log_warn()
70 void os_log_error(const char* tag, const char* msg, va_list list) in os_log_error() argument
74 vsyslog(LOG_ERR, line, list); in os_log_error()
77 void os_log_fatal(const char* tag, const char* msg, va_list list) in os_log_fatal() argument
81 vsyslog(LOG_CRIT, line, list); in os_log_fatal()