Searched refs:fileOffset (Results 1 - 3 of 3) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DSection.java40 private int fileOffset; field in class:Section
79 this.fileOffset = -1;
108 if (fileOffset < 0) {
109 throw new RuntimeException("fileOffset not set");
112 return fileOffset;
119 * @param fileOffset {@code >= 0;} the desired offset from the start of the
124 public final int setFileOffset(int fileOffset) { argument
125 if (fileOffset < 0) {
126 throw new IllegalArgumentException("fileOffset < 0");
129 if (this.fileOffset >
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DSection.java39 private int fileOffset; field in class:Section
78 this.fileOffset = -1;
107 if (fileOffset < 0) {
108 throw new RuntimeException("fileOffset not set");
111 return fileOffset;
118 * @param fileOffset {@code >= 0;} the desired offset from the start of the
123 public final int setFileOffset(int fileOffset) { argument
124 if (fileOffset < 0) {
125 throw new IllegalArgumentException("fileOffset < 0");
128 if (this.fileOffset >
[all...]
/dalvik/libdex/
H A DDexSwapVerify.cpp68 static inline u4 fileOffset(const CheckState* state, const void* ptr) { function
94 fileOffset(state, start), fileOffset(state, end));
2505 newOffset = fileOffset(state, newPtr);

Completed in 115 milliseconds