Searched defs:vector (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/native/
H A Dlinux_close.cpp128 int NET_ReadV(int s, const struct iovec * vector, int count) { argument
129 BLOCKING_IO_RETURN_INT( s, readv(s, vector, count) );
143 int NET_WriteV(int s, const struct iovec * vector, int count) { argument
144 BLOCKING_IO_RETURN_INT( s, writev(s, vector, count) );
/libcore/luni/src/main/java/android/system/
H A DOs.java277 public static void mincore(long address, long byteCount, byte[] vector) throws ErrnoException { Libcore.os.mincore(address, byteCount, vector); } argument
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java111 public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException { os.mincore(address, byteCount, vector); } argument
H A DOs.java103 public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException; argument
H A DPosix.java105 public native void mincore(long address, long byteCount, byte[] vector) throws ErrnoException; argument

Completed in 5706 milliseconds