Searched refs:buf (Results 651 - 675 of 1249) sorted by relevance

<<21222324252627282930>>

/openjdk7/langtools/test/tools/javac/varargs/7043922/
H A DT7043922.java181 StringBuilder buf = new StringBuilder();
183 buf.append(s);
184 buf.append("\n");
186 return buf.toString();
/openjdk7/jdk/src/share/classes/sun/font/
H A DDecoration.java430 StringBuffer buf = new StringBuffer();
431 buf.append(super.toString());
432 buf.append("[");
433 if (fgPaint != null) buf.append("fgPaint: " + fgPaint);
434 if (bgPaint != null) buf.append(" bgPaint: " + bgPaint);
435 if (swapColors) buf.append(" swapColors: true");
436 if (strikethrough) buf.append(" strikethrough: true");
437 if (stdUnderline != null) buf.append(" stdUnderline: " + stdUnderline);
438 if (imUnderline != null) buf.append(" imUnderline: " + imUnderline);
439 buf
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsName.java168 StringBuffer buf = new StringBuffer();
172 if (buf.length() > 0 || label.length() == 0) {
173 buf.append('.');
175 escape(buf, label);
177 domain = buf.toString();
531 * Append a label to buf, escaping as needed.
533 private static void escape(StringBuffer buf, String label) { argument
537 buf.append('\\');
539 buf.append(c);
573 StringBuffer buf
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DSearchFilter.java467 private static void hexDigit(StringBuffer buf, byte x) { argument
476 buf.append(c);
482 buf.append(c);
520 StringBuffer buf = new StringBuffer(len);
525 buf.append("\\2a");
528 buf.append("\\28");
531 buf.append("\\29");
534 buf.append("\\5c");
537 buf.append("\\00");
540 buf
[all...]
/openjdk7/hotspot/src/share/tools/hsdis/
H A Dhsdis.c86 char* buf, size_t bufsize);
106 char buf[128]; local
140 buf, sizeof(buf));
157 char* buf, size_t bufsize) {
177 strcpy(buf, close);
178 char* p = buf;
182 return buf;
261 } buf; local
264 &buf
155 format_insn_close(const char* close, disassemble_info* dinfo, char* buf, size_t bufsize) argument
[all...]
/openjdk7/jdk/src/share/back/
H A Dtransport.c104 char buf[MAXPATHLEN*2+100]; local
114 (jbyte*)libdir, len, buf, (int)sizeof(buf)); local
115 plibdir = buf;
122 handle = dbgsysLoadLibrary(libname, buf, sizeof(buf));
372 char *buf; local
391 buf = jvmtiAllocate(len*3+3);
393 (jbyte*)commandLine, len, buf, len*3+3); local
396 rc = dbgsysExec(buf);
[all...]
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DReceive.java247 ByteBuffer buf = ByteBuffer.allocateDirect(Util.SMALL_BUFFER);
248 buf.put(Util.SMALL_MESSAGE.getBytes("ISO-8859-1"));
249 buf.flip();
251 debug("sending small message: " + buf);
252 sc.send(buf, info);
255 buf = ByteBuffer.allocateDirect(Util.LARGE_BUFFER);
256 buf.put(Util.LARGE_MESSAGE.getBytes("ISO-8859-1"));
257 buf.flip();
259 debug("sending large message: " + buf);
260 sc.send(buf, inf
[all...]
/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.h69 uintptr_t addr, char *buf, size_t size);
72 uintptr_t addr, const char *buf , size_t size);
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.h69 uintptr_t addr, char *buf, size_t size);
72 uintptr_t addr, const char *buf , size_t size);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethod.java350 final StringBuffer buf = new StringBuffer();
351 buf.append(getMethodHolder().getName().asString());
352 buf.append(".");
353 buf.append(getName().asString());
354 buf.append("(");
355 new SignatureConverter(getSignature(), buf).iterateParameters();
356 buf.append(")");
357 return buf.toString().replace('/', '.');
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DAdler32.java129 public void update(Adler32 adler32, ByteBuffer buf) {
130 adler32.update(buf);
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIServerImpl.java490 final StringBuilder buf = new StringBuilder();
491 buf.append(protocol).append(":");
493 buf.append("//").append(clientHost);
494 buf.append(" ");
501 buf.append(sep).append(name);
505 buf.append(" ").append(connectionIdNumber);
507 logger.trace("newConnectionId","connectionId="+buf);
508 return buf.toString();
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DSaslOutputStream.java124 private static void intToNetworkByteOrder(int num, byte[] buf, int start, argument
131 buf[start+i] = (byte)(num & 0xff);
/openjdk7/hotspot/src/os/bsd/vm/
H A Djvm_bsd.cpp184 extern bool signal_name(int signo, char* buf, size_t len) { argument
187 jio_snprintf(buf, len, "SIG%s", siglabels[i].name);
/openjdk7/hotspot/src/os/linux/vm/
H A Djvm_linux.cpp191 extern bool signal_name(int signo, char* buf, size_t len) { argument
194 jio_snprintf(buf, len, "SIG%s", siglabels[i].name);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java92 * @param buf data to be compressed to output stream
95 public void compress(byte[] buf, int offset, int length) argument
104 c = buf[idx];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEPart.java179 * @param buf content data for the part
181 void addBody(ByteBuffer buf) { argument
182 dataHead.addBody(buf);
/openjdk7/jdk/src/solaris/native/sun/tools/attach/
H A DLinuxVirtualMachine.c410 unsigned char buf[128]; local
411 size_t len = sizeof(buf);
419 RESTARTABLE(read(fd, buf+off, len), n);
426 (*env)->SetByteArrayRegion(env, ba, off, (jint)n, (jbyte *)(buf+off));
442 unsigned char buf[128]; local
443 size_t len = sizeof(buf);
449 (*env)->GetByteArrayRegion(env, ba, off, len, (jbyte *)buf);
451 RESTARTABLE(write(fd, buf, len), n);
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DUnbounded.java85 ByteBuffer buf = ByteBuffer.allocateDirect(100);
86 channels[i].read( buf, channels[i],
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DPosition.java73 byte[] buf = new byte[generator.nextInt(100)];
74 fc.write(ByteBuffer.wrap(buf));
/openjdk7/jdk/test/sun/net/www/http/KeepAliveCache/
H A DKeepAliveTimerThread.java63 byte[] buf = new byte [128];
67 while (is.read(buf) > 0) ;
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DBufferedRenderPipe.c43 jobject rq, jlong buf,
79 bbuf = (unsigned char *)jlong_to_ptr(buf);
41 Java_sun_java2d_pipe_BufferedRenderPipe_fillSpans(JNIEnv *env, jobject pipe, jobject rq, jlong buf, jint bpos, jint limit, jobject si, jlong pIterator, jint transx, jint transy) argument
/openjdk7/jdk/src/share/transport/shmem/
H A DsysShmem.h54 int sysGetLastError(char *buf, int size);
/openjdk7/langtools/test/tools/javac/varargs/6199075/
H A DT6199075.java108 StringBuilder buf = new StringBuilder();
111 buf.append(sep);
112 buf.append(type.valueString);
115 return buf.toString();
281 StringBuilder buf = new StringBuilder();
283 buf.append(s);
284 buf.append("\n");
286 return buf.toString();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DHashtable.java289 StringBuffer buf = new StringBuffer();
292 buf.append("{");
297 buf.append(s1).append('=').append(s2);
298 if (i < max) buf.append(", ");
300 buf.append("}");
301 return buf.toString();

Completed in 99 milliseconds

<<21222324252627282930>>