Searched refs:encodedBytes (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java49 private ByteBuffer encodedBytes; field in class:LoggingPrintStream
125 encodedBytes = ByteBuffer.allocate(80);
136 int numBytes = Math.min(encodedBytes.remaining(), end - start);
137 encodedBytes.put(bytes, start, numBytes);
140 encodedBytes.flip();
144 coderResult = decoder.decode(encodedBytes, decodedChars, false);
151 encodedBytes.compact();
/frameworks/base/telephony/java/com/android/internal/telephony/uicc/asn1/
H A DAsn1Node.java83 * encodedBytes} and adds all nodes parsed from it as children.
88 public Builder addChildren(byte[] encodedBytes) throws InvalidAsn1DataException { argument
89 Asn1Decoder subDecoder = new Asn1Decoder(encodedBytes, 0, encodedBytes.length);

Completed in 180 milliseconds