Home
last modified time | relevance | path

Searched refs:entry (Results 1 – 25 of 87) sorted by relevance

1234

/dalvik/libdex/
DZipArchive.h132 int dexZipGetEntryInfo(const ZipArchive* pArchive, ZipEntry entry,
140 const ZipEntry entry) in dexGetZipEntryOffset() argument
143 dexZipGetEntryInfo(pArchive, entry, NULL, NULL, NULL, &val, NULL, NULL); in dexGetZipEntryOffset()
147 const ZipEntry entry) in dexGetZipEntryUncompLen() argument
150 dexZipGetEntryInfo(pArchive, entry, NULL, &val, NULL, NULL, NULL, NULL); in dexGetZipEntryUncompLen()
154 const ZipEntry entry) in dexGetZipEntryModTime() argument
157 dexZipGetEntryInfo(pArchive, entry, NULL, NULL, NULL, NULL, &val, NULL); in dexGetZipEntryModTime()
161 const ZipEntry entry) in dexGetZipEntryCrc32() argument
164 dexZipGetEntryInfo(pArchive, entry, NULL, NULL, NULL, NULL, NULL, &val); in dexGetZipEntryCrc32()
174 const ZipEntry entry, int fd);
DCmdUtils.c40 ZipEntry entry; in dexUnzipToFile() local
63 entry = dexZipFindEntry(&archive, kFileToExtract); in dexUnzipToFile()
64 if (entry == NULL) { in dexUnzipToFile()
73 if (dexZipExtractEntryToFile(&archive, entry, fd) != 0) { in dexUnzipToFile()
DZipArchive.c74 static int entryToIndex(const ZipArchive* pArchive, const ZipEntry entry) in entryToIndex() argument
76 long ent = ((long) entry) - kZipEntryAdj; in entryToIndex()
80 LOGW("Zip: invalid ZipEntry %p (%ld)\n", entry, ent); in entryToIndex()
468 int dexZipGetEntryInfo(const ZipArchive* pArchive, ZipEntry entry, in dexZipGetEntryInfo() argument
472 int ent = entryToIndex(pArchive, entry); in dexZipGetEntryInfo()
712 const ZipEntry entry, int fd) in dexZipExtractEntryToFile() argument
715 int ent = entryToIndex(pArchive, entry); in dexZipExtractEntryToFile()
717 LOGW("Zip: extract can't find entry %p\n", entry); in dexZipExtractEntryToFile()
725 if (dexZipGetEntryInfo(pArchive, entry, &method, &uncompLen, &compLen, in dexZipExtractEntryToFile()
/dalvik/vm/
DJarFile.c90 ZipEntry entry; in dvmDexCacheStatus() local
109 entry = dexZipFindEntry(&archive, kDexInJarName); in dvmDexCacheStatus()
110 if (entry != NULL) { in dvmDexCacheStatus()
123 dexGetZipEntryModTime(&archive, entry), in dvmDexCacheStatus()
124 dexGetZipEntryCrc32(&archive, entry), in dvmDexCacheStatus()
227 ZipEntry entry; in dvmJarFileOpen() local
234 entry = dexZipFindEntry(&archive, kDexInJarName); in dvmJarFileOpen()
235 if (entry != NULL) { in dvmJarFileOpen()
260 dexGetZipEntryModTime(&archive, entry), in dvmJarFileOpen()
261 dexGetZipEntryCrc32(&archive, entry), in dvmJarFileOpen()
[all …]
/dalvik/dx/src/com/android/dx/dex/file/
DDebugInfoEncoder.java286 LocalList.Entry entry = locals.get(curLocalIdx++); in emitLocalsAtAddress() local
287 int reg = entry.getRegister(); in emitLocalsAtAddress()
290 if (entry == prevEntry) { in emitLocalsAtAddress()
300 lastEntryForReg[reg] = entry; in emitLocalsAtAddress()
302 if (entry.isStart()) { in emitLocalsAtAddress()
303 if ((prevEntry != null) && entry.matches(prevEntry)) { in emitLocalsAtAddress()
316 emitLocalRestart(entry); in emitLocalsAtAddress()
318 emitLocalStart(entry); in emitLocalsAtAddress()
330 if (entry.getDisposition() in emitLocalsAtAddress()
332 emitLocalEnd(entry); in emitLocalsAtAddress()
[all …]
DCatchStructs.java165 CatchHandlerList.Entry entry = list.get(i); in encode() local
167 typeIds.indexOf(entry.getExceptionType())); in encode()
168 out.writeUnsignedLeb128(entry.getHandler()); in encode()
249 CatchTable.Entry entry = table.get(i); in annotateEntries() local
250 CatchHandlerList handlers = entry.getHandlers(); in annotateEntries()
251 String s1 = subPrefix + "try " + Hex.u2or4(entry.getStart()) in annotateEntries()
252 + ".." + Hex.u2or4(entry.getEnd()); in annotateEntries()
DDebugInfoDecoder.java467 for (PositionEntry entry : decodedEntries) { in validateEncode0()
472 if (entry.line == ple.getPosition().getLine() in validateEncode0()
473 && entry.address == ple.getAddress()) { in validateEncode0()
481 + entry.address + ", " + entry.line); in validateEncode0()
501 LocalEntry entry = decodedLocals.get(i); in validateEncode0() local
502 int idx = entry.nameIndex; in validateEncode0()
510 if ((entry.reg == e2.reg) && e2.isStart) { in validateEncode0()
/dalvik/vm/alloc/
DVisit.c45 HashEntry *entry = &table->pEntries[i]; in visitHashTable() local
46 if (entry->data != NULL && entry->data != HASH_TOMBSTONE) { in visitHashTable()
47 (*visitor)(&entry->data, arg); in visitHashTable()
59 Object **entry; in visitReferenceTable() local
63 for (entry = table->table; entry < table->nextEntry; ++entry) { in visitReferenceTable()
64 assert(entry != NULL); in visitReferenceTable()
65 (*visitor)(entry, arg); in visitReferenceTable()
/dalvik/dx/src/com/android/dx/dex/code/
DCatchHandlerList.java75 Entry entry = get(i); in toHuman() local
86 sb.append(entry.getExceptionType().toHuman()); in toHuman()
90 sb.append(Hex.u2or4(entry.getHandler())); in toHuman()
131 public void set(int n, Entry entry) { in set() argument
132 set0(n, entry); in set()
DLocalList.java69 public void set(int n, Entry entry) { in set() argument
70 set0(n, entry); in set()
754 Entry entry; in checkForEmptyRange() local
758 entry = result.get(at); in checkForEmptyRange()
760 if (entry == null) { in checkForEmptyRange()
764 if (entry.getAddress() != address) { in checkForEmptyRange()
769 if (entry.matches(endedLocal)) { in checkForEmptyRange()
785 entry = null; in checkForEmptyRange()
789 entry = result.get(at); in checkForEmptyRange()
791 if (entry == null) { in checkForEmptyRange()
[all …]
DPositionList.java141 public void set(int n, Entry entry) { in set() argument
142 set0(n, entry); in set()
DCatchTable.java59 public void set(int n, Entry entry) { in set() argument
60 set0(n, entry); in set()
DStdCatchBuilder.java172 CatchTable.Entry entry = in build() local
175 resultList.add(entry); in build()
185 CatchTable.Entry entry = in build() local
188 resultList.add(entry); in build()
/dalvik/vm/compiler/
DLoop.c41 BasicBlock *entry = cUnit->blockList[0]; in handlePhiPlacement() local
44 dvmCopyBitVector(entry->dataFlowInfo->defV, in handlePhiPlacement()
49 dvmIntersectBitVectors(phiV, entry->dataFlowInfo->defV, in handlePhiPlacement()
51 dvmIntersectBitVectors(phiV, entry->dataFlowInfo->defV, in handlePhiPlacement()
69 BasicBlock *entry = cUnit->blockList[0]; in fillPhiNodeContents() local
81 DECODE_REG(entry->dataFlowInfo->dalvikToSSAMap[dalvikReg]); in fillPhiNodeContents()
389 BasicBlock *entry = cUnit->blockList[0]; in genHoistedChecks() local
414 dvmCompilerAppendMIR(entry, rangeCheckMIR); in genHoistedChecks()
429 dvmCompilerAppendMIR(entry, boundCheckMIR); in genHoistedChecks()
446 dvmCompilerAppendMIR(entry, boundCheckMIR); in genHoistedChecks()
[all …]
/dalvik/tests/063-process-manager/src/
DMain.java29 for (Map.Entry<Thread, StackTraceElement[]> entry : in checkManager()
31 Thread t = entry.getKey(); in checkManager()
/dalvik/vm/interp/
DREADME.txt1 Dalvik interpreter entry point.
/dalvik/vm/mterp/
Dconfig-portstd18 # stub/glue mechanism, and defines different entry points. We generate it
36 # entry point
37 import portable/entry.c
Dconfig-portdbg37 # entry point
38 import portable/entry.c
Dconfig-allstubs37 # arch-specific entry point to interpreter
38 import cstubs/entry.c
/dalvik/dx/src/junit/runner/
DTestCaseClassLoader.java169 ZipEntry entry= zipFile.getEntry(fileName); in loadJarData() local
170 if (entry == null) in loadJarData()
172 int size= (int) entry.getSize(); in loadJarData()
174 stream= zipFile.getInputStream(entry); in loadJarData()
/dalvik/dx/tests/100-local-mismatch/
Dinfo.txt2 variable table entry fundamentally disagrees with an instruction that
/dalvik/tools/dexdeps/src/com/android/dexdeps/
DMain.java116 ZipEntry entry = zipFile.getEntry(CLASSES_DEX); in openInputFileAsZip() local
117 if (entry == null) { in openInputFileAsZip()
124 InputStream zis = zipFile.getInputStream(entry); in openInputFileAsZip()
/dalvik/vm/mterp/x86/
DOP_IPUT_WIDE.S21 movl (%eax,rIBASE,4),%eax # resolved entry
22 testl %eax,%eax # is resolved entry null?
DOP_IGET.S23 movl (%eax,rIBASE,4),%eax # resolved entry
24 testl %eax,%eax # is resolved entry null?
DOP_IGET_WIDE.S21 movl (%eax,rIBASE,4),%eax # resolved entry
22 testl %eax,%eax # is resolved entry null?

1234