Searched defs:prot (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/native/
H A DFileChannelImpl.c80 jint prot, jlong off, jlong len)
88 if (prot == sun_nio_ch_FileChannelImpl_MAP_RO) {
91 } else if (prot == sun_nio_ch_FileChannelImpl_MAP_RW) {
94 } else if (prot == sun_nio_ch_FileChannelImpl_MAP_PV) {
79 FileChannelImpl_map0(JNIEnv *env, jobject this, jint prot, jlong off, jlong len) argument
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileChannelImpl.java1229 private native long map0(int prot, long position, long length) argument
/libcore/luni/src/main/java/android/system/
H A DOs.java338 public static long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException { return Libcore.os.mmap(address, byteCount, prot, flags, fd, offset); } argument
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java133 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException { return os.mmap(address, byteCount, prot, flags, fd, offset); } argument
H A DLinux.java124 public native long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException; argument
H A DOs.java119 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException; argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp1806 static jlong Linux_mmap(JNIEnv* env, jobject, jlong address, jlong byteCount, jint prot, jint flags, jobject javaFd, jlong offset) { argument
1809 void* ptr = mmap64(suggestedPtr, byteCount, prot, flags, fd, offset);

Completed in 960 milliseconds