Searched refs:prot (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/nio/
H A DMemoryBlock.java109 int prot;
112 prot = PROT_READ|PROT_WRITE;
115 prot = PROT_READ;
118 prot = PROT_READ|PROT_WRITE;
122 long address = Libcore.os.mmap(0L, size, prot, flags, fd, offset);
/libcore/luni/src/main/java/libcore/io/
H A DOs.java107 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException; argument
H A DForwardingOs.java115 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 DPosix.java109 public native long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java291 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/native/
H A Dlibcore_io_Posix.cpp1211 static jlong Posix_mmap(JNIEnv* env, jobject, jlong address, jlong byteCount, jint prot, jint flags, jobject javaFd, jlong offset) { argument
1214 void* ptr = mmap(suggestedPtr, byteCount, prot, flags, fd, offset);

Completed in 310 milliseconds