| 9 | |
| 10 | |
| 11 | void J9ObjectSampler::JavaObjectAlloc(jvmtiEnv* jvmti, JNIEnv* jni, jthread thread, |
| 12 | jobject object, jclass object_klass, jlong size) { |
| 13 | if (_enabled && updateCounter(_allocated_bytes, size, _interval)) { |
| 14 | recordAllocation(jvmti, jni, ALLOC_SAMPLE, object, object_klass, size); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | void J9ObjectSampler::VMObjectAlloc(jvmtiEnv* jvmti, JNIEnv* jni, jthread thread, |
| 19 | jobject object, jclass object_klass, jlong size) { |
nothing calls this directly
no outgoing calls
no test coverage detected