| /libcore/luni/src/main/native/ |
| D | libcore_io_Memory.cpp | 157 static jbyte Memory_peekByte(JNIEnv*, jclass, jlong srcAddress) { in Memory_peekByte() argument 158 return *cast<const jbyte*>(srcAddress); in Memory_peekByte() 161 static void Memory_peekByteArray(JNIEnv* env, jclass, jlong srcAddress, jbyteArray dst, jint dstOff… in Memory_peekByteArray() argument 162 env->SetByteArrayRegion(dst, dstOffset, byteCount, cast<const jbyte*>(srcAddress)); in Memory_peekByteArray() 178 const SWAP_TYPE* src = cast<const SWAP_TYPE*>(srcAddress); \ 181 const SCALAR_TYPE* src = cast<const SCALAR_TYPE*>(srcAddress); \ 186 static void Memory_peekCharArray(JNIEnv* env, jclass, jlong srcAddress, jcharArray dst, jint dstOff… in Memory_peekCharArray() argument 190 static void Memory_peekDoubleArray(JNIEnv* env, jclass, jlong srcAddress, jdoubleArray dst, jint ds… in Memory_peekDoubleArray() argument 194 static void Memory_peekFloatArray(JNIEnv* env, jclass, jlong srcAddress, jfloatArray dst, jint dstO… in Memory_peekFloatArray() argument 198 static void Memory_peekIntArray(JNIEnv* env, jclass, jlong srcAddress, jintArray dst, jint dstOffse… in Memory_peekIntArray() argument [all …]
|
| /libcore/luni/src/main/java/libcore/io/ |
| D | IoBridge.java | 552 … InetSocketAddress srcAddress = (packet != null && !isConnected) ? new InetSocketAddress() : null; in recvfrom() local 553 result = Libcore.os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress); in recvfrom() 554 result = postRecvfrom(isRead, packet, isConnected, srcAddress, result); in recvfrom() 564 … InetSocketAddress srcAddress = (packet != null && !isConnected) ? new InetSocketAddress() : null; in recvfrom() local 565 result = Libcore.os.recvfrom(fd, buffer, flags, srcAddress); in recvfrom() 566 result = postRecvfrom(isRead, packet, isConnected, srcAddress, result); in recvfrom() 573 … isRead, DatagramPacket packet, boolean isConnected, InetSocketAddress srcAddress, int byteCount) { in postRecvfrom() argument 580 packet.setAddress(srcAddress.getAddress()); in postRecvfrom() 581 packet.setPort(srcAddress.getPort()); in postRecvfrom()
|
| D | Posix.java | 152 …rom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoExc… in recvfrom() argument 154 … return recvfromBytes(fd, buffer, buffer.position(), buffer.remaining(), flags, srcAddress); in recvfrom() 156 …r), NioUtils.unsafeArrayOffset(buffer) + buffer.position(), buffer.remaining(), flags, srcAddress); in recvfrom() 159 …e[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoExc… in recvfrom() argument 161 return recvfromBytes(fd, bytes, byteOffset, byteCount, flags, srcAddress); in recvfrom() 163 …ct buffer, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoExc… in recvfromBytes() argument
|
| D | BlockGuardOs.java | 243 …rom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoExc… in recvfrom() argument 245 return os.recvfrom(fd, buffer, flags, srcAddress); in recvfrom() 248 …e[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoExc… in recvfrom() argument 250 return os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress); in recvfrom()
|
| D | ForwardingOs.java | 128 … flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return os.recvfrom(… in recvfrom() argument 129 …tSocketAddress srcAddress) throws ErrnoException, SocketException { return os.recvfrom(fd, bytes, … in recvfrom() argument
|
| D | Os.java | 121 …rom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoExc… in recvfrom() argument 122 …e[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoExc… in recvfrom() argument
|
| /libcore/luni/src/main/java/android/system/ |
| D | Os.java | 379 …gs, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return Libcore.os.recvf… in recvfrom() argument 384 …ketAddress srcAddress) throws ErrnoException, SocketException { return Libcore.os.recvfrom(fd, byt… in recvfrom() argument
|