HomeSort by relevance Sort by last modified time
    Searched refs:DexFile (Results 51 - 75 of 99) sorted by null

1 23 4

  /dalvik/dx/src/com/android/dx/dex/file/
ProtoIdItem.java 114 public void addContents(DexFile file) {
129 public void writeTo(DexFile file, AnnotatedOutput out) {
FieldIdsSection.java 42 public FieldIdsSection(DexFile file) {
MethodIdsSection.java 42 public MethodIdsSection(DexFile file) {
ProtoIdsSection.java 42 public ProtoIdsSection(DexFile file) {
MixedItemSection.java 88 public MixedItemSection(String name, DexFile file, int alignment,
264 DexFile file = getFile();
334 DexFile file = getFile();
DebugInfoDecoder.java 66 private final DexFile file;
95 boolean isStatic, CstMethodRef ref, DexFile file) {
424 public static void validateEncode(byte[] info, DexFile file,
447 DexFile file, PositionList pl, LocalList ll) {
StringIdsSection.java 45 public StringIdsSection(DexFile file) {
TypeIdsSection.java 42 public TypeIdsSection(DexFile file) {
ValueEncoder.java 99 private final DexFile file;
110 public ValueEncoder(DexFile file, AnnotatedOutput out) {
494 public static void addContents(DexFile file, Annotation annotation) {
510 * #addContents(DexFile,Annotation)} recursively should it
516 public static void addContents(DexFile file, Constant cst) {
AnnotationsDirectoryItem.java 240 public void addContents(DexFile file) {
284 protected void writeTo0(DexFile file, AnnotatedOutput out) {
CatchStructs.java 119 public void encode(DexFile file) {
195 public void writeTo(DexFile file, AnnotatedOutput out) {
  /dalvik/libdex/
Android.mk 22 DexFile.c \
DexClass.h 24 #include "DexFile.h"
109 DEX_INLINE const DexCode* dexGetCode(const DexFile* pDexFile,
DexOptData.c 49 bool dexParseOptData(const u1* data, size_t length, DexFile* pDexFile)
DexProto.c 122 return dexGetProtoId(pProto->dexFile, pProto->protoIdx);
132 return dexStringById(pProto->dexFile, protoId->shortyIdx);
140 const DexFile* dexFile = pProto->dexFile;
142 const DexTypeList* typeList = dexGetProtoParameters(dexFile, protoId);
149 length += strlen(dexStringByTypeIdx(dexFile, idx));
152 length += strlen(dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
161 const char* desc = dexStringByTypeIdx(dexFile, idx);
168 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx))
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericSignatureFormatErrorTest.java 8 import dalvik.system.DexFile;
57 @AndroidOnly("Uses Android specific class dalvik.system.DexFile " +
95 // DexFile df = new DexFile(tf);
  /dalvik/dexlist/
DexList.c 20 #include "libdex/DexFile.h"
91 void dumpMethod(DexFile* pDexFile, const char* fileName,
152 void dumpClass(DexFile* pDexFile, int idx)
199 DexFile* pDexFile = NULL;
247 fprintf(stderr, "%s: dexfile [dexfile2 ...]\n", gProgName);
  /libcore/dalvik/src/main/java/dalvik/system/
DexClassLoader.java 53 private final DexFile[] mDexs; // opened, prepped DEX files
95 mDexs = new DexFile[length];
117 mDexs[i] = DexFile.loadDex(dexPathList[i], outputName, 0);
PathClassLoader.java 54 private final DexFile[] mDexs;
118 mDexs = new DexFile[length];
121 System.getProperty("android.vm.dexfile", "").equals("true");
141 mDexs[i] = new DexFile(pathFile);
TouchDexLoader.java 47 private final DexFile[] mDexs;
69 mDexs = new DexFile[mPaths.length];
72 System.getProperty("android.vm.dexfile", "").equals("true");
94 mDexs[i] = new DexFile(pathFile);
  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java 23 import dalvik.system.DexFile;
122 } else if ("true".equals(System.getProperty("android.vm.dexfile", "false"))) {
221 DexFile dexFile = null;
223 dexFile = new DexFile(apkPath);
224 Enumeration<String> apkClassNames = dexFile.entries();
247 if (dexFile != null) {
249 // dexFile.close();
  /cts/tools/signature-tools/src/signature/converter/dex/
DexUtil.java 40 import dex.structure.DexFile;
583 public static Set<DexFile> getDexFiles(Set<String> fileNames)
585 Set<DexFile> parsedFiles = new HashSet<DexFile>();
587 for (String dexFile : fileNames) {
589 DexBuffer dexBuffer = new DexBuffer(dexFile);
  /dalvik/vm/
DvmDex.h 18 * The VM wraps some additional data structures around the DexFile. These
24 #include "libdex/DexFile.h"
38 /* pointer to the DexFile we're associated with */
39 DexFile* pDexFile;
  /dalvik/vm/analysis/
RegisterMap.h 193 const void* dvmRegisterMapGetClassData(const DexFile* pDexFile, u4 classIdx,
  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 19 import dex.structure.DexFile;
68 public DexFile read(DexBuffer buffer) {

Completed in 319 milliseconds

1 23 4