Home
last modified time | relevance | path

Searched refs:current_table (Results 1 – 3 of 3) sorted by relevance

/art/openjdkjvmti/
Dti_jni.cc72 const JNINativeInterface* current_table; in GetJNIFunctionTable() local
75 current_table = art::JNIEnvExt::GetFunctionTable(check_jni); in GetJNIFunctionTable()
84 memcpy(data, current_table, sizeof(JNINativeInterface)); in GetJNIFunctionTable()
/art/oatdump/
Doatdump.cc3084 ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); in DumpImtStats() local
3085 histogram[current_table->NumEntries(pointer_size)]++; in DumpImtStats()
3237 ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); in DumpIMTForClass() local
3238 PrintTable(current_table, pointer_size); in DumpIMTForClass()
3296 ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); in DumpIMTForMethod() local
3297 if (current_table == nullptr) { in DumpIMTForMethod()
3303 ArtMethod* ptr2 = current_table->GetInterfaceMethod(table_index, pointer_size); in DumpIMTForMethod()
3314 << current_table->NumEntries(pointer_size) in DumpIMTForMethod()
3317 PrintTable(current_table, pointer_size); in DumpIMTForMethod()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc2466 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in artInvokeInterfaceTrampoline() local
2467 DCHECK(current_table != nullptr); in artInvokeInterfaceTrampoline()
2468 method = current_table->Lookup(interface_method, kRuntimePointerSize); in artInvokeInterfaceTrampoline()