Searched defs:getBytes (Results 26 - 50 of 88) sorted by relevance

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DASCIIUtility.java124 public static byte[] getBytes(String s) { method in class:ASCIIUtility
134 public static byte[] getBytes(InputStream is) throws IOException { method in class:ASCIIUtility
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/
H A DClientHelloRead.java79 public byte[] getBytes() { method in class:ClientHelloRead.TestServer
81 getBytes();
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DPostThruProxy.java70 public byte[] getBytes() { method in class:PostThruProxy.TestServer
72 getBytes();
H A DPostThruProxyWithAuth.java71 public byte[] getBytes() { method in class:PostThruProxyWithAuth.TestServer
74 getBytes();
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/NewImpl/
H A DComHostnameVerifier.java126 private byte[] getBytes(String path) method in class:ComHostnameVerifier
129 return "Hello world, I am here".getBytes();
164 byte[] bytecodes = getBytes(path);
H A DJavaxHostnameVerifier.java125 private byte[] getBytes(String path) method in class:JavaxHostnameVerifier
128 return "Hello world, I am here".getBytes();
163 byte[] bytecodes = getBytes(path);
H A DComHTTPSConnection.java131 private byte[] getBytes(String path) method in class:ComHTTPSConnection
134 return "Hello world, I am here".getBytes();
166 byte[] bytecodes = getBytes(path);
H A DJavaxHTTPSConnection.java129 private byte[] getBytes(String path) method in class:JavaxHTTPSConnection
132 return "Hello world, I am here".getBytes();
164 byte[] bytecodes = getBytes(path);
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAbstractPerfDataBuffer.java70 public byte[] getBytes() { method in class:AbstractPerfDataBuffer
71 return impl.getBytes();
H A DAbstractMonitoredVm.java183 public byte[] getBytes() { method in class:AbstractMonitoredVm
184 return pdb.getBytes();
H A DPerfDataBufferImpl.java105 public byte[] getBytes() { method in class:PerfDataBufferImpl
110 * is unused when the getBytes() interface is used. However, the
/openjdk7/jdk/test/sun/nio/cs/
H A DTestUTF_32.java51 byte[] testBytes = input.getBytes(charset);
90 private static byte[] getBytes(boolean doBOM, boolean isBig) method in class:TestUTF_32
119 bb = getBytes(false, true);
126 bb = getBytes(true, false);
128 bb = getBytes(false, true);
134 bb = getBytes(false, true);
141 bb = getBytes(false, false);
147 bb = getBytes(true, true);
154 bb = getBytes(true, false);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DDeprecated.java80 this(c.getNameIndex(), c.getLength(), c.getBytes(), c.getConstantPool());
144 public final byte[] getBytes() { return bytes; } method in class:Deprecated
H A DSynthetic.java84 this(c.getNameIndex(), c.getLength(), c.getBytes(), c.getConstantPool());
146 public final byte[] getBytes() { return bytes; } method in class:Synthetic
H A DUnknown.java104 this(c.getNameIndex(), c.getLength(), c.getBytes(), c.getConstantPool());
122 Constants.CONSTANT_Utf8)).getBytes();
171 public final byte[] getBytes() { return bytes; } method in class:Unknown
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialBlob.java44 * <code>Blob.getBytes</code>) or as a stream of uninterpreted bytes
136 buf = blob.getBytes(1, (int)len );
164 public byte[] getBytes(long pos, int length) throws SerialException { method in class:SerialBlob
278 return position(pattern.getBytes(1, (int)(pattern.length())), start);
298 * @see #getBytes
333 * @see #getBytes
414 buf = this.getBytes(1, (int)len);
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarInputStream.java94 byte bytes[] = getBytes(new BufferedInputStream(this));
106 private byte[] getBytes(InputStream is) method in class:JarInputStream
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipCoder.java76 byte[] getBytes(String s) { method in class:ZipCoder
108 return getBytes(s);
111 return utf8.getBytes(s);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpEngineId.java84 public byte[] getBytes() { method in class:SnmpEngineId
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DProxyAuthTest.java75 public byte[] getBytes() { method in class:ProxyAuthTest.TestServer
77 getBytes();
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipCoder.java81 byte[] getBytes(String s) { method in class:ZipCoder
105 return getBytes(s);
108 return utf8.getBytes(s);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DIPAddressName.java304 public byte[] getBytes() { method in class:IPAddressName
320 byte[] other = ((IPAddressName)obj).getBytes();
403 byte[] otherAddress = ((IPAddressName)inputName).getBytes();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCharacterEncoder.java210 private byte [] getBytes(ByteBuffer bb) { method in class:CharacterEncoder
255 byte [] buf = getBytes(aBuffer);
266 byte [] buf = getBytes(aBuffer);
339 byte [] buf = getBytes(aBuffer);
350 byte [] buf = getBytes(aBuffer);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassPath.java263 public byte[] getBytes(String name, String suffix) throws IOException { method in class:ClassPath
280 public byte[] getBytes(String name) throws IOException { method in class:ClassPath
281 return getBytes(name, ".class");
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DCommandAPDU.java558 public byte[] getBytes() { method in class:CommandAPDU

Completed in 63 milliseconds

1234