Searched defs:entry (Results 1 - 13 of 13) sorted by relevance

/dalvik/libdex/
H A DZipArchive.h68 * Find an entry in the Zip archive, by name. Returns NULL if the entry
77 * Uncompress and write an entry to a file descriptor.
82 ZipEntry* entry, int fd) {
83 return ExtractEntryToFile(handle, entry, fd);
81 dexZipExtractEntryToFile(ZipArchiveHandle handle, ZipEntry* entry, int fd) argument
H A DCmdUtils.cpp44 ZipEntry entry; local
67 if (dexZipFindEntry(archive, kFileToExtract, &entry) != 0) {
76 if (dexZipExtractEntryToFile(archive, &entry, fd) != 0) {
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchHandlerList.java75 Entry entry = get(i);
86 sb.append(entry.getExceptionType().toHuman());
90 sb.append(Hex.u2or4(entry.getHandler()));
115 * Sets the entry at the given index.
126 * Sets the entry at the given index.
129 * @param entry {@code non-null;} the entry to set at {@code n}
131 public void set(int n, Entry entry) { argument
132 set0(n, entry);
H A DCatchTable.java23 * Table of catch entries. Each entry includes a range of code
54 * Sets the entry at the given index.
57 * @param entry {@code non-null;} the entry to set at {@code n}
59 public void set(int n, Entry entry) { argument
60 set0(n, entry);
H A DPositionList.java136 * Sets the entry at the given index.
139 * @param entry {@code non-null;} the entry to set at {@code n}
141 public void set(int n, Entry entry) { argument
142 set0(n, entry);
149 /** {@code >= 0;} address of this entry */
158 * @param address {@code >= 0;} address of this entry
H A DLocalList.java31 * List of local variables. Each local variable entry indicates a
64 * Sets the entry at the given index.
67 * @param entry {@code non-null;} the entry to set at {@code n}
69 public void set(int n, Entry entry) { argument
70 set0(n, entry);
89 * Disposition of a local entry.
186 * @param other {@code non-null;} entry to compare to
295 * @param other {@code non-null;} another entry
754 Entry entry;
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java75 Entry entry = get(i);
86 sb.append(entry.getExceptionType().toHuman());
90 sb.append(Hex.u2or4(entry.getHandler()));
115 * Sets the entry at the given index.
126 * Sets the entry at the given index.
129 * @param entry {@code non-null;} the entry to set at {@code n}
131 public void set(int n, Entry entry) { argument
132 set0(n, entry);
H A DCatchTable.java22 * Table of catch entries. Each entry includes a range of code
53 * Sets the entry at the given index.
56 * @param entry {@code non-null;} the entry to set at {@code n}
58 public void set(int n, Entry entry) { argument
59 set0(n, entry);
H A DPositionList.java136 * Sets the entry at the given index.
139 * @param entry {@code non-null;} the entry to set at {@code n}
141 public void set(int n, Entry entry) { argument
142 set0(n, entry);
149 /** {@code >= 0;} address of this entry */
158 * @param address {@code >= 0;} address of this entry
H A DLocalList.java30 * List of local variables. Each local variable entry indicates a
63 * Sets the entry at the given index.
66 * @param entry {@code non-null;} the entry to set at {@code n}
68 public void set(int n, Entry entry) { argument
69 set0(n, entry);
88 * Disposition of a local entry.
185 * @param other {@code non-null;} entry to compare to
294 * @param other {@code non-null;} another entry
750 Entry entry;
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoEncoder.java256 // Combined advance PC + position entry
286 LocalList.Entry entry = locals.get(curLocalIdx++);
287 int reg = entry.getRegister();
290 if (entry == prevEntry) {
299 // At this point we have a new entry one way or another.
300 lastEntryForReg[reg] = entry;
302 if (entry.isStart()) {
303 if ((prevEntry != null) && entry.matches(prevEntry)) {
316 emitLocalRestart(entry);
318 emitLocalStart(entry);
611 emitLocalRestart(LocalList.Entry entry) argument
682 emitLocalStart(LocalList.Entry entry) argument
716 emitLocalStartExtended(LocalList.Entry entry) argument
745 emitLocalEnd(LocalList.Entry entry) argument
772 emitPosition(PositionList.Entry entry) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoEncoder.java264 // Combined advance PC + position entry
294 LocalList.Entry entry = locals.get(curLocalIdx++);
295 int reg = entry.getRegister();
298 if (entry == prevEntry) {
307 // At this point we have a new entry one way or another.
308 lastEntryForReg[reg] = entry;
310 if (entry.isStart()) {
311 if ((prevEntry != null) && entry.matches(prevEntry)) {
324 emitLocalRestart(entry);
326 emitLocalStart(entry);
619 emitLocalRestart(LocalList.Entry entry) argument
690 emitLocalStart(LocalList.Entry entry) argument
724 emitLocalStartExtended(LocalList.Entry entry) argument
753 emitLocalEnd(LocalList.Entry entry) argument
780 emitPosition(PositionList.Entry entry) argument
[all...]
/dalvik/dx/etc/
H A Djasmin.jar ... = " () public void addEntry (jas.CatchEntry) jas.CatchEntry entry public void addEntry (jas.Label, jas.Label, jas ...

Completed in 381 milliseconds