Home
last modified time | relevance | path

Searched refs:fmt (Results 1 – 3 of 3) sorted by relevance

/libnativehelper/
DALog-priv.h38 #define ALOG(priority, tag, fmt...) \ argument
39 __android_log_print(ANDROID_##priority, tag, fmt)
DJNIHelp.cpp255 int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list args) { in jniThrowExceptionFmt() argument
257 vsnprintf(msgBuf, sizeof(msgBuf), fmt, args); in jniThrowExceptionFmt()
/libnativehelper/include/nativehelper/
DJNIHelp.h130 extern "C" int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list …
136 inline int jniThrowExceptionFmt(JNIEnv* env, const char* className, const char* fmt, ...) { in jniThrowExceptionFmt() argument
138 va_start(args, fmt); in jniThrowExceptionFmt()
139 return jniThrowExceptionFmt(&env->functions, className, fmt, args); in jniThrowExceptionFmt()