Searched defs:inputBytes (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/test/sun/nio/cs/
H A DTestJIS0208Decoder.java35 static byte [] inputBytes = new byte[] {(byte)'F', (byte)'|', (byte)'K', (byte)'\\', field in class:TestJIS0208Decoder
51 String ret = dec.decode(ByteBuffer.wrap(inputBytes)).toString();
H A DTestJIS0212Decoder.java36 static byte [] inputBytes = new byte[] {(byte)0x30, (byte)0x21, (byte)0x30, (byte)0x22, field in class:TestJIS0212Decoder
52 String ret = dec.decode(ByteBuffer.wrap(inputBytes)).toString();
H A DSurrogateGB18030Test.java57 byte[] inputBytes = { (byte)0xe3,
64 test.decodeTest(inputBytes, expectedStr);
103 private void decodeTest(byte[] inputBytes, String expectedStr) argument
106 String s2 = new String(inputBytes, "GB18030");
110 ByteBuffer bb = ByteBuffer.wrap(inputBytes);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpMessage.java104 * @param inputBytes The flat message.
109 public int getRequestId(byte[] inputBytes) throws SnmpStatusException { argument
115 bdec = new BerDecoder(inputBytes);
144 * @param inputBytes The bytes to be decoded.
148 public void decodeMessage(byte[] inputBytes, int byteCount) argument
151 BerDecoder bdec = new BerDecoder(inputBytes/*, byteCount */) ; // FIXME
H A DSnmpV3Message.java171 * @param inputBytes The bytes to be decoded.
175 public void decodeMessage(byte[] inputBytes, int byteCount) argument
179 BerDecoder bdec = new BerDecoder(inputBytes);
H A DSnmpMsg.java133 * @param inputBytes The bytes to be decoded.
137 public abstract void decodeMessage(byte[] inputBytes, int byteCount) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/internal/
H A DSnmpIncomingResponse.java89 * @param inputBytes The bytes to be decoded.
93 public SnmpMsg decodeMessage(byte[] inputBytes, argument
H A DSnmpIncomingRequest.java112 * @param inputBytes The bytes to be decoded.
116 public void decodeMessage(byte[] inputBytes, argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/
H A DCanonicalizerSpi.java53 * @param inputBytes
63 public byte[] engineCanonicalize(byte[] inputBytes) argument
68 java.io.ByteArrayInputStream bais = new ByteArrayInputStream(inputBytes);
H A DCanonicalizer.java230 * @param inputBytes
237 public byte[] canonicalize(byte[] inputBytes) argument
240 InputStream bais = new ByteArrayInputStream(inputBytes);
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DClassReaderWriter.java167 byte[] inputBytes() { method in class:ClassReaderWriter

Completed in 95 milliseconds