Searched refs:current_method (Results 1 - 5 of 5) sorted by relevance

/art/runtime/entrypoints/portable/
H A Dportable_throw_entrypoints.cc71 extern "C" int32_t art_portable_find_catch_block_from_code(mirror::ArtMethod* current_method,
83 const DexFile::CodeItem* code_item = current_method->GetCodeItem();
101 current_method->GetDexCacheResolvedType(iter_type_idx);
106 << current_method->GetTypeDescriptorFromTypeIdx(iter_type_idx);
117 self, throw_location, current_method, catch_dex_pc, exception);
120 &current_method->GetCodeItem()->insns_[catch_dex_pc]);
/art/runtime/
H A Dutils.cc1066 mirror::ArtMethod* current_method) {
1067 // We may be called from contexts where current_method is not null, so we must assert this.
1068 if (current_method != nullptr) {
1102 } else if (current_method != nullptr && current_method->IsWithinQuickCode(it->pc)) {
1103 const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode();
1104 os << JniLongName(current_method) << "+"
1065 DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix, mirror::ArtMethod* current_method) argument
H A Dutils.h436 mirror::ArtMethod* current_method = nullptr)
H A Dcheck_jni.cc44 mirror::ArtMethod* current_method = self->GetCurrentMethod(nullptr); local
53 if (current_method != nullptr) {
54 os << "\n from " << PrettyMethod(current_method);
H A Dthread.cc976 mirror::ArtMethod* current_method = thread->GetCurrentMethod(nullptr); local
977 return current_method != nullptr && current_method->IsNative();

Completed in 61 milliseconds