/libcore/luni/src/main/java/java/nio/charset/ |
CharsetDecoderICU.java | 53 long address = 0; local 55 address = NativeConverter.openConverter(icuCanonicalName); 56 float averageCharsPerByte = NativeConverter.getAveCharsPerByte(address); 57 CharsetDecoderICU result = new CharsetDecoderICU(cs, averageCharsPerByte, address); 58 address = 0; // CharsetDecoderICU has taken ownership; its finalizer will do the free. 62 if (address != 0) { 63 NativeConverter.closeConverter(address); 68 private CharsetDecoderICU(Charset cs, float averageCharsPerByte, long address) { 70 this.converterHandle = address;
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
ServerSocketChannelTest.java | 91 // Attempt to connect to the "any" address. 100 InetSocketAddress address = local 102 assertTrue(canConnect(address)); 117 // Attempt to connect to the "loopback" address. Note: There can be several loopback 131 InetSocketAddress address = local 133 if (!address.equals(loopbackAddress)) { 134 assertFalse(canConnect(address)); 194 private static boolean canConnect(InetSocketAddress address) { 196 SocketChannel socketChannel = SocketChannel.open(address);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
OwnerElement.java | 36 * attribute from the first "address" node. Apply the "getOwnerElement()" method 38 * be "address". 83 addressList = doc.getElementsByTagName("address"); 89 assertEquals("throw_Equals", "address", name);
|
/libcore/ojluni/src/main/java/java/net/ |
AbstractPlainDatagramSocketImpl.java | 104 * destination address to send the packet to. 111 * address with the local socket so that datagrams may only be sent to this destination 113 * @param address the remote InetAddress to connect to 116 protected void connect(InetAddress address, int port) throws SocketException { 118 connect0(address, port); 119 connectedAddress = address; 137 * @return the address which the packet came from. 177 * @param inetaddr multicast address to join. 185 * @param inetaddr multicast address to leave. 192 * @param mcastaddr multicast address to join [all...] |
/libcore/ojluni/src/main/java/sun/nio/ch/ |
EPoll.java | 75 static void freePollArray(long address) { 76 unsafe.freeMemory(address); 82 static long getEvent(long address, int i) { 83 return address + (SIZEOF_EPOLLEVENT*i);
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
SSLSocketFactoryImpl.java | 114 * Constructs an SSL connection to a server at a specified address 119 * @param address the server's host 122 public Socket createSocket(InetAddress address, int port) 125 return new SSLSocketImpl(context, address, port); 134 * address and port supplied. 145 * Constructs an SSL connection to a server at a specified address 149 * the local address and port supplied. 151 public Socket createSocket(InetAddress address, int port, 155 return new SSLSocketImpl(context, address, port,
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
aligned_storage.hpp | 57 void* address() const { return const_cast<aligned_storage_imp*>(this); } function in struct:boost::detail::aligned_storage::aligned_storage_imp 64 void* address() const { return 0; } function in struct:boost::detail::aligned_storage::aligned_storage_imp 130 void* address() function in class:boost::aligned_storage 132 return static_cast<type*>(this)->address(); 137 const void* address() const function in class:boost::aligned_storage 139 return static_cast<const type*>(this)->address(); 144 const void* address() const; 156 const void* aligned_storage<S,A>::address() const function in class:boost::aligned_storage 158 return const_cast< aligned_storage<S,A>* >(this)->address();
|
/ndk/tests/device/multi-static-instances/jni/ |
main.cpp | 22 printf("OK: instance() returned the same address twice: %p\n", first);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
ctor2.cpp | 3 // constructor throws gets the right address for a virtual base.
|
ptr1.cpp | 19 printf ("address of e is 0x%lx\n", (__SIZE_TYPE__)e);
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
ctor2.cpp | 3 // constructor throws gets the right address for a virtual base.
|
ptr1.cpp | 19 printf ("address of e is 0x%lx\n", (__SIZE_TYPE__)e);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
RemoteDevices.java | 77 BluetoothDevice getDevice(byte[] address) { 79 if (dev.getAddress().equals(Utils.getAddressStringFromByte(address))) { 86 DeviceProperties addDeviceProperties(byte[] address) { 90 mAdapter.getRemoteDevice(Utils.getAddressStringFromByte(address)); 91 prop.mAddress = address; 229 void devicePropertyChangedCallback(byte[] address, int[] types, byte[][] values) { 233 BluetoothDevice bdDevice = getDevice(address); 236 device = addDeviceProperties(address); 237 bdDevice = getDevice(address); 270 debugLog("Remote Address is:" + Utils.getAddressStringFromByte(val)) [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
MailboxField.java | 26 import org.apache.james.mime4j.field.address.AddressList; 27 import org.apache.james.mime4j.field.address.Mailbox; 28 import org.apache.james.mime4j.field.address.MailboxList; 29 import org.apache.james.mime4j.field.address.parser.ParseException;
|
/packages/services/Telephony/src/org/apache/james/mime4j/field/ |
MailboxField.java | 26 import org.apache.james.mime4j.field.address.AddressList; 27 import org.apache.james.mime4j.field.address.Mailbox; 28 import org.apache.james.mime4j.field.address.MailboxList; 29 import org.apache.james.mime4j.field.address.parser.ParseException;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/ |
a.out.h | 11 unsigned a_entry; /* start address */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/ |
mman.h | 13 #define MAP_STACK 0x20000 /* give out an address that is best suited for process/thread stacks */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
ifaddrs.h | 37 struct sockaddr *ifa_addr; /* Network address of this interface. */ 45 struct sockaddr *ifu_broadaddr; /* Broadcast address of this interface. */ 46 struct sockaddr *ifu_dstaddr; /* Point-to-point destination address. */ 57 void *ifa_data; /* Address-specific data (may be unused). */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
adfs_fs.h | 8 * Disc Record at disc address 0xc00
|
atmmpc.h | 17 __be32 ipaddr; /* the IP address of the shortcut */ 26 __be32 in_dst_ip; /* IP address this ingress MPC sends packets to */ 37 __be32 eg_dst_ip; /* IP address to which ingress MPC sends packets */ 117 #define SET_MPC_CTRL_ADDR 107 /* Our MPC's control ATM address */
|
i2c-dev.h | 34 #define I2C_RETRIES 0x0701 /* number of times a device address should 38 /* NOTE: Slave address is 7 or 10 bits, but 10-bit addresses 41 #define I2C_SLAVE 0x0703 /* Use this slave address */ 42 #define I2C_SLAVE_FORCE 0x0706 /* Use this slave address, even if it
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/ |
gmon_out.h | 63 char low_pc[sizeof (char *)]; /* base pc address of sample buffer */ 64 char high_pc[sizeof (char *)]; /* max pc address of sampled buffer */ 73 char from_pc[sizeof (char *)]; /* address within caller's body */ 74 char self_pc[sizeof (char *)]; /* address within callee's body */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/ |
mman.h | 13 #define MAP_STACK 0x20000 /* give out an address that is best suited for process/thread stacks */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/ |
a.out.h | 11 unsigned a_entry; /* start address */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/ |
gmon_out.h | 63 char low_pc[sizeof (char *)]; /* base pc address of sample buffer */ 64 char high_pc[sizeof (char *)]; /* max pc address of sampled buffer */ 73 char from_pc[sizeof (char *)]; /* address within caller's body */ 74 char self_pc[sizeof (char *)]; /* address within callee's body */
|