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

1 2

  /art/compiler/optimizing/
nodes_arm.h 26 dex_file_(&dex_file),
43 return *dex_file_;
53 const DexFile* dex_file_; member in class:art::FINAL
nodes_mips.h 41 dex_file_(&dex_file),
53 return *dex_file_;
63 const DexFile* dex_file_; member in class:art::HMipsDexCacheArraysBase
builder.h 51 dex_file_(dex_file),
82 dex_file_(nullptr),
116 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 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
64 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
instruction_builder.h 56 dex_file_(dex_file),
315 const DexFile* const dex_file_; member in class:art::HInstructionBuilder
instruction_builder.cc 363 dex_file_->DecodeDebugPositionInfo(&code_item_, Callback::Position, locations);
447 dex_file_->GetMethodId(dex_compilation_unit_->GetDexMethodIndex());
450 HParameterValue* parameter = new (arena_) HParameterValue(*dex_file_,
460 const DexFile::ProtoId& proto = dex_file_->GetMethodPrototype(referrer_method_id);
461 const DexFile::TypeList* arg_types = dex_file_->GetProtoParameters(proto);
464 *dex_file_,
791 const char* descriptor = dex_file_->GetMethodShorty(method_idx)
    [all...]
  /art/runtime/openjdkjvmti/
fixed_up_dex_file.h 55 return *dex_file_;
69 : dex_file_(std::move(fixed_up_dex_file)),
73 std::unique_ptr<const art::DexFile> dex_file_; member in class:openjdkjvmti::FixedUpDexFile
74 // The backing data for dex_file_.
ti_redefine.cc 295 dex_file_(redefined_dex_file),
455 return driver_->runtime_->GetClassLinker()->RegisterDexFile(*dex_file_, loader.Get()).Ptr();
562 DCHECK_EQ(dex_file_->NumClassDefs(), 1u);
564 art::ClassDataItemIterator new_iter(*dex_file_,
565 dex_file_->GetClassData(dex_file_->GetClassDef(0)));
588 const art::DexFile::MethodId& new_method_id = dex_file_->GetMethodId(new_iter.GetMemberIndex());
589 const char* new_method_name = dex_file_->GetMethodName(new_method_id);
590 art::Signature new_method_signature = dex_file_->GetMethodSignature(new_method_id);
620 DCHECK_EQ(dex_file_->NumClassDefs(), 1u)
    [all...]
ti_redefine.h 118 dex_file_(std::move(other.dex_file_)),
128 return *dex_file_;
206 std::unique_ptr<const art::DexFile> dex_file_; member in class:openjdkjvmti::Redefiner::ClassRedefinition
  /art/dexdump/
dexdump_test.cc 38 dex_file_ = GetLibCoreDexFileNames()[0];
51 std::string dex_file_; member in class:art::DexDumpTest
62 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
67 ASSERT_FALSE(Exec({"-c", "-i", dex_file_}, &error_msg)) << error_msg;
73 dex_file_}, &error_msg)) << error_msg;
79 dex_file_}, &error_msg)) << error_msg;
  /art/dexlist/
dexlist_test.cc 40 dex_file_ = GetLibCoreDexFileNames()[0];
53 std::string dex_file_; member in class:art::DexListTest
64 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
69 ASSERT_FALSE(Exec({"-m", "joho", dex_file_}, &error_msg)) << error_msg;
74 ASSERT_TRUE(Exec({"-o", "/dev/null", dex_file_}, &error_msg)) << error_msg;
80 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 35 dex_file_(&dex_file),
47 symbol_ += MangleForJni(dex_file_->PrettyMethod(dex_method_idx_));
  /art/runtime/
dex_file-inl.h 149 if (dex_file_ == nullptr) {
150 return rhs.dex_file_ == nullptr;
152 if (rhs.dex_file_ == nullptr) {
155 if (dex_file_ == rhs.dex_file_) {
159 const char* lhs_shorty_data = dex_file_->StringDataAndUtf16LengthByIdx(proto_id_->shorty_idx_,
165 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
173 const DexFile::TypeId& return_type_id = dex_file_->GetTypeId(proto_id_->return_type_idx_);
175 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
176 if (!DexFileStringEquals(dex_file_, return_type_id.descriptor_idx_
    [all...]
dex_file_verifier.cc 103 if (UNLIKELY(!CheckIndex(idx.index_, dex_file_->NumStringIds(), error_string))) {
106 return dex_file_->StringDataByIdx(idx);
171 if (UNLIKELY(!CheckIndex(type_idx.index_, dex_file_->NumTypeIds(), error_string))) {
174 return CheckLoadStringByIdx(dex_file_->GetTypeId(type_idx).descriptor_idx_, error_string);
178 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) {
181 return &dex_file_->GetFieldId(idx);
185 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) {
188 return &dex_file_->GetMethodId(idx);
192 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumProtoIds(), err_string))) {
195 return &dex_file_->GetProtoId(idx)
    [all...]
dex_file.h 1266 const DexFile& dex_file_; member in class:art::DexFile::DexFileParameterIterator
1301 const DexFile* const dex_file_; member in class:art::DexFile::Signature
1490 const DexFile& dex_file_; member in class:art::DexFile::ClassDataItemIterator
1533 const DexFile& dex_file_; member in class:art::DexFile::EncodedArrayValueIterator
    [all...]
dex_file_verifier.h 47 : dex_file_(dex_file),
199 const DexFile* const dex_file_; member in class:art::DexFileVerifier
oat_file_manager.cc 190 dex_file_(dex_file),
191 cached_descriptor_(dex_file_->StringByTypeIdx(dex::TypeIndex(*type_info->GetIterator()))),
211 return dex_file_ < rhs.dex_file_;
219 cached_descriptor_ = dex_file_->StringByTypeIdx(dex::TypeIndex(*type_info_->GetIterator()));
228 return dex_file_;
233 const DexFile* dex_file_; member in class:art::DexFileAndClassPair
dex_file.cc     [all...]
  /art/runtime/verifier/
method_verifier.cc 565 dex_file_(dex_file),
737 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
738 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
751 LOG(WARNING) << "Method " << dex_file_->PrettyMethod(dex_method_idx_)
    [all...]
method_verifier-inl.h 58 return MethodReference(dex_file_, dex_method_idx_);
method_verifier.h 121 DCHECK(dex_file_ != nullptr);
122 return *dex_file_;
126 return dex_file_->GetVersion();
716 const DexFile* const dex_file_; // The dex file containing the method. member in class:art::verifier::MethodVerifier
    [all...]
  /art/dexoptanalyzer/
dexoptanalyzer.cc 144 dex_file_ = option.substr(strlen("--dex-file=")).ToString();
213 if (!OS::FileExists(dex_file_.c_str())) {
219 OatFileAssistant oat_file_assistant(dex_file_.c_str(), isa_, /*load_executable*/ false);
246 std::string dex_file_; member in class:art::FINAL
  /art/compiler/
oat_writer.cc 612 dex_file_(nullptr),
617 DCHECK(dex_file_ == nullptr);
619 dex_file_ = dex_file;
628 dex_file_ = nullptr;
647 const DexFile* dex_file_;
705 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
714 ClassReference class_ref(dex_file_, class_def_index_);
777 MethodReference method_ref(dex_file_, it.GetMemberIndex());
881 info.dex_file = dex_file_;
    [all...]

Completed in 491 milliseconds

1 2