Searched refs:inputBytes (Results 1 - 14 of 14) 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/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/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 DSnmpIncomingRequest.java112 * @param inputBytes The bytes to be decoded.
116 public void decodeMessage(byte[] inputBytes, argument
H A DSnmpIncomingResponse.java89 * @param inputBytes The bytes to be decoded.
93 public SnmpMsg decodeMessage(byte[] inputBytes, argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DCMap.java312 byte[] inputBytes = new byte[(dEnd-dBegin+1)*2];
322 inputBytes[j++] = (byte)0xff;
323 inputBytes[j++] = (byte)0xff;
325 inputBytes[j++] = (byte)firstByte;
326 inputBytes[j++] = (byte)(i & 0xff);
331 inputBytes[j++] = (byte)(i>>8 & 0xff);
332 inputBytes[j++] = (byte)(i & 0xff);
340 .decode(ByteBuffer.wrap(inputBytes, 0, inputBytes.length),
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/keyresolver/implementations/
H A DRetrievalMethodResolver.java131 byte inputBytes[] = resource.getBytes();
132 e = getDocFromBytes(inputBytes);
135 log.log(java.util.logging.Level.FINE, "we have to parse " + inputBytes.length + " bytes");
217 byte inputBytes[] = resource.getBytes();
220 X509Certificate cert =(X509Certificate) certFact.generateCertificate(new ByteArrayInputStream(inputBytes));
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DClassReaderWriter.java167 byte[] inputBytes() { method in class:ClassReaderWriter
H A DClassDump.java225 if (length > c.inputBytes().length) {

Completed in 136 milliseconds