Searched defs:priority (Results 1 - 2 of 2) sorted by relevance

/libnativehelper/include/nativehelper/
H A DJNIHelp.h103 void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception);
160 inline void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable exception = NULL) { argument
161 jniLogException(&env->functions, priority, tag, exception);
170 #define LOG_EX(env, priority, tag, ...) \
171 IF_ALOG(priority, tag) jniLogException(env, ANDROID_##priority, tag, ##__VA_ARGS__)
/libnativehelper/
H A DJNIHelp.cpp257 void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception) { argument
278 __android_log_write(priority, tag, buffer);

Completed in 63 milliseconds