Searched refs:tbuf (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DGifDataContentHandler.java90 byte tbuf[] = new byte[size];
91 System.arraycopy(buf, 0, tbuf, 0, pos);
92 buf = tbuf;
H A DStringDataContentHandler.java108 char tbuf[] = new char[size];
109 System.arraycopy(buf, 0, tbuf, 0, pos);
110 buf = tbuf;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DStringDataContentHandler.java108 char tbuf[] = new char[size];
109 System.arraycopy(buf, 0, tbuf, 0, pos);
110 buf = tbuf;
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DManifest.java370 byte[] tbuf = this.buf;
387 while (tpos < maxpos && tbuf[tpos++] != '\n') ;
389 System.arraycopy(tbuf, pos, b, off, n);
393 if (tbuf[tpos-1] == '\n') {
/openjdk7/jdk/src/share/back/
H A Dlog_messages.c57 get_time_stamp(char *tbuf, size_t ltbuf) argument
69 (void)snprintf(tbuf, ltbuf, format, (int)(millisecs));
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DFilter.java222 byte tbuf[] = new byte[len];
238 tbuf[j++] = ch;
245 tbuf[j] = (byte)(ival<<4);
248 tbuf[j++] |= (byte)ival;
253 tbuf[j++] = ch;
260 System.arraycopy(tbuf, 0, answer, 0, j);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwrite.c463 struct tm *tbuf; local
467 tbuf = gmtime(&ttime);
468 png_convert_from_struct_tm(ptime, tbuf);

Completed in 63 milliseconds