Home
last modified time | relevance | path

Searched refs:current_table (Results 1 – 4 of 4) 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.cc2732 ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); in DumpImtStats() local
2733 histogram[current_table->NumEntries(pointer_size)]++; in DumpImtStats()
2885 ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); in DumpIMTForClass() local
2886 PrintTable(current_table, pointer_size); in DumpIMTForClass()
2944 ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); in DumpIMTForMethod() local
2945 if (current_table == nullptr) { in DumpIMTForMethod()
2951 ArtMethod* ptr2 = current_table->GetInterfaceMethod(table_index, pointer_size); in DumpIMTForMethod()
2962 << current_table->NumEntries(pointer_size) in DumpIMTForMethod()
2965 PrintTable(current_table, pointer_size); in DumpIMTForMethod()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc2360 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in artInvokeInterfaceTrampoline() local
2361 DCHECK(current_table != nullptr); in artInvokeInterfaceTrampoline()
2362 ArtMethod* method = current_table->Lookup(interface_method, kRuntimePointerSize); in artInvokeInterfaceTrampoline()
/art/runtime/
Dclass_linker.cc6874 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in AddMethodToConflictTable() local
6886 Thread::Current(), ImtConflictTable::ComputeSizeWithOneMoreEntry(current_table, in AddMethodToConflictTable()
6892 ImtConflictTable* new_table = new (data) ImtConflictTable(current_table, in AddMethodToConflictTable()