Searched refs:buf (Results 751 - 775 of 1249) sorted by relevance

<<31323334353637383940>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DAbstractExtensibleImpl.java132 StringBuilder buf = new StringBuilder("Unknown WSDL extensibility elements:");
134 buf.append('\n').append(extn.toString());
135 throw new WebServiceException(buf.toString());
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DFileServerHandler.java130 byte[] buf = new byte [16 * 1024];
132 while ((len=fis.read (buf)) != -1) {
133 os.write (buf, 0, len);
H A DSelCacheTest.java105 byte [] buf = new byte [4096];
115 while ((c=is.read(buf)) != -1) {
117 fout.write (buf, 0, c);
H A DTest1.java114 byte [] buf = new byte [4096];
124 while ((c=is.read(buf)) != -1) {
126 fout.write (buf, 0, c);
H A DTest12.java141 byte [] buf = new byte [4096];
151 while ((c=is.read(buf)) != -1) {
153 fout.write (buf, 0, c);
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DStreamsSurviveDestroy.java64 byte[] buf = new byte[4242];
68 int n = in.read(buf);
73 out.write(buf, 0, n);
/openjdk7/jdk/test/java/lang/management/MemoryMXBean/
H A DMemoryUtil.java37 StringBuffer buf = new StringBuffer(name + " = " + value);
39 buf.append(" (" + (value >> 10) + "K)");
41 return buf.toString();
/openjdk7/jdk/test/java/net/URL/
H A DPerConnectionProxy.java187 byte[] buf = new byte[BUFFER_SIZE];
192 while ((bytesRead = input.read(buf)) >= 0) {
193 output.write(buf, 0, bytesRead);
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DSRTest.java163 byte[] buf = new byte[256];
164 DatagramPacket dp = new DatagramPacket(buf, buf.length);
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DChangingInterests.java62 ByteBuffer buf = ByteBuffer.allocate(100);
64 while ((n = sc.read(buf)) > 0) {
65 buf.rewind();
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/
H A DProxyTunnelServer.java158 byte[] buf = new byte[BUFFER_SIZE];
163 while ((bytesRead = input.read(buf)) >= 0) {
171 output.write(buf, 0, bytesRead);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DProxyTunnelServer.java217 byte[] buf = new byte[BUFFER_SIZE];
222 while ((bytesRead = input.read(buf)) >= 0) {
223 output.write(buf, 0, bytesRead);
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DProxyTunnelServer.java219 byte[] buf = new byte[BUFFER_SIZE];
224 while ((bytesRead = input.read(buf)) >= 0) {
225 output.write(buf, 0, bytesRead);
/openjdk7/jdk/test/tools/pack200/
H A DPackageVersionTest.java142 byte[] buf = baos.toByteArray();
144 int minor = buf[4] & 0x000000ff;
145 int major = buf[5] & 0x000000ff;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DLinkFactoryImpl.java166 StringBuffer buf = new StringBuffer(m_writer.relativePath);
167 buf.append(DirectoryManager.getPathToPackage(
170 return buf.toString();
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwio.c121 png_byte buf[NEAR_BUF_SIZE]; local
129 png_memcpy(buf, data, written); /* Copy far buffer to near buffer */
130 err = fwrite(buf, 1, written, io_ptr);
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS9Attribute.java792 StringBuffer buf = new StringBuffer(100);
794 buf.append("[");
797 buf.append(oid.toString());
799 buf.append(OID_NAME_TABLE.get(PKCS9_OIDS[index]));
801 buf.append(": ");
806 buf.append(hexDump.encodeBuffer((byte[]) value));
808 buf.append(value.toString());
810 buf.append("]");
811 return buf.toString();
820 buf
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/attach/
H A DHotSpotVirtualMachine.java234 byte buf[] = new byte[1];
236 n = in.read(buf, 0, 1);
238 char c = (char)buf[0];
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DMain.java190 byte[] buf = new byte[256];
192 while ((len = confstr.read(buf)) != -1)
193 repstr.write(buf, 0, len);
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DLargeZipFile.java130 byte buf[] = new byte[4096];
132 while ((len = is.read(buf)) >= 0) {
133 baos.write(buf, 0, len);
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DByteBuffersNull.java57 ByteBuffer bb = inBuffers[i].buf;
118 buf = b;
122 public ByteBuffer buf; field in class:ByteBuffersNull.BufferDescr
/openjdk7/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DOutputAnalyzer.java55 * @param buf
58 public OutputAnalyzer(String buf) { argument
59 this(buf, buf);
/openjdk7/jdk/test/sun/awt/image/ImageRepresentation/
H A DLUTCompareTest.java114 BufferedImage buf = new BufferedImage(w, h,
116 Graphics2D g = buf.createGraphics();
124 int rgb = buf.getRGB(w/2, h/2);
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DProxyTunnelServer.java219 byte[] buf = new byte[BUFFER_SIZE];
224 while ((bytesRead = input.read(buf)) >= 0) {
225 output.write(buf, 0, bytesRead);
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMimeLauncher.java118 byte buf[] = new byte[2048];
121 while ((i = is.read(buf)) >= 0) {
122 os.write(buf, 0, i);

Completed in 115 milliseconds

<<31323334353637383940>>