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.cc3098 ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); in DumpImtStats() local
3099 histogram[current_table->NumEntries(pointer_size)]++; in DumpImtStats()
3251 ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); in DumpIMTForClass() local
3252 PrintTable(current_table, pointer_size); in DumpIMTForClass()
3310 ImtConflictTable* current_table = ptr->GetImtConflictTable(pointer_size); in DumpIMTForMethod() local
3311 if (current_table == nullptr) { in DumpIMTForMethod()
3317 ArtMethod* ptr2 = current_table->GetInterfaceMethod(table_index, pointer_size); in DumpIMTForMethod()
3328 << current_table->NumEntries(pointer_size) in DumpIMTForMethod()
3331 PrintTable(current_table, pointer_size); in DumpIMTForMethod()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc2440 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in artInvokeInterfaceTrampoline() local
2441 DCHECK(current_table != nullptr); in artInvokeInterfaceTrampoline()
2442 method = current_table->Lookup(interface_method, kRuntimePointerSize); in artInvokeInterfaceTrampoline()
/art/runtime/
Dclass_linker.cc6927 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in AddMethodToConflictTable() local
6940 Thread::Current(), ImtConflictTable::ComputeSizeWithOneMoreEntry(current_table, in AddMethodToConflictTable()
6946 ImtConflictTable* new_table = new (data) ImtConflictTable(current_table, in AddMethodToConflictTable()