HomeSort by relevance Sort by last modified time
    Searched refs:dex (Results 501 - 525 of 731) sorted by null

<<21222324252627282930

  /dalvik/dx/src/com/android/dex/
Dex.java 17 package com.android.dex;
19 import com.android.dex.Code.CatchHandler;
20 import com.android.dex.Code.Try;
21 import com.android.dex.util.ByteInput;
22 import com.android.dex.util.ByteOutput;
23 import com.android.dex.util.FileUtils;
48 * The bytes of a dex file in memory for reading and writing. All int offsets
51 public final class Dex {
71 * Creates a new dex that reads from {@code data}. It is an error to modify
72 * {@code data} after using it to create a dex buffer
    [all...]
  /art/compiler/
verifier_deps_test.cc 24 #include "dex/verification_results.h"
25 #include "dex/verified_method.h"
232 const std::vector<dex::TypeIndex>& unverified_classes = deps.GetUnverifiedClasses(*dex_file);
233 std::set<dex::TypeIndex> set(unverified_classes.begin(), unverified_classes.end());
257 dex::TypeIndex index = dex_file.GetIndexForTypeId(*type_id);
259 for (dex::TypeIndex entry : dex_dep.second->unverified_classes_) {
483 dex::StringIndex id_Main1 = verifier_deps_->GetIdFromString(*primary_dex_file_, "LMain;");
487 dex::StringIndex id_Main2 = verifier_deps_->GetIdFromString(*primary_dex_file_, "LMain;");
491 dex::StringIndex id_Lorem1 = verifier_deps_->GetIdFromString(*primary_dex_file_, "Lorem ipsum");
495 dex::StringIndex id_Lorem2 = verifier_deps_->GetIdFromString(*primary_dex_file_, "Lorem ipsum")
    [all...]
compiled_method.h 274 dex::TypeIndex TargetTypeIndex() const {
278 return dex::TypeIndex(type_idx_);
288 dex::StringIndex TargetStringIndex() const {
292 return dex::StringIndex(string_idx_);
345 uint32_t element_offset_; // Element offset in the dex cache arrays.
  /art/runtime/
transaction.h 115 void RecordResolveString(ObjPtr<mirror::DexCache> dex_cache, dex::StringIndex string_idx)
239 ResolveStringLog(ObjPtr<mirror::DexCache> dex_cache, dex::StringIndex string_idx);
247 const dex::StringIndex string_idx_;
art_method-inl.h 153 inline mirror::Class* ArtMethod::GetClassFromTypeIndex(dex::TypeIndex type_idx, bool resolve) {
226 // It is safe to avoid the read barrier here since the dex file is constant, so if we read the
227 // from-space dex file pointer it will be equal to the to-space copy.
289 inline bool ArtMethod::IsResolvedTypeIdx(dex::TypeIndex type_idx) {
343 inline const char* ArtMethod::GetTypeDescriptorFromTypeIdx(dex::TypeIndex type_idx) {
397 dex::TypeIndex return_type_idx = proto_id.return_type_idx_;
454 // For normal methods, dex cache shortcuts will be visited through the declaring class.
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 19 import com.android.dex.util.ByteOutput;
20 import com.android.dex.util.ExceptionWithContext;
21 import com.android.dex.Leb128;
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
PackageDexUsageTests.java 17 package com.android.server.pm.dex;
44 import static com.android.server.pm.dex.PackageDexUsage.PackageUseInfo;
45 import static com.android.server.pm.dex.PackageDexUsage.DexUseInfo;
84 fooDataDir + "sec-1.dex", 0, isa, false, false);
87 fooDataDir + "sec-1.dex", 1, isa, false, false);
90 fooDataDir + "sec-2.dex", 0, isa, true, false);
103 barDataDir + "sec-1.dex", 0, isa, false, false);
105 barDataDir1 + "sec-2.dex", 1, isa, false, false);
346 // Check dex use info
  /art/compiler/optimizing/
gvn_test.cc 37 dex::TypeIndex(0),
121 dex::TypeIndex(0),
204 dex::TypeIndex(0),
351 dex::TypeIndex(0),
  /build/make/core/
dex_preopt_libart_boot.mk 65 $(addprefix --dex-file=,$(LIBART_TARGET_BOOT_DEX_FILES)) \
66 $(addprefix --dex-location=,$(LIBART_TARGET_BOOT_DEX_LOCATIONS)) \
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 17 package dex.reader;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java 17 package com.android.dexgen.dex.code;
HighRegisterPrefix.java 17 package com.android.dexgen.dex.code;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetItem.java 17 package com.android.dexgen.dex.file;
EncodedField.java 17 package com.android.dexgen.dex.file;
HeaderItem.java 17 package com.android.dexgen.dex.file;
24 * File header section of a {@code .dex} file.
31 private static final String MAGIC = "dex\n035\0";
OffsettedItem.java 17 package com.android.dexgen.dex.file;
ParameterAnnotationStruct.java 17 package com.android.dexgen.dex.file;
Statistics.java 17 package com.android.dexgen.dex.file;
StringIdsSection.java 17 package com.android.dexgen.dex.file;
30 * Strings list section of a {@code .dex} file.
TypeIdsSection.java 17 package com.android.dexgen.dex.file;
29 * Type identifiers list section of a {@code .dex} file.
UniformListItem.java 17 package com.android.dexgen.dex.file;
  /dalvik/dx/junit-tests/com/android/dx/merge/
DexMergerTest.java 22 import com.android.dex.Dex;
49 List<Dex> outputDexes = new ArrayList<>();
53 Dex merged =
55 outputDexes.toArray(new Dex[outputDexes.size()]),
64 private Dex getDexForClass(Class<?> clazz) throws IOException {
77 Main.main(new String[]{"--dex", "--output=" + output.toString(), classesJar.toString()});
79 return new Dex(Files.readAllBytes(output.resolve("classes.dex")));
  /dalvik/dx/src/com/android/dx/command/dump/
Main.java 19 import com.android.dex.util.FileUtils;
  /dalvik/dx/src/com/android/dx/dex/cf/
OptimizerOptions.java 17 package com.android.dx.dex.cf;
  /dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java 17 package com.android.dx.dex.code;

Completed in 645 milliseconds

<<21222324252627282930