HomeSort by relevance Sort by last modified time
    Searched refs:dex_file (Results 76 - 100 of 107) sorted by null

1 2 34 5

  /art/dex2oat/
dex2oat.cc 40 #include "dex_file-inl.h"
1471 const DexFile* dex_file = dex_files[i]; local
1511 const DexFile* dex_file = dex_files[i]; local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 25 #include "dex_file-inl.h"
115 const DexFile& dex_file = klass->GetDexFile(); local
127 failure_message = " that isn't present in dex file " + dex_file.GetLocation();
132 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
140 return VerifyClass(&dex_file, dex_cache, class_loader, class_def, allow_soft_failures, error);
143 MethodVerifier::FailureKind MethodVerifier::VerifyClass(const DexFile* dex_file,
150 const byte* class_data = dex_file->GetClassData(*class_def);
155 ClassDataItemIterator it(*dex_file, class_data);
174 linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader,
182 dex_file,
    [all...]
  /art/compiler/dex/quick/
gen_invoke.cc 21 #include "dex_file-inl.h"
536 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds());
542 CHECK_EQ(cu->dex_file, target_method.dex_file);
621 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds());
674 CHECK_EQ(cu->dex_file, target_method.dex_file);
    [all...]
mir_to_lir.cc 397 DCHECK(CheckCorePoolSanity()) << PrettyMethod(cu_->method_idx, *cu_->dex_file) << " @ 0x:"
447 cu_->compiler_driver->RequiresConstructorBarrier(Thread::Current(), cu_->dex_file,
    [all...]
  /art/compiler/dex/
mir_optimization.cc 569 LOG(WARNING) << "LVN overflow in " << PrettyMethod(cu_->method_idx, *cu_->dex_file);
    [all...]
mir_analysis.cc 961 << PrettyMethod(cu_->method_idx, *cu_->dex_file);
1082 cu_->compiler_driver->GetMethodInlinerMap()->GetMethodInliner(cu_->dex_file)
vreg_analysis.cc 367 LOG(WARNING) << PrettyMethod(cu_->method_idx, *cu_->dex_file)
397 << PrettyMethod(cu_->method_idx, *cu_->dex_file);
local_value_numbering.h 106 DCHECK_EQ(map->count(s_reg), 0u) << PrettyMethod(gvn_->cu_->method_idx, *gvn_->cu_->dex_file)
mir_graph.h 22 #include "dex_file.h"
561 uint32_t method_idx, jobject class_loader, const DexFile& dex_file);
    [all...]
  /art/runtime/mirror/
class.cc 25 #include "dex_file-inl.h"
731 const DexFile& dex_file = GetDexFile(); local
732 const DexFile::TypeId& type_id = dex_file.GetTypeId(GetClassDef()->class_idx_);
733 return dex_file.GetTypeDescriptor(type_id);
787 const DexFile& dex_file = GetDexFile(); local
793 return dex_file.GetSourceFile(*dex_class_def);
class-inl.h 28 #include "dex_file.h"
680 const DexFile& dex_file = GetDexFile(); local
681 const DexFile::TypeId& type_id = dex_file.GetTypeId(GetClassDef()->class_idx_);
682 return strcmp(dex_file.GetTypeDescriptor(type_id), match) == 0;
  /art/runtime/
utils.h 331 std::string PrettyField(uint32_t field_idx, const DexFile& dex_file, bool with_type = true);
337 std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature = true);
348 std::string PrettyType(uint32_t type_idx, const DexFile& dex_file);
quick_exception_handler.cc 138 const DexFile& dex_file = *handler_method_->GetDeclaringClass()->GetDexCache()->GetDexFile(); local
139 int line_number = dex_file.GetLineNumFromPC(handler_method_, handler_dex_pc_);
profiler.cc 28 #include "dex_file-inl.h"
530 const DexFile* dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile(); local
531 MethodReference method_ref(dex_file, method_idx);
610 std::string method_name = PrettyMethod(method.dex_method_index, *(method.dex_file));
627 PrettyMethod(current->GetMethod().dex_method_index, *(current->GetMethod().dex_file)).c_str(),
Android.mk 42 dex_file.cc \
299 dex_file.h \
class_linker_test.cc 24 #include "dex_file.h"
990 const DexFile* dex_file = Runtime::Current()->GetCompileTimeClassPath(jclass_loader)[0]; local
    [all...]
runtime.cc 633 const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg); local
634 if (dex_file == nullptr) {
637 dex_files.push_back(dex_file);
    [all...]
dex_file_verifier.cc 23 #include "dex_file-inl.h"
127 bool DexFileVerifier::Verify(const DexFile* dex_file, const byte* begin, size_t size,
129 std::unique_ptr<DexFileVerifier> verifier(new DexFileVerifier(dex_file, begin, size, location));
    [all...]
  /art/compiler/
common_compiler_test.cc 159 const DexFile& dex_file = *dex_cache->GetDexFile(); local
161 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file,
oat_writer.h 161 explicit OatDexFile(size_t offset, const DexFile& dex_file);
image_writer.cc 28 #include "dex_file-inl.h"
613 const DexFile& dex_file = *dex_cache->GetDexFile(); local
616 string_id = dex_file.FindStringId("");
618 string_id = dex_file.FindStringId(utf16_string);
622 uint32_t string_idx = dex_file.GetIndexForStringId(*string_id);
    [all...]
  /art/runtime/quick/
inline_method_analyser.cc 139 const DexFile::MethodId& method_id = ref.dex_file->GetMethodId(ref.dex_method_index);
140 const char* method_name = ref.dex_file->GetMethodName(method_id);
  /art/compiler/dex/quick/x86/
target_x86.cc 966 const DexFile* target_dex_file = target_method.dex_file;
970 // Generate the move instruction with the unique pointer and save index, dex_file, and type.
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc     [all...]
  /art/runtime/gc/
heap.cc 576 const DexFile* dex_file = dex_cache->GetDexFile(); local
581 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
582 const DexFile::TypeId& type_id = dex_file->GetTypeId(class_def.class_idx_);
583 return dex_file->GetTypeDescriptor(type_id);
    [all...]

Completed in 748 milliseconds

1 2 34 5