Searched defs:encoded (Results 1 - 4 of 4) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoItem.java40 private byte[] encoded; field in class:DebugInfoItem
76 encoded = encode(addedTo.getFile(), null, null, null, false);
77 setWriteSize(encoded.length);
127 out.write(encoded);
140 * @return {@code non-null;} the encoded array
171 * @return {@code non-null;} the encoded array
H A DDebugInfoDecoder.java44 /** encoded debug info */
45 private final byte[] encoded; field in class:DebugInfoDecoder
86 * @param encoded encoded debug info
94 DebugInfoDecoder(byte[] encoded, int codesize, int regSize, argument
96 if (encoded == null) {
97 throw new NullPointerException("encoded == null");
100 this.encoded = encoded;
240 ByteArrayInputStream bs = new ByteArrayInputStream(encoded);
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoItem.java37 private byte[] encoded; field in class:DebugInfoItem
73 encoded = encode(addedTo.getFile(), null, null, null, false);
74 setWriteSize(encoded.length);
124 out.write(encoded);
137 * @return {@code non-null;} the encoded array
168 * @return {@code non-null;} the encoded array
H A DDebugInfoDecoder.java55 /** encoded debug info */
56 private final byte[] encoded; field in class:DebugInfoDecoder
97 * @param encoded encoded debug info
105 DebugInfoDecoder(byte[] encoded, int codesize, int regSize, argument
107 if (encoded == null) {
108 throw new NullPointerException("encoded == null");
111 this.encoded = encoded;
250 ByteInput bs = new ByteArrayByteInput(encoded);
[all...]

Completed in 5 milliseconds