Searched refs:raf_fd (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/native/java/io/
H A DRandomAccessFile_md.c35 extern jfieldID raf_fd; /* id for jobject 'fd' in java.io.RandomAccessFile */
43 handleClose(env, this, raf_fd);
/openjdk7/jdk/src/solaris/native/java/io/
H A DRandomAccessFile_md.c39 extern jfieldID raf_fd; /* id for jobject 'fd' in java.io.RandomAccessFile */
47 fileClose(env, this, raf_fd);
/openjdk7/jdk/src/share/native/java/io/
H A DRandomAccessFile.c41 jfieldID raf_fd; /* id for jobject 'fd' in java.io.RandomAccessFile */ variable
45 raf_fd = (*env)->GetFieldID(env, fdClass, "fd", "Ljava/io/FileDescriptor;");
63 fileOpen(env, this, path, raf_fd, flags);
68 return readSingle(env, this, raf_fd);
74 return readBytes(env, this, bytes, off, len, raf_fd);
79 writeSingle(env, this, byte, JNI_FALSE, raf_fd);
85 writeBytes(env, this, bytes, off, len, JNI_FALSE, raf_fd);
93 fd = GET_FD(this, raf_fd);
110 fd = GET_FD(this, raf_fd);
131 fd = GET_FD(this, raf_fd);
[all...]

Completed in 90 milliseconds