OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:jniThrowException
(Results
1 - 2
of
2
) sorted by null
/dalvik/libnativehelper/include/nativehelper/
JNIHelp.h
58
int
jniThrowException
(C_JNIEnv* env, const char* className, const char* msg);
118
inline int
jniThrowException
(JNIEnv* env, const char* className, const char* msg) {
119
return
jniThrowException
(&env->functions, className, msg);
125
* Equivalent to
jniThrowException
but with a printf-like format string and
/dalvik/libnativehelper/
JNIHelp.cpp
206
extern "C" int
jniThrowException
(C_JNIEnv* env, const char* className, const char* msg) {
240
return
jniThrowException
(env, className, msgBuf);
244
return
jniThrowException
(env, "java/lang/NullPointerException", msg);
248
return
jniThrowException
(env, "java/lang/RuntimeException", msg);
254
return
jniThrowException
(env, "java/io/IOException", message);
Completed in 16 milliseconds