Home | History | Annotate | Download | only in dex

Lines Matching defs:out

29      * TODO: factor out ID constants.
174 public void writeHeader(Dex.Section out, int api) throws IOException {
175 out.write(DexFormat.apiToMagic(api).getBytes("UTF-8"));
176 out.writeInt(checksum);
177 out.write(signature);
178 out.writeInt(fileSize);
179 out.writeInt(SizeOf.HEADER_ITEM);
180 out.writeInt(DexFormat.ENDIAN_TAG);
181 out.writeInt(linkSize);
182 out.writeInt(linkOff);
183 out.writeInt(mapList.off);
184 out.writeInt(stringIds.size);
185 out.writeInt(stringIds.off);
186 out.writeInt(typeIds.size);
187 out.writeInt(typeIds.off);
188 out.writeInt(protoIds.size);
189 out.writeInt(protoIds.off);
190 out.writeInt(fieldIds.size);
191 out.writeInt(fieldIds.off);
192 out.writeInt(methodIds.size);
193 out.writeInt(methodIds.off);
194 out.writeInt(classDefs.size);
195 out.writeInt(classDefs.off);
196 out.writeInt(dataSize);
197 out.writeInt(dataOff);
200 public void writeMap(Dex.Section out) throws IOException {
208 out.writeInt(count);
211 out.writeShort(section.type);
212 out.writeShort((short) 0);
213 out.writeInt(section.size);
214 out.writeInt(section.off);