HomeSort by relevance Sort by last modified time
    Searched refs:dex_file (Results 151 - 175 of 195) sorted by null

1 2 3 4 5 67 8

  /art/compiler/optimizing/
code_generator_arm64.cc     [all...]
block_builder.cc 28 const DexFile* const dex_file,
33 dex_file_(dex_file),
inliner.cc 267 const DexFile& dex_file,
270 if (IsSameDexFile(*method->GetDexFile(), dex_file)) {
273 return method->FindDexMethodIndexInOtherDexFile(dex_file, name_and_signature_index);
280 const DexFile& dex_file = *compilation_unit.GetDexFile(); local
284 index = cls->FindTypeIndexInOtherDexFile(dex_file);
288 } else if (IsSameDexFile(cls->GetDexFile(), dex_file)) {
292 index = cls->FindTypeIndexInOtherDexFile(dex_file);
719 for (const DexFile* dex_file : compiler_driver_->GetDexFilesForOatFile()) {
720 if (offline_profile.dex_references[i].MatchesDex(dex_file)) {
722 caller_compilation_unit_.GetClassLinker()->FindDexCache(self, *dex_file);
    [all...]
code_generator_x86.h 423 Label* NewJitRootStringPatch(const DexFile& dex_file,
426 Label* NewJitRootClassPatch(const DexFile& dex_file,
code_generator_x86_64.h 419 Label* NewJitRootStringPatch(const DexFile& dex_file,
422 Label* NewJitRootClassPatch(const DexFile& dex_file,
nodes.h 34 #include "dex/dex_file.h"
312 const DexFile& dex_file,
337 dex_file_(dex_file),
899 TryCatchInformation(dex::TypeIndex catch_type_index, const DexFile& dex_file)
901 catch_dex_file_(&dex_file),
    [all...]
instruction_builder.cc 45 const DexFile* dex_file,
59 dex_file_(dex_file),
1854 const DexFile& dex_file = *dex_compilation_unit_->GetDexFile(); local
    [all...]
  /art/libdexfile/dex/
dex_file-inl.h 24 #include "dex_file.h"
519 inline void DexFile::ClassDef::VisitMethods(const DexFile* dex_file, const Visitor& visitor) const {
520 const uint8_t* class_data = dex_file->GetClassData(*this);
522 ClassDataItemIterator it(*dex_file, class_data);
test_dex_file_builder.h 236 std::unique_ptr<const DexFile> dex_file(dex_file_loader.Open(
245 CHECK(dex_file != nullptr) << error_msg;
246 return dex_file;
  /art/patchoat/
patchoat_test.cc 92 for (const std::string& dex_file : dex_files) {
93 argv.push_back("--dex-file=" + dex_file);
94 argv.push_back("--dex-location=" + dex_file);
  /art/runtime/
class_linker_test.cc 985 const DexFile& dex_file = *dex_cache->GetDexFile(); local
1299 const DexFile* dex_file = GetFirstDexFile(jclass_loader); local
1546 const DexFile& dex_file = *(method1->GetDexFile()); local
    [all...]
class_linker-inl.h 225 const DexFile& dex_file = *dex_cache->GetDexFile(); local
226 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
common_throws.h 41 void ThrowAbstractMethodError(uint32_t method_idx, const DexFile& dex_file)
transaction_test.cc 23 #include "dex/dex_file.h"
486 const DexFile* const dex_file = h_dex_cache->GetDexFile(); local
487 ASSERT_TRUE(dex_file != nullptr);
491 const DexFile::StringId* string_id = dex_file->FindStringId(kResolvedString);
493 dex::StringIndex string_idx = dex_file->GetIndexForStringId(*string_id);
quick_exception_handler.cc 164 const DexFile* dex_file = handler_method_->GetDeclaringClass()->GetDexCache()->GetDexFile(); local
165 int line_number = annotations::GetLineNumFromPC(dex_file, handler_method_, handler_dex_pc_);
trace.cc 37 #include "dex/dex_file-inl.h"
863 const DexFile* dex_file = dex_cache->GetDexFile(); local
864 if (seen_methods_.find(dex_file) == seen_methods_.end()) {
865 seen_methods_.insert(std::make_pair(dex_file, new DexIndexBitSet()));
867 DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second;
    [all...]
instrumentation.cc 28 #include "dex/dex_file-inl.h"
1281 const DexFile* dex_file = m->GetDexFile(); local
    [all...]
  /art/runtime/mirror/
object_test.cc 32 #include "dex/dex_file.h"
353 const DexFile* dex_file = GetFirstDexFile(class_loader); local
359 const DexFile::TypeId* klass_type_id = dex_file->FindTypeId("LStaticsFromCode;");
362 const DexFile::TypeId* type_type_id = dex_file->FindTypeId("Ljava/lang/Object;");
365 const DexFile::StringId* name_str_id = dex_file->FindStringId("s0");
368 const DexFile::FieldId* field_id = dex_file->FindFieldId(
371 uint32_t field_idx = dex_file->GetIndexForFieldId(*field_id);
class-inl.h 30 #include "dex/dex_file-inl.h"
887 const DexFile& dex_file = GetDexFile(); local
    [all...]
  /art/compiler/
common_compiler_test.cc 52 const DexFile& dex_file = *dex_cache->GetDexFile(); local
54 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file,
  /art/runtime/interpreter/
interpreter_common.h 40 #include "dex/dex_file-inl.h"
571 static inline bool IsStringInit(const DexFile* dex_file, uint32_t method_idx)
573 const DexFile::MethodId& method_id = dex_file->GetMethodId(method_idx);
574 const char* class_name = dex_file->StringByTypeIdx(method_id.class_idx_);
575 const char* method_name = dex_file->GetMethodName(method_id);
  /art/dexdump/
dexdump.cc 49 #include "dex/dex_file-inl.h"
    [all...]
  /art/runtime/jit/
jit_code_cache.cc 1613 const DexFile* dex_file = method->GetDexFile(); local
    [all...]
  /art/compiler/debug/
elf_debug_loc_writer.h 152 CodeItemDataAccessor accessor(*method_info->dex_file, method_info->code_item);
  /art/profman/
profile_assistant_test.cc 1063 const DexFile* dex_file = inline_monomorphic->GetDexFile(); local
    [all...]

Completed in 1165 milliseconds

1 2 3 4 5 67 8