Home
last modified time | relevance | path

Searched defs:address (Results 1 – 25 of 109) sorted by relevance

12345

/libcore/ojluni/src/main/java/sun/nio/ch/
DDatagramDispatcher.java40 int read(FileDescriptor fd, long address, int len) throws IOException { in read()
45 long readv(FileDescriptor fd, long address, int len) throws IOException { in readv()
50 int write(FileDescriptor fd, long address, int len) throws IOException { in write()
55 long writev(FileDescriptor fd, long address, int len) throws IOException { in writev()
68 static native int read0(FileDescriptor fd, long address, int len) in read0()
71 static native long readv0(FileDescriptor fd, long address, int len) in readv0()
74 static native int write0(FileDescriptor fd, long address, int len) in write0()
77 static native long writev0(FileDescriptor fd, long address, int len) in writev0()
DNativeDispatcher.java38 abstract int read(FileDescriptor fd, long address, int len) in read()
49 int pread(FileDescriptor fd, long address, int len, long position) in pread()
55 abstract long readv(FileDescriptor fd, long address, int len) in readv()
58 abstract int write(FileDescriptor fd, long address, int len) in write()
61 int pwrite(FileDescriptor fd, long address, int len, long position) in pwrite()
67 abstract long writev(FileDescriptor fd, long address, int len) in writev()
DSocketDispatcher.java41 int read(FileDescriptor fd, long address, int len) throws IOException { in read()
46 long readv(FileDescriptor fd, long address, int len) throws IOException { in readv()
51 int write(FileDescriptor fd, long address, int len) throws IOException { in write()
56 long writev(FileDescriptor fd, long address, int len) throws IOException { in writev()
DFileDispatcherImpl.java43 int read(FileDescriptor fd, long address, int len) throws IOException { in read()
48 int pread(FileDescriptor fd, long address, int len, long position) in pread()
55 long readv(FileDescriptor fd, long address, int len) throws IOException { in readv()
60 int write(FileDescriptor fd, long address, int len) throws IOException { in write()
65 int pwrite(FileDescriptor fd, long address, int len, long position) in pwrite()
72 long writev(FileDescriptor fd, long address, int len) in writev()
143 static native int read0(FileDescriptor fd, long address, int len) in read0()
146 static native int pread0(FileDescriptor fd, long address, int len, in pread0()
149 static native long readv0(FileDescriptor fd, long address, int len) in readv0()
152 static native int write0(FileDescriptor fd, long address, int len) in write0()
[all …]
DNativeObject.java52 private final long address; field in NativeObject
57 NativeObject(long address) { in NativeObject()
66 NativeObject(long address, long offset) { in NativeObject()
90 long address() { in address() method in NativeObject
DDirectBuffer.java33 public long address(); in address() method
/libcore/ojluni/src/main/java/java/net/
DInet4Address.java119 int address = addr[3] & 0xFF; in Inet4Address() local
127 Inet4Address(String hostName, int address) { in Inet4Address()
205 int address = holder().getAddress(); in isLinkLocalAddress() local
222 int address = holder().getAddress(); in isSiteLocalAddress() local
269 int address = holder().getAddress(); in isMCLinkLocal() local
285 int address = holder().getAddress(); in isMCSiteLocal() local
301 int address = holder().getAddress(); in isMCOrgLocal() local
315 int address = holder().getAddress(); in getAddress() local
DDatagramPacket.java62 InetAddress address; field in DatagramPacket
115 InetAddress address, int port) { in DatagramPacket()
143 public DatagramPacket(byte buf[], int offset, int length, SocketAddress address) { in DatagramPacket()
167 InetAddress address, int port) { in DatagramPacket()
184 public DatagramPacket(byte buf[], int length, SocketAddress address) { in DatagramPacket()
328 public synchronized void setSocketAddress(SocketAddress address) { in setSocketAddress()
DAbstractPlainSocketImpl.java122 InetAddress address = InetAddress.getByName(host); in connect() local
146 protected void connect(InetAddress address, int port) throws IOException { in connect()
170 protected void connect(SocketAddress address, int timeout) in connect()
196 private void connectToAddress(InetAddress address, int port, int timeout) throws IOException { in connectToAddress()
346 synchronized void doConnect(InetAddress address, int port, int timeout) throws IOException { in doConnect()
385 protected synchronized void bind(InetAddress address, int lport) in bind()
460 void setAddress(InetAddress address) { in setAddress()
725 abstract void socketConnect(InetAddress address, int port, int timeout) in socketConnect()
727 abstract void socketBind(InetAddress address, int port) in socketBind()
DInterfaceAddress.java38 private InetAddress address = null; field in InterfaceAddress
49 InterfaceAddress(InetAddress address, Inet4Address broadcast, InetAddress netmask) { in InterfaceAddress()
DInetAddress.java204 InetAddressHolder(String hostName, int address, int family) { in InetAddressHolder()
232 int address; field in InetAddress.InetAddressHolder
881 int address= gf.get("address", 0); in readObject() local
922 public static boolean isNumeric(String address) { in isNumeric()
927 static InetAddress parseNumericAddressNoThrow(String address) { in parseNumericAddressNoThrow()
942 static InetAddress disallowDeprecatedFormats(String address, InetAddress inetAddress) { in disallowDeprecatedFormats()
/libcore/luni/src/main/java/libcore/io/
DMemory.java155 public static native byte peekByte(long address); in peekByte()
157 public static int peekInt(long address, boolean swap) { in peekInt()
165 private static native int peekIntNative(long address); in peekIntNative()
167 public static long peekLong(long address, boolean swap) { in peekLong()
175 private static native long peekLongNative(long address); in peekLongNative()
177 public static short peekShort(long address, boolean swap) { in peekShort()
185 private static native short peekShortNative(long address); in peekShortNative()
187 public static native void peekByteArray(long address, byte[] dst, int dstOffset, int byteCount); in peekByteArray()
188 …public static native void peekCharArray(long address, char[] dst, int dstOffset, int charCount, bo… in peekCharArray()
189 …public static native void peekDoubleArray(long address, double[] dst, int dstOffset, int doubleCou… in peekDoubleArray()
[all …]
DMemoryMappedFile.java37 private final long address; field in MemoryMappedFile
41 public MemoryMappedFile(long address, long size) { in MemoryMappedFile()
57 long address = Libcore.os.mmap(0L, size, PROT_READ, MAP_SHARED, fd, 0); in mmapRO() local
/libcore/ojluni/src/main/java/java/util/zip/
DZStreamRef.java34 private volatile long address; field in ZStreamRef
35 ZStreamRef (long address) { in ZStreamRef()
39 long address() { in address() method in ZStreamRef
/libcore/ojluni/src/main/java/sun/nio/fs/
DNativeBuffer.java38 private final long address; field in NativeBuffer
47 private final long address; field in NativeBuffer.Deallocator
48 Deallocator(long address) { in Deallocator()
66 long address() { in address() method in NativeBuffer
DLinuxUserDefinedFileAttributeView.java65 private List<String> asList(long address, int size) { in asList()
167 long address; in read() local
225 long address; in write() local
326 long address = buffer.address(); in copyExtendedAttributes() local
364 long address = buffer.address(); in copyExtendedAttribute() local
/libcore/ojluni/src/main/java/sun/net/
DNetHooks.java86 InetAddress address, in beforeTcpBind()
98 InetAddress address, in beforeTcpConnect()
/libcore/ojluni/src/main/java/sun/misc/
DUnsafe.java394 public native void freeMemory(long address); in freeMemory()
397 public native void setMemory(long address, long bytes, byte value); in setMemory()
400 public native byte getByte(long address); in getByte()
403 public native void putByte(long address, byte x); in putByte()
406 public native short getShort(long address); in getShort()
409 public native void putShort(long address, short x); in putShort()
412 public native char getChar(long address); in getChar()
415 public native void putChar(long address, char x); in putChar()
418 public native int getInt(long address); in getInt()
421 public native void putInt(long address, int x); in putInt()
[all …]
/libcore/ojluni/src/main/native/
DDatagramDispatcher.c52 jobject fdo, jlong address, jint len) in Java_sun_nio_ch_DatagramDispatcher_read0()
69 jobject fdo, jlong address, jint len) in Java_sun_nio_ch_DatagramDispatcher_readv0()
99 jobject fdo, jlong address, jint len) in Java_sun_nio_ch_DatagramDispatcher_write0()
113 jobject fdo, jlong address, jint len) in Java_sun_nio_ch_DatagramDispatcher_writev0()
DMappedByteBuffer.c40 Java_java_nio_MappedByteBuffer_isLoaded0(JNIEnv *env, jobject obj, jlong address, in Java_java_nio_MappedByteBuffer_isLoaded0()
77 Java_java_nio_MappedByteBuffer_load0(JNIEnv *env, jobject obj, jlong address, in Java_java_nio_MappedByteBuffer_load0()
90 jlong address, jlong len) in Java_java_nio_MappedByteBuffer_force0()
/libcore/luni/src/test/java/libcore/java/nio/channels/
DServerSocketChannelTest.java100 InetSocketAddress address = in test_bind_nullBindsToAll() local
131 InetSocketAddress address = in test_bind_loopback() local
194 private static boolean canConnect(InetSocketAddress address) { in canConnect()
/libcore/ojluni/src/main/java/javax/net/
DSocketFactory.java252 createSocket(InetAddress address, int port, in createSocket()
282 public Socket createSocket(InetAddress address, int port) in createSocket()
295 public Socket createSocket(InetAddress address, int port, in createSocket()
/libcore/ojluni/src/main/java/java/nio/
DMappedByteBuffer.java212 private native boolean isLoaded0(long address, long length, int pageCount); in isLoaded0()
214 private native void load0(long address, long length); in load0()
216 private native void force0(FileDescriptor fd, long address, long length); in force0()
/libcore/luni/src/main/java/java/nio/charset/
DCharsetEncoderICU.java69 long address = 0; in newInstance() local
86 private static byte[] makeReplacement(String icuCanonicalName, long address) { in makeReplacement()
96 …U(Charset cs, float averageBytesPerChar, float maxBytesPerChar, byte[] replacement, long address) { in CharsetEncoderICU()
/libcore/luni/src/main/native/
Dlibcore_icu_NativeConverter.cpp61 static UConverter* toUConverter(jlong address) { in toUConverter()
199 static void NativeConverter_closeConverter(JNIEnv*, jclass, jlong address) { in NativeConverter_closeConverter()
211 static jint NativeConverter_encode(JNIEnv* env, jclass, jlong address, in NativeConverter_encode()
267 static jint NativeConverter_decode(JNIEnv* env, jclass, jlong address, in NativeConverter_decode()
323 static void NativeConverter_resetByteToChar(JNIEnv*, jclass, jlong address) { in NativeConverter_resetByteToChar()
330 static void NativeConverter_resetCharToByte(JNIEnv*, jclass, jlong address) { in NativeConverter_resetCharToByte()
337 static jint NativeConverter_getMaxBytesPerChar(JNIEnv*, jclass, jlong address) { in NativeConverter_getMaxBytesPerChar()
342 static jint NativeConverter_getMinBytesPerChar(JNIEnv*, jclass, jlong address) { in NativeConverter_getMinBytesPerChar()
347 static jfloat NativeConverter_getAveBytesPerChar(JNIEnv*, jclass, jlong address) { in NativeConverter_getAveBytesPerChar()
416 static void NativeConverter_setCallbackEncode(JNIEnv* env, jclass, jlong address, in NativeConverter_setCallbackEncode()
[all …]

12345