OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:jniThrowExceptionFmt
(Results
1 - 2
of
2
) sorted by null
/dalvik/libnativehelper/include/nativehelper/
JNIHelp.h
122
extern "C" int
jniThrowExceptionFmt
(C_JNIEnv* env, const char* className, const char* fmt, va_list args);
128
inline int
jniThrowExceptionFmt
(JNIEnv* env, const char* className, const char* fmt, ...) {
131
return
jniThrowExceptionFmt
(&env->functions, className, fmt, args);
/dalvik/libnativehelper/
JNIHelp.cpp
237
int
jniThrowExceptionFmt
(C_JNIEnv* env, const char* className, const char* fmt, va_list args) {
Completed in 475 milliseconds