Searched refs:mincore (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/native/
H A DPortability.h56 // For mincore(3).
60 static inline int mincore(void* addr, size_t length, unsigned char* vec) { function
61 return mincore(addr, length, reinterpret_cast<char*>(vec));
H A Dlibcore_io_Posix.cpp1187 throwIfMinusOne(env, "mincore", TEMP_FAILURE_RETRY(mincore(ptr, byteCount, vec)));
1917 NATIVE_METHOD(Posix, mincore, "(JJ[B)V"),
/libcore/luni/src/main/java/java/nio/
H A DMappedByteBuffer.java70 Libcore.os.mincore(address, size, vector);
/libcore/luni/src/main/java/libcore/io/
H A DOs.java103 public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException; method in interface:Os
H A DForwardingOs.java111 public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException { os.mincore(address, byteCount, vector); } method in class:ForwardingOs
H A DPosix.java105 public native void mincore(long address, long byteCount, byte[] vector) throws ErrnoException; method in class:Posix
/libcore/luni/src/main/java/android/system/
H A DOs.java269 * See <a href="http://man7.org/linux/man-pages/man2/mincore.2.html">mincore(2)</a>.
271 public static void mincore(long address, long byteCount, byte[] vector) throws ErrnoException { Libcore.os.mincore(address, byteCount, vector); } method in class:Os

Completed in 126 milliseconds