Searched refs:heap_id (Results 1 – 4 of 4) sorted by relevance
/art/openjdkjvmti/ |
D | ti_heap.h | 67 static jvmtiError JNICALL GetObjectHeapId(jvmtiEnv* env, jlong tag, jint* heap_id, ...); 68 static jvmtiError JNICALL GetHeapName(jvmtiEnv* env, jint heap_id, char** heap_name, ...);
|
D | ti_heap.cc | 1489 jvmtiError HeapExtensions::GetObjectHeapId(jvmtiEnv* env, jlong tag, jint* heap_id, ...) { in GetObjectHeapId() argument 1490 if (heap_id == nullptr) { in GetObjectHeapId() 1503 *heap_id = heap_type; in GetObjectHeapId() 1540 jvmtiError HeapExtensions::GetHeapName(jvmtiEnv* env, jint heap_id, char** heap_name, ...) { in GetHeapName() argument 1541 switch (heap_id) { in GetHeapName() 1574 jint heap_id = GetHeapId(obj); in IterateThroughHeapExt() local 1577 class_tag, size, tag, length, cb_user_data, heap_id); in IterateThroughHeapExt()
|
/art/test/913-heaps/ |
D | heaps.cc | 991 jint heap_id; in Java_art_Test913_getObjectHeapId() local 992 jvmtiError result = gGetObjectHeapIdFn(jvmti_env, tag, &heap_id); in Java_art_Test913_getObjectHeapId() 994 return heap_id; in Java_art_Test913_getObjectHeapId() 998 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jint heap_id) { in Java_art_Test913_getHeapName() argument 1001 jvmtiError result = gGetHeapNameFn(jvmti_env, heap_id, &heap_name); in Java_art_Test913_getHeapName() 1011 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jlong tag, jint heap_id) { in Java_art_Test913_checkGetObjectHeapIdInCallback() argument 1050 ffc.check_callback_id = heap_id; in Java_art_Test913_checkGetObjectHeapIdInCallback() 1089 ffc.check_callback_id = heap_id; in Java_art_Test913_checkGetObjectHeapIdInCallback() 1105 jint heap_id) { in HeapIterationExtCallback() argument 1112 CHECK_EQ(expected_heap_id, heap_id); in HeapIterationExtCallback()
|
/art/runtime/ |
D | debugger.cc | 4782 uint8_t heap_id[4]; in DdmSendHeapSegments() local 4783 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap). in DdmSendHeapSegments() 4785 ArrayRef<const uint8_t>(heap_id)); in DdmSendHeapSegments() 4845 ArrayRef<const uint8_t>(heap_id)); in DdmSendHeapSegments()
|