265
266 /* getStackTrace() and getAllStackTraces() method */
267 JNIEXPORT jobjectArray JNICALL
268 JVM_DumpThreads(JNIEnv *env, jclass threadClass, jobjectArray threads);
269
270 /*
271 * java.lang.SecurityManager
272 */
273 JNIEXPORT jobjectArray JNICALL
274 JVM_GetClassContext(JNIEnv *env);
275
276 /*
277 * java.lang.Package
278 */
279 JNIEXPORT jstring JNICALL
280 JVM_GetSystemPackage(JNIEnv *env, jstring name);
281
282 JNIEXPORT jobjectArray JNICALL
283 JVM_GetSystemPackages(JNIEnv *env);
284
285 /*
286 * java.lang.ref.Reference
287 */
288 JNIEXPORT jobject JNICALL
289 JVM_GetAndClearReferencePendingList(JNIEnv *env);
290
291 JNIEXPORT jboolean JNICALL
292 JVM_HasReferencePendingList(JNIEnv *env);
293
294 JNIEXPORT void JNICALL
295 JVM_WaitForReferencePendingList(JNIEnv *env);
296
297 /*
298 * java.io.ObjectInputStream
299 */
300 JNIEXPORT jobject JNICALL
301 JVM_LatestUserDefinedLoader(JNIEnv *env);
302
303 /*
304 * java.lang.reflect.Array
|
265
266 /* getStackTrace() and getAllStackTraces() method */
267 JNIEXPORT jobjectArray JNICALL
268 JVM_DumpThreads(JNIEnv *env, jclass threadClass, jobjectArray threads);
269
270 /*
271 * java.lang.SecurityManager
272 */
273 JNIEXPORT jobjectArray JNICALL
274 JVM_GetClassContext(JNIEnv *env);
275
276 /*
277 * java.lang.Package
278 */
279 JNIEXPORT jstring JNICALL
280 JVM_GetSystemPackage(JNIEnv *env, jstring name);
281
282 JNIEXPORT jobjectArray JNICALL
283 JVM_GetSystemPackages(JNIEnv *env);
284
285 /*
286 * java.lang.ref.Finalizer
287 */
288 JNIEXPORT jboolean JNICALL
289 JVM_GetTsanEnabled(JNIEnv *env);
290
291 /*
292 * java.lang.ref.Reference
293 */
294 JNIEXPORT jobject JNICALL
295 JVM_GetAndClearReferencePendingList(JNIEnv *env);
296
297 JNIEXPORT jboolean JNICALL
298 JVM_HasReferencePendingList(JNIEnv *env);
299
300 JNIEXPORT void JNICALL
301 JVM_WaitForReferencePendingList(JNIEnv *env);
302
303 /*
304 * java.io.ObjectInputStream
305 */
306 JNIEXPORT jobject JNICALL
307 JVM_LatestUserDefinedLoader(JNIEnv *env);
308
309 /*
310 * java.lang.reflect.Array
|