Lines Matching refs:fmt
182 void HWCDebugHandler::Error(const char *fmt, ...) { in Error() argument
184 va_start(list, fmt); in Error()
185 __android_log_vprint(ANDROID_LOG_ERROR, LOG_TAG, fmt, list); in Error()
188 void HWCDebugHandler::Warning(const char *fmt, ...) { in Warning() argument
190 va_start(list, fmt); in Warning()
191 __android_log_vprint(ANDROID_LOG_WARN, LOG_TAG, fmt, list); in Warning()
194 void HWCDebugHandler::Info(const char *fmt, ...) { in Info() argument
196 va_start(list, fmt); in Info()
197 __android_log_vprint(ANDROID_LOG_INFO, LOG_TAG, fmt, list); in Info()
200 void HWCDebugHandler::Debug(const char *fmt, ...) { in Debug() argument
202 va_start(list, fmt); in Debug()
203 __android_log_vprint(ANDROID_LOG_DEBUG, LOG_TAG, fmt, list); in Debug()
206 void HWCDebugHandler::Verbose(const char *fmt, ...) { in Verbose() argument
209 va_start(list, fmt); in Verbose()
210 __android_log_vprint(ANDROID_LOG_VERBOSE, LOG_TAG, fmt, list); in Verbose()