| 229 | } |
| 230 | |
| 231 | static void JNICALL DynamicCodeGenerated(jvmtiEnv* jvmti, const char* name, |
| 232 | const void* address, jint length) { |
| 233 | instance()->addRuntimeStub(address, length, name); |
| 234 | } |
| 235 | |
| 236 | static void JNICALL ThreadStart(jvmtiEnv* jvmti, JNIEnv* jni, jthread thread) { |
| 237 | instance()->onThreadStart(jvmti, jni, thread); |
nothing calls this directly
no test coverage detected