Lines Matching defs:env
47 Java_java_io_FileOutputStream_initIDs(JNIEnv *env, jclass fdClass) {
48 fos_fd = (*env)->GetFieldID(env, fdClass, "fd", "Ljava/io/FileDescriptor;");
56 Java_java_io_FileOutputStream_open(JNIEnv *env, jobject this,
58 fileOpen(env, this, path, fos_fd,
63 Java_java_io_FileOutputStream_write(JNIEnv *env, jobject this, jint byte, jboolean append) {
64 writeSingle(env, this, byte, append, fos_fd);
68 Java_java_io_FileOutputStream_writeBytes(JNIEnv *env,
70 writeBytes(env, this, bytes, off, len, append, fos_fd);
74 Java_java_io_FileOutputStream_close0(JNIEnv *env, jobject this) {
75 fileClose(env, this, fos_fd);