HomeSort by relevance Sort by last modified time
    Searched full:dexfile (Results 226 - 250 of 452) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
TypeListItem.java 66 public void addContents(DexFile file) {
92 protected void writeTo0(DexFile file, AnnotatedOutput out) {
HeaderSection.java 37 public HeaderSection(DexFile file) {
MemberIdsSection.java 35 public MemberIdsSection(String name, DexFile file) {
  /art/compiler/sea_ir/types/
type_inference.cc 42 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
52 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
58 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
89 const art::DexFile::ProtoId& proto_id =
  /art/runtime/entrypoints/interpreter/
interpreter_entrypoints.cc 29 const DexFile::CodeItem* code_item,
  /art/runtime/entrypoints/portable/
portable_fillarray_entrypoints.cc 29 const DexFile::CodeItem* code_item = MethodHelper(method).GetCodeItem();
  /art/runtime/native/
java_lang_DexCache.cc 30 const DexFile* dex_file = dex_cache->GetDexFile();
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderSection.java 37 public HeaderSection(DexFile file) {
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderSection.java 36 public HeaderSection(DexFile file) {
  /dalvik/libdex/
Android.mk 23 DexFile.cpp \
DexDataMap.h 24 #include "DexFile.h"
DexDebugInfo.cpp 84 static const char* readStringIdx(const DexFile* pDexFile,
100 static const char* readTypeIdx(const DexFile* pDexFile,
142 const DexFile* pDexFile,
313 const DexFile* pDexFile,
  /dalvik/vm/
JarFile.h 47 /* pry the DexFile out of a JarFile */
  /art/oatdump/
oatdump.cc 177 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile());
179 const DexFile::ClassDef* class_def =
202 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile());
208 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
248 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile());
254 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
277 void DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
278 const DexFile::ClassDef& class_def) {
304 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
306 const OatFile::OatMethod& oat_method, const DexFile& dex_file
    [all...]
  /art/runtime/
common_test.h 192 const DexFile& dex_file = *dex_cache->GetDexFile();
285 java_lang_dex_file_ = DexFile::Open(GetLibCoreDexFileName(), GetLibCoreDexFileName());
289 conscrypt_file_ = DexFile::Open(GetConscryptFileName(), GetConscryptFileName());
423 const DexFile* OpenTestDexFile(const char* name) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
435 const DexFile* dex_file = DexFile::Open(filename, filename);
444 const DexFile* dex_file = OpenTestDexFile(dex_name);
447 std::vector<const DexFile*> class_path;
522 const DexFile* java_lang_dex_file_; // owned by runtime_
523 const DexFile* conscrypt_file_; // owned by runtime
    [all...]
runtime.h 54 class DexFile;
91 const std::vector<const DexFile*>* boot_class_path_;
397 const std::vector<const DexFile*>& GetCompileTimeClassPath(jobject class_loader);
398 void SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path);
506 typedef SafeMap<jobject, std::vector<const DexFile*>, JobjectComparator> CompileTimeClassPaths;
common_throws.cc 280 const DexFile& dex_file = *dex_cache->GetDexFile();
299 const DexFile& dex_file,
312 const DexFile& dex_file = *dex_cache->GetDexFile();
321 const DexFile& dex_file = *dex_cache->GetDexFile();
327 const DexFile::CodeItem* code = MethodHelper(throw_location.GetMethod()).GetCodeItem();
456 const DexFile& dex_file =
  /cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java 32 import dex.structure.DexFile;
88 protected DexFile prepareDexFile(String fileName) throws IOException{
93 protected DexClass getClass(DexFile file, String className) {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
SyntheticAccessorResolver.java 47 public SyntheticAccessorResolver(DexFile dexFile) {
48 classMap = new DexFileClassMap(dexFile);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
ArrayDataPseudoInstruction.java 33 import org.jf.dexlib.DexFile;
145 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
PackedSwitchDataPseudoInstruction.java 34 import org.jf.dexlib.DexFile;
151 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
SparseSwitchDataPseudoInstruction.java 34 import org.jf.dexlib.DexFile;
170 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
DexFile.java 73 * {@link DexFile#ClassDefsSection}, which will add all the information necessary to represent the given
102 public class DexFile
185 private DexFile(boolean preserveSignedRegisters, boolean skipInstructions) {
235 * Construct a new DexFile instance by reading in the given dex file.
239 public DexFile(String file)
245 * Construct a new DexFile instance by reading in the given dex file,
255 public DexFile(String file, boolean preserveSignedRegisters, boolean skipInstructions)
261 * Construct a new DexFile instance by reading in the given dex file.
265 public DexFile(File file)
271 * Construct a new DexFile instance by reading in the given dex file
    [all...]
  /art/runtime/verifier/
method_verifier.h 151 static FailureKind VerifyClass(const DexFile* dex_file, mirror::DexCache* dex_cache,
153 const DexFile::ClassDef* class_def,
157 static void VerifyMethodAndDump(std::ostream& os, uint32_t method_idx, const DexFile* dex_file,
159 const DexFile::ClassDef* class_def,
160 const DexFile::CodeItem* code_item,
226 MethodVerifier(const DexFile* dex_file, mirror::DexCache* dex_cache,
227 mirror::ClassLoader* class_loader, const DexFile::ClassDef* class_def,
228 const DexFile::CodeItem* code_item,
265 static FailureKind VerifyMethod(uint32_t method_idx, const DexFile* dex_file,
268 const DexFile::ClassDef* class_def_idx
    [all...]
  /art/compiler/
elf_writer_mclinker.cc 52 const std::vector<const DexFile*>& dex_files,
61 const std::vector<const DexFile*>& dex_files,
237 void ElfWriterMclinker::AddMethodInputs(const std::vector<const DexFile*>& dex_files) {
242 const DexFile& dex_file = it.GetDexFile();
346 void ElfWriterMclinker::FixupOatMethodOffsets(const std::vector<const DexFile*>& dex_files) {
353 const DexFile& dex_file = it.GetDexFile();

Completed in 239 milliseconds

1 2 3 4 5 6 7 8 91011>>