Home | History | Annotate | Download | only in rawdex

Lines Matching refs:file

5  * you may not use this file except in compliance with the License.
27 public void read(DexRandomAccessFile file) throws IOException {
28 file.getOffsetTracker().getNewOffsettable(file, this);
29 shortyIdx = file.readUInt();
30 returnTypeIdx = file.readUInt();
31 parametersOff = file.getOffsetTracker().getNewOffset(file.readUInt());
35 public void write(DexRandomAccessFile file) throws IOException {
36 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
37 file.writeUInt(shortyIdx);
38 file.writeUInt(returnTypeIdx);
39 file.getOffsetTracker().tryToWriteOffset(parametersOff, file, false /* ULEB128 */);