HomeSort by relevance Sort by last modified time
    Searched refs:dex_file_ (Results 1 - 25 of 30) sorted by null

1 2

  /art/compiler/optimizing/
nodes_arm.h 26 dex_file_(&dex_file),
41 return *dex_file_;
51 const DexFile* dex_file_; member in class:art::HArmDexCacheArraysBase
builder.h 48 dex_file_(dex_file),
74 dex_file_(nullptr),
104 const DexFile* const dex_file_; member in class:art::HGraphBuilder
block_builder.h 34 dex_file_(dex_file),
74 const DexFile* const dex_file_; member in class:art::HBasicBlockBuilder
builder.cc 54 << PrettyMethod(dex_compilation_unit_->GetDexMethodIndex(), *dex_file_)
64 << PrettyMethod(dex_compilation_unit_->GetDexMethodIndex(), *dex_file_)
instruction_builder.cc 354 dex_file_->DecodeDebugPositionInfo(&code_item_, Callback::Position, locations);
437 dex_file_->GetMethodId(dex_compilation_unit_->GetDexMethodIndex());
440 HParameterValue* parameter = new (arena_) HParameterValue(*dex_file_,
450 const DexFile::ProtoId& proto = dex_file_->GetMethodPrototype(referrer_method_id);
451 const DexFile::TypeList* arg_types = dex_file_->GetProtoParameters(proto);
454 *dex_file_,
775 const char* descriptor = dex_file_->GetMethodShorty(method_idx);
785 MethodReference target_method(dex_file_, method_idx);
    [all...]
instruction_builder.h 49 dex_file_(dex_file),
272 const DexFile* const dex_file_; member in class:art::HInstructionBuilder
block_builder.cc 304 new (arena_) TryCatchInformation(iterator.GetHandlerTypeIndex(), *dex_file_));
  /art/runtime/
dex_file-inl.h 61 if (dex_file_ == nullptr) {
62 return rhs.dex_file_ == nullptr;
64 if (rhs.dex_file_ == nullptr) {
67 if (dex_file_ == rhs.dex_file_) {
71 const char* lhs_shorty_data = dex_file_->StringDataAndUtf16LengthByIdx(proto_id_->shorty_idx_,
77 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
85 const DexFile::TypeId& return_type_id = dex_file_->GetTypeId(proto_id_->return_type_idx_);
87 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
88 if (!DexFileStringEquals(dex_file_, return_type_id.descriptor_idx_
    [all...]
type_lookup_table.cc 42 return RawDataLength(dex_file_);
73 : dex_file_(dex_file),
110 : dex_file_(dex_file),
type_lookup_table.h 125 const uint8_t* ptr = dex_file_.Begin() + str_offset;
157 const DexFile& dex_file_; member in class:art::TypeLookupTable
oat_file_manager.cc 145 dex_file_(dex_file),
164 return dex_file_ < rhs.dex_file_;
168 return current_class_index_ + 1 < dex_file_->NumClassDefs();
173 cached_descriptor_ = GetClassDescriptor(dex_file_, current_class_index_);
185 return dex_file_;
196 const DexFile* dex_file_; member in class:art::DexFileAndClassPair
dex_file_verifier.cc 74 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumStringIds(), error_string))) {
77 return dex_file_->StringDataByIdx(idx);
81 if (UNLIKELY(!CheckIndex(type_idx, dex_file_->NumTypeIds(), error_string))) {
84 const DexFile::TypeId& type_id = dex_file_->GetTypeId(type_idx);
90 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) {
93 return &dex_file_->GetFieldId(idx);
97 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) {
100 return &dex_file_->GetMethodId(idx);
901 ClassDataItemIterator it(*dex_file_, ptr_);
    [all...]
dex_file.h 1310 const DexFile& dex_file_; member in class:art::DexFileParameterIterator
1342 const DexFile* const dex_file_; member in class:art::Signature
1528 const DexFile& dex_file_; member in class:art::ClassDataItemIterator
1591 const DexFile& dex_file_; member in class:art::EncodedStaticFieldValueIterator
    [all...]
dex_file_verifier.h 38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location),
175 const DexFile* const dex_file_; member in class:art::DexFileVerifier
  /art/dexdump/
dexdump_test.cc 40 dex_file_ = GetLibCoreDexFileNames()[0];
53 std::string dex_file_; member in class:art::DexDumpTest
64 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
69 ASSERT_FALSE(Exec({"-c", "-i", dex_file_}, &error_msg)) << error_msg;
75 dex_file_}, &error_msg)) << error_msg;
81 dex_file_}, &error_msg)) << error_msg;
  /art/dexlist/
dexlist_test.cc 40 dex_file_ = GetLibCoreDexFileNames()[0];
57 std::string dex_file_; member in class:art::DexListTest
68 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
73 ASSERT_FALSE(Exec({"-m", "joho", dex_file_}, &error_msg)) << error_msg;
78 ASSERT_TRUE(Exec({"-o", "/dev/null", dex_file_}, &error_msg)) << error_msg;
84 dex_file_}, &error_msg)) << error_msg;
  /art/compiler/driver/
dex_compilation_unit.h 56 return dex_file_;
72 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
73 return dex_file_->GetMethodShorty(method_id);
77 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
78 return dex_file_->GetMethodShorty(method_id, shorty_len);
120 const DexFile* const dex_file_; member in class:art::DexCompilationUnit
dex_compilation_unit.cc 36 dex_file_(&dex_file),
48 symbol_ += MangleForJni(PrettyMethod(dex_method_idx_, *dex_file_));
  /art/runtime/verifier/
method_verifier-inl.h 58 return MethodReference(dex_file_, dex_method_idx_);
method_verifier.cc 521 dex_file_(dex_file),
694 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
695 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
708 LOG(WARNING) << "Method " << PrettyMethod(dex_method_idx_, *dex_file_)
    [all...]
method_verifier.h 186 return dex_file_->GetVersion();
760 const DexFile* const dex_file_; \/\/ The dex file containing the method. member in class:art::verifier::MethodVerifier
    [all...]
  /art/runtime/mirror/
dex_cache.h 191 return GetFieldPtr<const DexFile*>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_));
195 SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_), dex_file);
221 uint64_t dex_file_; // const DexFile* member in class:art::mirror::FINAL
  /art/compiler/
oat_writer.cc 535 dex_file_(nullptr),
540 DCHECK(dex_file_ == nullptr);
542 dex_file_ = dex_file;
551 dex_file_ = nullptr;
570 const DexFile* dex_file_;
628 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
637 ClassReference class_ref(dex_file_, class_def_index_);
693 MethodReference method_ref(dex_file_, it.GetMemberIndex());
769 info.dex_file = dex_file_;
818 offset_, compiled_method, MethodReference(dex_file_, it.GetMemberIndex()))
    [all...]
  /art/compiler/dex/quick/
dex_file_method_inliner.cc     [all...]
dex_file_method_inliner.h 391 const DexFile* dex_file_; member in class:art::DexFileMethodInliner

Completed in 503 milliseconds

1 2