| /libcore/ojluni/src/main/java/sun/nio/ch/ | 
| D | DatagramDispatcher.java | 45     int read(FileDescriptor fd, long address, int len) throws IOException {  in read()51     long readv(FileDescriptor fd, long address, int len) throws IOException {  in readv()
 57     int write(FileDescriptor fd, long address, int len) throws IOException {  in write()
 63     long writev(FileDescriptor fd, long address, int len) throws IOException {  in writev()
 77     static native int read0(FileDescriptor fd, long address, int len)  in read0()
 80     static native long readv0(FileDescriptor fd, long address, int len)  in readv0()
 83     static native int write0(FileDescriptor fd, long address, int len)  in write0()
 86     static native long writev0(FileDescriptor fd, long address, int len)  in writev0()
 
 | 
| D | NativeDispatcher.java | 38     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()
 
 | 
| D | SocketDispatcher.java | 40     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()
 52     int write(FileDescriptor fd, long address, int len) throws IOException {  in write()
 58     long writev(FileDescriptor fd, long address, int len) throws IOException {  in writev()
 
 | 
| D | FileDispatcherImpl.java | 50     int read(FileDescriptor fd, long address, int len) throws IOException {  in read()56     int pread(FileDescriptor fd, long address, int len, long position)  in pread()
 64     long readv(FileDescriptor fd, long address, int len) throws IOException {  in readv()
 70     int write(FileDescriptor fd, long address, int len) throws IOException {  in write()
 76     int pwrite(FileDescriptor fd, long address, int len, long position)  in pwrite()
 84     long writev(FileDescriptor fd, long address, int len)  in writev()
 148     static native int read0(FileDescriptor fd, long address, int len)  in read0()
 151     static native int pread0(FileDescriptor fd, long address, int len,  in pread0()
 154     static native long readv0(FileDescriptor fd, long address, int len)  in readv0()
 157     static native int write0(FileDescriptor fd, long address, int len)  in write0()
 [all …]
 
 | 
| D | NativeObject.java | 52     private final long address;  field in NativeObject57     NativeObject(long address) {  in NativeObject()
 66     NativeObject(long address, long offset) {  in NativeObject()
 90     long address() {  in address()  method in NativeObject
 
 | 
| /libcore/ojluni/src/main/java/java/net/ | 
| D | Inet4Address.java | 144                 int address  = addr[3] & 0xFF;  in Inet4Address()  local153     Inet4Address(String hostName, int address) {  in Inet4Address()
 228         int address = holder().getAddress();  in isLinkLocalAddress()  local
 244         int address = holder().getAddress();  in isSiteLocalAddress()  local
 288         int address = holder().getAddress();  in isMCLinkLocal()  local
 303         int address = holder().getAddress();  in isMCSiteLocal()  local
 318         int address = holder().getAddress();  in isMCOrgLocal()  local
 332         int address = holder().getAddress();  in getAddress()  local
 
 | 
| D | DatagramPacket.java | 71     InetAddress address;  field in DatagramPacket124                           InetAddress address, int port) {  in DatagramPacket()
 152     public DatagramPacket(byte buf[], int offset, int length, SocketAddress address) {  in DatagramPacket()
 176                           InetAddress address, int port) {  in DatagramPacket()
 193     public DatagramPacket(byte buf[], int length, SocketAddress address) {  in DatagramPacket()
 337     public synchronized void setSocketAddress(SocketAddress address) {  in setSocketAddress()
 
 | 
| D | AbstractPlainSocketImpl.java | 152             InetAddress address = InetAddress.getByName(host);  in connect()  local176     protected void connect(InetAddress address, int port) throws IOException {  in connect()
 200     protected void connect(SocketAddress address, int timeout)  in connect()
 226     private void connectToAddress(InetAddress address, int port, int timeout) throws IOException {  in connectToAddress()
 379     synchronized void doConnect(InetAddress address, int port, int timeout) throws IOException {  in doConnect()
 419     protected synchronized void bind(InetAddress address, int lport)  in bind()
 498     void setAddress(InetAddress address) {  in setAddress()
 768     abstract void socketConnect(InetAddress address, int port, int timeout)  in socketConnect()
 770     abstract void socketBind(InetAddress address, int port)  in socketBind()
 
 | 
| D | InterfaceAddress.java | 38     private InetAddress address = null;  field in InterfaceAddress50     InterfaceAddress(InetAddress address, Inet4Address broadcast, InetAddress netmask) {  in InterfaceAddress()
 
 | 
| /libcore/luni/src/main/java/libcore/io/ | 
| D | Memory.java | 243     public static native byte peekByte(long address);  in peekByte()249     public static int peekInt(long address, boolean swap) {  in peekInt()
 257     private static native int peekIntNative(long address);  in peekIntNative()
 263     public static long peekLong(long address, boolean swap) {  in peekLong()
 271     private static native long peekLongNative(long address);  in peekLongNative()
 276     public static short peekShort(long address, boolean swap) {  in peekShort()
 284     private static native short peekShortNative(long address);  in peekShortNative()
 291     public static native void peekByteArray(long address, byte[] dst, int dstOffset, int byteCount);  in peekByteArray()
 297 …public static native void peekCharArray(long address, char[] dst, int dstOffset, int charCount, bo…  in peekCharArray()
 303 …public static native void peekDoubleArray(long address, double[] dst, int dstOffset, int doubleCou…  in peekDoubleArray()
 [all …]
 
 | 
| D | MemoryMappedFile.java | 36     private final long address;  field in MemoryMappedFile40     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/ | 
| D | ZStreamRef.java | 34     private volatile long address;  field in ZStreamRef35     ZStreamRef (long address) {  in ZStreamRef()
 39     long address() {  in address()  method in ZStreamRef
 
 | 
| /libcore/luni/src/main/java/libcore/net/ | 
| D | InetAddressUtils.java | 61     public static boolean isNumericAddress(String address) {  in isNumericAddress()81     public static InetAddress parseNumericAddress(String address) {  in parseNumericAddress()
 92     public static InetAddress parseNumericAddressNoThrow(String address) {  in parseNumericAddressNoThrow()
 112     public static InetAddress parseNumericAddressNoThrowStripOptionalBrackets(String address) {  in parseNumericAddressNoThrowStripOptionalBrackets()
 
 | 
| /libcore/luni/src/test/java/libcore/libcore/net/ | 
| D | InetAddressUtilsTest.java | 83     public void parseNumericAddress(String address, String expectedString) {  in parseNumericAddress()90     public void test_parseNonNumericAddress(String address) {  in test_parseNonNumericAddress()
 112     public void test_isNumericAddress(String address, String unused) {  in test_isNumericAddress()
 119     public void test_isNotNumericAddress(String address) {  in test_isNotNumericAddress()
 
 | 
| /libcore/ojluni/src/main/java/sun/nio/fs/ | 
| D | NativeBuffer.java | 38     private final long address;  field in NativeBuffer47         private final long address;  field in NativeBuffer.Deallocator
 48         Deallocator(long address) {  in Deallocator()
 72     long address() {  in address()  method in NativeBuffer
 
 | 
| D | LinuxUserDefinedFileAttributeView.java | 65     private List<String> asList(long address, int size) {  in asList()166         long address;  in read()  local
 224         long address;  in write()  local
 325             long address = buffer.address();  in copyExtendedAttributes()  local
 363             long address = buffer.address();  in copyExtendedAttribute()  local
 
 | 
| /libcore/ojluni/src/main/java/sun/net/ | 
| D | NetHooks.java | 86                                      InetAddress address,  in beforeTcpBind()98                                         InetAddress address,  in beforeTcpConnect()
 
 | 
| /libcore/ojluni/annotations/mmodule/sun/misc/ | 
| D | Unsafe.annotated.java | 176 public native void freeMemory(long address);  in freeMemory()179 public native void setMemory(long address, long bytes, byte value);  in setMemory()
 183 public native byte getByte(long address);  in getByte()
 187 public native void putByte(long address, byte x);  in putByte()
 190 public native short getShort(long address);  in getShort()
 193 public native void putShort(long address, short x);  in putShort()
 196 public native char getChar(long address);  in getChar()
 199 public native void putChar(long address, char x);  in putChar()
 203 public native int getInt(long address);  in getInt()
 207 public native void putInt(long address, int x);  in putInt()
 [all …]
 
 | 
| /libcore/ojluni/annotations/hiddenapi/sun/misc/ | 
| D | Unsafe.java | 186     public native void freeMemory(long address);  in freeMemory()189     public native void setMemory(long address, long bytes, byte value);  in setMemory()
 192     public native byte getByte(long address);  in getByte()
 195     public native void putByte(long address, byte x);  in putByte()
 198     public native short getShort(long address);  in getShort()
 201     public native void putShort(long address, short x);  in putShort()
 204     public native char getChar(long address);  in getChar()
 207     public native void putChar(long address, char x);  in putChar()
 210     public native int getInt(long address);  in getInt()
 213     public native void putInt(long address, int x);  in putInt()
 [all …]
 
 | 
| /libcore/ojluni/src/main/java/sun/misc/ | 
| D | Unsafe.java | 513     public native void freeMemory(long address);  in freeMemory()523     public native void setMemory(long address, long bytes, byte value);  in setMemory()
 532     public native byte getByte(long address);  in getByte()
 541     public native void putByte(long address, byte x);  in putByte()
 550     public native short getShort(long address);  in getShort()
 559     public native void putShort(long address, short x);  in putShort()
 568     public native char getChar(long address);  in getChar()
 577     public native void putChar(long address, char x);  in putChar()
 586     public native int getInt(long address);  in getInt()
 595     public native void putInt(long address, int x);  in putInt()
 [all …]
 
 | 
| /libcore/ojluni/src/main/native/ | 
| D | MappedByteBuffer.c | 40 Java_java_nio_MappedByteBuffer_isLoaded0(JNIEnv *env, jobject obj, jlong address,  in Java_java_nio_MappedByteBuffer_isLoaded0()85 Java_java_nio_MappedByteBuffer_load0(JNIEnv *env, jobject obj, jlong address,  in Java_java_nio_MappedByteBuffer_load0()
 98                                       jlong address, jlong len)  in Java_java_nio_MappedByteBuffer_force0()
 
 | 
| D | DatagramDispatcher.c | 52                          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()
 
 | 
| /libcore/ojluni/annotations/hiddenapi/java/net/ | 
| D | InterfaceAddress.java | 39             java.net.InetAddress address,  in InterfaceAddress()73     private java.net.InetAddress address;  field in InterfaceAddress
 
 | 
| /libcore/ojluni/annotations/mmodule/java/net/ | 
| D | SocketImpl.annotated.java | 41 protected abstract void connect(java.net.InetAddress address, int port) throws java.io.IOException;  in connect()43 protected abstract void connect(java.net.SocketAddress address, int timeout) throws java.io.IOExcep…  in connect()
 82 protected java.net.InetAddress address;  field in SocketImpl
 
 | 
| /libcore/ojluni/src/main/java/javax/net/ | 
| D | SocketFactory.java | 252     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()
 
 |