Home
last modified time | relevance | path

Searched defs:dexFile (Results 1 – 25 of 244) sorted by relevance

12345678910

/aosp_15_r20/out/soong/.intermediates/art/artd/binder/artd-aidl-java-source/gen/com/android/server/art/
DIArtd.java42 …ic com.android.server.art.GetDexoptStatusResult getDexoptStatus(java.lang.String dexFile, java.lan… in getDexoptStatus()
51 …ean isProfileUsable(com.android.server.art.ProfilePath profile, java.lang.String dexFile) throws a… in isProfileUsable()
62 ….art.ProfilePath src, com.android.server.art.OutputProfile dst, java.lang.String dexFile) throws a… in copyAndRewriteProfile()
72 …ewriteEmbeddedProfile(com.android.server.art.OutputProfile dst, java.lang.String dexFile) throws a… in copyAndRewriteEmbeddedProfile()
137 …@Override public int getDexFileVisibility(java.lang.String dexFile) throws android.os.RemoteExcept… in getDexFileVisibility()
156 …ic com.android.server.art.GetDexoptNeededResult getDexoptNeeded(java.lang.String dexFile, java.lan… in getDexoptNeeded()
177 … dexopt(com.android.server.art.OutputArtifacts outputArtifacts, java.lang.String dexFile, java.lan… in dexopt()
218 …@Override public boolean isInDalvikCache(java.lang.String dexFile) throws android.os.RemoteExcepti… in isInDalvikCache()
353 …@Override public java.lang.String validateDexPath(java.lang.String dexFile) throws android.os.Remo… in validateDexPath()
358 …@Override public java.lang.String validateClassLoaderContext(java.lang.String dexFile, java.lang.S… in validateClassLoaderContext()
[all …]
/aosp_15_r20/art/artd/binder/com/android/server/art/
H A DIArtd.aidl43 com.android.server.art.GetDexoptStatusResult getDexoptStatus( in getDexoptStatus()
53 @utf8InCpp String dexFile); in isProfileUsable()
64 inout com.android.server.art.OutputProfile dst, @utf8InCpp String dexFile); in copyAndRewriteProfile()
73 inout com.android.server.art.OutputProfile dst, @utf8InCpp String dexFile); in copyAndRewriteEmbeddedProfile()
134 com.android.server.art.FileVisibility getDexFileVisibility(@utf8InCpp String dexFile); in getDexFileVisibility()
150 com.android.server.art.GetDexoptNeededResult getDexoptNeeded( in getDexoptNeeded()
174 @utf8InCpp String dexFile, @utf8InCpp String instructionSet, in dexopt()
221 boolean isInDalvikCache(@utf8InCpp String dexFile); in isInDalvikCache()
344 @nullable @utf8InCpp String validateDexPath(@utf8InCpp String dexFile); in validateDexPath()
347 @nullable @utf8InCpp String validateClassLoaderContext( in validateClassLoaderContext()
/aosp_15_r20/external/google-smali/dexlib2/src/test/java/com/android/tools/smali/dexlib2/analysis/
H A DMethodAnalyzerTest.java85 … DexFile dexFile = new ImmutableDexFile(forArtVersion(56), Collections.singletonList(classDef)); in testInstanceOfNarrowingEqz_art() local
116 … DexFile dexFile = new ImmutableDexFile(Opcodes.forApi(19), Collections.singletonList(classDef)); in testInstanceOfNarrowingEqz_dalvik() local
148 … DexFile dexFile = new ImmutableDexFile(forArtVersion(56), Collections.singletonList(classDef)); in testInstanceOfNarrowingNez_art() local
179 … DexFile dexFile = new ImmutableDexFile(Opcodes.getDefault(), Collections.singletonList(classDef)); in testInstanceOfNarrowingNez_dalvik() local
212 … DexFile dexFile = new ImmutableDexFile(forArtVersion(56), Collections.singletonList(classDef)); in testInstanceOfNarrowingAfterMove_art() local
247 … DexFile dexFile = new ImmutableDexFile(Opcodes.getDefault(), Collections.singletonList(classDef)); in testInstanceOfNarrowingAfterMove_dalvik() local
H A DCustomMethodInlineTableTest.java76 … ImmutableDexFile dexFile = new ImmutableDexFile(Opcodes.getDefault(), ImmutableList.of(classDef)); in testCustomMethodInlineTable_Virtual() local
107 … ImmutableDexFile dexFile = new ImmutableDexFile(Opcodes.getDefault(), ImmutableList.of(classDef)); in testCustomMethodInlineTable_Static() local
138 … ImmutableDexFile dexFile = new ImmutableDexFile(Opcodes.getDefault(), ImmutableList.of(classDef)); in testCustomMethodInlineTable_Direct() local
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/instruction/
H A DDexBackedInstruction.java44 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedInstruction
48 public DexBackedInstruction(@Nonnull DexBackedDexFile dexFile, in DexBackedInstruction()
60 …public static Instruction readFrom(DexBackedDexFile dexFile, @Nonnull DexReader<? extends DexBuffe… in readFrom()
76 …c DexBackedInstruction buildInstruction(@Nonnull DexBackedDexFile dexFile, @Nullable Opcode opcode, in buildInstruction()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/raw/
H A DEncodedValue.java43 public static void annotateEncodedValue( in annotateEncodedValue()
92 public static void annotateEncodedAnnotation( in annotateEncodedAnnotation()
118 public static void annotateEncodedArray( in annotateEncodedArray()
137 …tring asString(@Nonnull DexBackedDexFile dexFile, @Nonnull DexReader<? extends DexBuffer> reader) { in asString()
/aosp_15_r20/dalvik/dx/src/com/android/dx/dex/file/
H A DAnnotationsDirectoryItem.java137 public void setClassAnnotations(Annotations annotations, DexFile dexFile) { in setClassAnnotations()
158 Annotations annotations, DexFile dexFile) { in addFieldAnnotations()
175 Annotations annotations, DexFile dexFile) { in addMethodAnnotations()
192 AnnotationsList list, DexFile dexFile) { in addParameterAnnotations()
H A DClassDefItem.java326 public void setClassAnnotations(Annotations annotations, DexFile dexFile) { in setClassAnnotations()
338 Annotations annotations, DexFile dexFile) { in addFieldAnnotations()
350 Annotations annotations, DexFile dexFile) { in addMethodAnnotations()
362 AnnotationsList list, DexFile dexFile) { in addParameterAnnotations()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/util/
H A DEncodedArrayItemIterator.java56 … public static EncodedArrayItemIterator newOrEmpty(@Nonnull DexBackedDexFile dexFile, int offset) { in newOrEmpty()
65 @Nonnull private final DexBackedDexFile dexFile; field in EncodedArrayItemIterator.EncodedArrayItemIteratorImpl
69 public EncodedArrayItemIteratorImpl(@Nonnull DexBackedDexFile dexFile, int offset) { in EncodedArrayItemIteratorImpl()
H A DDebugInfo.java72 public static DebugInfo newOrEmpty(@Nonnull DexBackedDexFile dexFile, int debugInfoOffset, in newOrEmpty()
99 @Nonnull public final DexBackedDexFile dexFile; field in DebugInfo.DebugInfoImpl
103 public DebugInfoImpl(@Nonnull DexBackedDexFile dexFile, in DebugInfoImpl()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/
H A DDexFileFactory.java249 DexBackedDexFile dexFile = DexBackedDexFile.fromInputStream(opcodes, inputStream); in loadDexContainer() local
290 …public static void writeDexFile(@Nonnull String path, @Nonnull DexFile dexFile) throws IOException… in writeDexFile()
456 private final DexBackedDexFile dexFile; field in DexFileFactory.SingletonMultiDexContainer
458 … public SingletonMultiDexContainer(@Nonnull String entryName, @Nonnull DexBackedDexFile dexFile) { in SingletonMultiDexContainer()
/aosp_15_r20/dalvik/dx/src/com/android/dx/dex/cf/
H A DCfTranslator.java100 CfOptions cfOptions, DexOptions dexOptions, DexFile dexFile) { in translate()
124 CfOptions cfOptions, DexOptions dexOptions, DexFile dexFile) { in translate0()
195 DirectClassFile cf, ClassDefItem out, DexFile dexFile) { in processFields()
278 DexOptions dexOptions, ClassDefItem out, DexFile dexFile) { in processMethods()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/
H A DDexBackedMethod.java60 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedMethod
77 public DexBackedMethod(@Nonnull DexBackedDexFile dexFile, in DexBackedMethod()
98 public DexBackedMethod(@Nonnull DexBackedDexFile dexFile, in DexBackedMethod()
H A DDexBackedField.java53 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedField
67 public DexBackedField(@Nonnull DexBackedDexFile dexFile, in DexBackedField()
90 public DexBackedField(@Nonnull DexBackedDexFile dexFile, in DexBackedField()
/aosp_15_r20/libcore/dalvik/src/main/java/dalvik/system/
H A DDexPathList.java664 private final DexFile dexFile; field in DexPathList.Element
674 public Element(DexFile dexFile, File dexZipPath) { in Element()
684 public Element(DexFile dexFile) { in Element()
702 public Element(File dir, boolean isDirectory, File zip, DexFile dexFile) { in Element()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/value/
H A DDexBackedMethodTypeEncodedValue.java43 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedMethodTypeEncodedValue
46 public DexBackedMethodTypeEncodedValue(@Nonnull DexBackedDexFile dexFile, in DexBackedMethodTypeEncodedValue()
H A DDexBackedTypeEncodedValue.java41 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedTypeEncodedValue
44 public DexBackedTypeEncodedValue(@Nonnull DexBackedDexFile dexFile, in DexBackedTypeEncodedValue()
H A DDexBackedMethodEncodedValue.java43 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedMethodEncodedValue
46 public DexBackedMethodEncodedValue(@Nonnull DexBackedDexFile dexFile, in DexBackedMethodEncodedValue()
H A DDexBackedStringEncodedValue.java41 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedStringEncodedValue
44 public DexBackedStringEncodedValue(@Nonnull DexBackedDexFile dexFile, in DexBackedStringEncodedValue()
H A DDexBackedFieldEncodedValue.java43 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedFieldEncodedValue
46 public DexBackedFieldEncodedValue(@Nonnull DexBackedDexFile dexFile, in DexBackedFieldEncodedValue()
H A DDexBackedMethodHandleEncodedValue.java43 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedMethodHandleEncodedValue
46 public DexBackedMethodHandleEncodedValue( in DexBackedMethodHandleEncodedValue()
H A DDexBackedEnumEncodedValue.java43 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedEnumEncodedValue
46 …(@Nonnull DexBackedDexFile dexFile, @Nonnull DexReader<? extends DexBuffer> reader, int valueArg) { in DexBackedEnumEncodedValue()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/analysis/
H A DDexClassProvider.java41 private final DexFile dexFile; field in DexClassProvider
44 public DexClassProvider(DexFile dexFile) { in DexClassProvider()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/reference/
H A DDexBackedTypeReference.java40 @Nonnull public final DexBackedDexFile dexFile; field in DexBackedTypeReference
43 public DexBackedTypeReference(@Nonnull DexBackedDexFile dexFile, in DexBackedTypeReference()
/aosp_15_r20/external/google-smali/baksmali/src/test/java/com/android/tools/smali/baksmali/
H A DFieldGapOrderTest.java44 DexFile dexFile = getInputDexFile("FieldGapOrder", new BaksmaliOptions()); in testOldOrder() local
58 DexFile dexFile = getInputDexFile("FieldGapOrder", new BaksmaliOptions()); in testNewOrder() local

12345678910