Searched defs:readBytes (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/native/java/io/
H A Dio_util.c76 readBytes(JNIEnv *env, jobject this, jbyteArray bytes, function
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DInputLexer.java113 public void readBytes(byte[] buf, int off, int len) throws IOException { method in class:InputLexer
H A DDebuggerBase.java214 protected final byte[] readBytes(long address, long numBytes) method in class:DebuggerBase
243 byte[] data = readBytes(address, jbooleanSize);
255 byte[] data = readBytes(address, jbyteSize);
269 byte[] data = readBytes(address, jcharSize);
283 byte[] data = readBytes(address, jdoubleSize);
297 byte[] data = readBytes(address, jfloatSize);
311 byte[] data = readBytes(address, jintSize);
325 byte[] data = readBytes(address, jlongSize);
339 byte[] data = readBytes(address, jshortSize);
358 byte[] data = readBytes(addres
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSQLInputImpl.java402 public byte[] readBytes() throws SQLException { method in class:SQLInputImpl
/openjdk7/jdk/src/share/classes/java/io/
H A DFileInputStream.java226 private native int readBytes(byte b[], int off, int len) throws IOException; method in class:FileInputStream
243 bytesRead = readBytes(b, 0, b.length);
272 bytesRead = readBytes(b, off, len);
H A DRandomAccessFile.java346 private int readBytes(byte b[], int off, int len) throws IOException { method in class:RandomAccessFile
385 return readBytes(b, off, len);
408 return readBytes(b, 0, b.length);
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLInput.java34 * (<code>readLong</code>, <code>readBytes</code>, and so on)
183 byte[] readBytes() throws SQLException; method in interface:SQLInput
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DStreamDecoder.java268 private int readBytes() throws IOException { method in class:StreamDecoder
325 int n = readBytes();
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageInputStream.java174 void readBytes(IIOByteBuffer buf, int len) throws IOException; method in interface:ImageInputStream
H A DImageInputStreamImpl.java187 public void readBytes(IIOByteBuffer buf, int len) throws IOException { method in class:ImageInputStreamImpl
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DNTLM.java158 byte[] readBytes(int offset, int len) throws NTLMException { method in class:NTLM.Reader
/openjdk7/jdk/src/share/back/
H A DinStream.c66 readBytes(PacketInputStream *stream, void *dest, int size) function
88 return readBytes(stream, NULL, size);
95 (void)readBytes(stream, &flag, sizeof(flag));
107 (void)readBytes(stream, &val, sizeof(val));
114 (void)readBytes(stream, buf, length);
122 (void)readBytes(stream, &val, sizeof(val));
130 (void)readBytes(stream, &val, sizeof(val));
138 (void)readBytes(stream, &val, sizeof(val));
146 (void)readBytes(stream, &val, sizeof(val));
154 (void)readBytes(strea
[all...]
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DInstallSDE.java225 byte[] readBytes(int count) { method in class:InstallSDE
265 byte[] utf8 = readBytes(len);
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DClassReaderWriter.java153 byte[] readBytes(int count) { method in class:ClassReaderWriter
240 byte[] utf8 = readBytes(len);
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DGen.java201 a = readBytes(in);
223 protected byte[] readBytes(InputStream in) throws IOException { method in class:Gen
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DGifImageDecoder.java90 private int readBytes(byte buf[], int off, int len) { method in class:GifImageDecoder
137 if (readBytes(buf, 0, 6) != 0) {
169 if (readBytes(buf, 0, n) != 0) {
281 if (readBytes(buf, 0, 13) != 0) {
321 if (readBytes(global_colormap, 0, num_global_colors * 3) != 0) {
473 if (readBytes(block, 0, 10) != 0) {
512 if (readBytes(local_colormap, 1, num_local_colors * 3 - 1) != 0) {
518 if (readBytes(block, 9, 1) != 0) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFFileParser.java73 int bytesRead = readBytes(ident);
723 int bytesRead = readBytes(data);
861 int readBytes(byte[] b) throws ELFException { method in class:ELFFileParser.ELFFileImpl
/openjdk7/jdk/src/share/classes/java/net/
H A DURLConnection.java1627 if (readBytes(c, 2, is) < 0) {
1636 if (readBytes(c, 2, is) < 0) {
1659 if (readBytes(c, 4, is) < 0) {
1711 if (readBytes(c, 16, is) < 0) {
1745 static private int readBytes(int c[], int len, InputStream is) method in class:URLConnection
/openjdk7/jdk/src/share/classes/sun/font/
H A DTrueTypeFont.java479 byte[] readBytes(int offset, int length) { method in class:TrueTypeFont
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndex.java360 byte[] result = readBytes(entry);
374 int result = readBytes(entry, buffer);
378 private byte[] readBytes(Entry entry) throws IOException { method in class:ZipFileIndex
400 private int readBytes(Entry entry, byte[] buffer) throws IOException { method in class:ZipFileIndex
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java1199 readBytes(res);
3336 int numRead = readBytes(res);
3378 int numRead = readBytes(tmpName);
3503 int numRead = readBytes(tmpName);
3637 int numRead = readBytes(tmpName);
3737 int numBytesRead = readBytes(data);
3835 return readBytes(b);
3838 int readBytes(byte[] b) throws COFFException { method in class:COFFFileParser.COFFFileImpl

Completed in 307 milliseconds