/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
Inet6AddressTest.java | 39 // A prefix of "11111111" means that the address is multicast 44 assertTrue("Multicast address " + addrName + " not detected.", addr 47 addrName = "42::42:42"; // an non-multicast address 49 assertTrue("Non multicast address " + addrName 50 + " reporting as a multicast address.", !addr 53 // IPv4-compatible IPv6 address tests 56 // to IP v6 addresses. The address prefix for a multicast ip v4 57 // address is 1110 for the last 16 bits ::d.d.d.d 62 assertTrue("IPv4 compatable address " + addrName 66 addrName = "::42.42.42.42"; // an ipv4 non-multicast address [all...] |
/frameworks/base/core/java/android/bluetooth/ |
IBluetooth.aidl | 61 boolean createBond(in String address); 62 boolean createBondOutOfBand(in String address, in byte[] hash, in byte[] randomizer); 63 boolean cancelBondProcess(in String address); 64 boolean removeBond(in String address); 66 int getBondState(in String address); 67 boolean setDeviceOutOfBandData(in String address, in byte[] hash, in byte[] randomizer); 69 String getRemoteName(in String address); 70 String getRemoteAlias(in String address); 71 boolean setRemoteAlias(in String address, in String name); 72 int getRemoteClass(in String address); [all...] |
/external/qemu/memcheck/ |
memcheck_util.h | 29 // Transfering data between guest and emulator address spaces. 32 /* Copies buffer residing in the guest's virtual address space to a buffer 33 * in the emulator's address space. 35 * guest_address - Address of the bufer in guest's virtual address space. 36 * qemu_address - Address of the bufer in the emulator's address space. 43 /* Copies buffer residing in the emulator's address space to a buffer in the 44 * guest's virtual address space. 46 * qemu_address - Address of the bufer in the emulator's address space [all...] |
/external/clang/test/Sema/ |
expr-address-of.c | 13 add_one(&p->bitf); // expected-error {{address of bit-field requested}} 14 add_one(&pvalue.bitf); // expected-error {{address of bit-field requested}} 15 add_one(&p->whatever->bitf); // expected-error {{address of bit-field requested}} 20 &x[10]; // expected-error {{address of register variable requested}} 24 int *x2 = &y; // expected-error {{address of register variable requested}} 31 float* r = &q[0]; // expected-error {{address of vector element requested}} 37 return &x.w; // expected-error {{address of vector element requested}} 52 int *_dummy00 = x0; // fixme-error {{address of register variable requested}} 53 int *_dummy01 = &(*x0); // fixme-error {{address of register variable requested}} 56 int *_dummy1 = &(*(x1 + 1)); // fixme-error {{address of register variable requested} [all...] |
/external/chromium/net/udp/ |
datagram_server_socket.h | 22 // Initialize this socket as a server socket listening at |address|. 24 virtual int Listen(const IPEndPoint& address) = 0; 26 // Read from a socket and receive sender address information. 29 // |address| is a buffer provided by the caller for receiving the sender 30 // address information about the received data. This buffer must be kept 32 // |address_length| is a ptr to the length of the |address| buffer. This 33 // is an input parameter containing the maximum size |address| can hold 34 // and also an output parameter for the size of |address| upon completion. 37 // If ERR_IO_PENDING is returned, the caller must keep |buf|, |address|, 41 IPEndPoint* address, [all...] |
udp_server_socket.h | 26 virtual int Listen(const IPEndPoint& address); 29 IPEndPoint* address, 33 const IPEndPoint& address, 36 virtual int GetPeerAddress(IPEndPoint* address) const; 37 virtual int GetLocalAddress(IPEndPoint* address) const;
|
udp_socket_win.h | 30 // Connect the socket to connect with a certain |address|. 32 int Connect(const IPEndPoint& address); 34 // Bind the address/port for this socket to |address|. This is generally 37 int Bind(const IPEndPoint& address); 42 // Copy the remote udp address into |address| and return a network error code. 43 int GetPeerAddress(IPEndPoint* address) const; 45 // Copy the local udp address into |address| and return a network error code [all...] |
/libcore/luni/src/main/java/java/nio/ |
MemoryBlock.java | 34 private MemoryMappedBlock(int address, long byteCount) { 35 super(address, byteCount); 39 if (address != 0) { 41 Libcore.os.munmap(address, size); 47 address = 0; 66 private NonMovableHeapBlock(byte[] array, int address, long byteCount) { 67 super(address, byteCount); 77 address = 0; 86 private UnmanagedBlock(int address, long byteCount) { 87 super(address, byteCount) 92 protected int address; field in class:MemoryBlock 117 int address = (int) Libcore.os.mmap(0L, size, prot, flags, fd, offset); local 127 int address = (int) runtime.addressOf(array); local [all...] |
/external/chromium/net/socket/ |
tcp_server_socket_unittest.cc | 30 IPEndPoint address; variable 31 ParseAddress("127.0.0.1", 0, &address); 32 ASSERT_EQ(OK, socket_.Listen(address, kListenBacklog)); 36 void ParseAddress(std::string ip_str, int port, IPEndPoint* address) { 41 *address = IPEndPoint(ip_number, port); 45 AddressList address; local 46 EXPECT_EQ(OK, socket->GetPeerAddress(&address)); 49 address.head()->ai_addr, address.head()->ai_addrlen)); 59 TCPClientSocket connecting_socket(AddressList(local_address_.address(), [all...] |
/external/bluetooth/bluez/serial/ |
serial.conf | 9 # Address for device node 10 #Address=/dev/ttyx
|
/external/clang/test/SemaCXX/ |
address-space-references.cpp | 6 void f0(int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \ 7 // expected-note{{candidate function not viable: 1st argument ('int_2' (aka '__attribute__((address_space(2))) int')) is in address space 2, but parameter must be in address space 1}} 8 void f0(const int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \ 9 // expected-note{{candidate function not viable: 1st argument ('int_2' (aka '__attribute__((address_space(2))) int')) is in address space 2, but parameter must be in address space 1}}
|
/external/iproute2/ |
README.decnet | 11 o Remember to set the hardware address of the interface using: 13 ip link set ethX address xx:xx:xx:xx:xx:xx 14 (where xx:xx:xx:xx:xx:xx is the MAC address for your DECnet node 15 address) 18 mac address at once. If the Linux DECnet stack doesn't talk to 20 a problem, change the mac address (but do this _before_ starting 23 o Whilst you can use ip addr add to add more than one DECnet address to an 25 kernels node address to work properly with 2.4 kernels. This should
|
/external/iptables/include/linux/netfilter/ |
xt_iprange.h | 7 IPRANGE_SRC = 1 << 0, /* match source IP address */ 8 IPRANGE_DST = 1 << 1, /* match destination IP address */
|
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ipt_iprange.h | 4 #define IPRANGE_SRC 0x01 /* Match source IP address */ 5 #define IPRANGE_DST 0x02 /* Match destination IP address */
|
/external/nist-sip/java/javax/sip/address/ |
Address.java | 1 package javax.sip.address; 6 public interface Address extends Cloneable, Serializable {
|
/external/valgrind/main/exp-ptrcheck/tests/ |
filter_add | 8 sed "s/Address 0x........ is [0-9][0-9]\+ bytes /Address 0x........ is ... bytes /"
|
/external/valgrind/main/memcheck/tests/ |
badjump2.stderr.exp | 1 Jump to the invalid address stated on the next line 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
|
/libcore/dom/src/test/resources/ |
staff2.xml | 11 <address>1230 North Ave. Dallas, Texas 98551</address>
|
staff.xml | 20 <address domestic="Yes">1230 North Ave. Dallas, Texas 98551</address> 29 <address domestic="Yes" street="Yes">&ent2; Dallas, &ent3; 30 98554</address> 39 <address domestic="Yes" street="No">PO Box 27 Irving, texas 98553</address> 47 <address domestic="Yes" street="Y&ent1;">27 South Road. Dallas, Texas 98556</address> 55 <address street="Yes">1821 Nordic. Road, Irving Texas 98558</address> [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/ |
ipt_iprange.h | 6 #define IPRANGE_SRC 0x01 /* Match source IP address */ 7 #define IPRANGE_DST 0x02 /* Match destination IP address */
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
AddressFactoryImpl.java | 26 package gov.nist.javax.sip.address; 31 import javax.sip.address.*; 34 * Implementation of the JAIN-SIP address factory. 46 public class AddressFactoryImpl implements javax.sip.address.AddressFactory { 56 *Create an empty address object. 61 public javax.sip.address.Address createAddress() { 65 * Creates an Address with the new display name and URI attribute 69 * address. A <code>null</code> value does not set the display name. 70 * @param uri - the new URI value of the address [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
From.java | 32 import gov.nist.javax.sip.address.AddressImpl; 67 address = to.address; 81 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 84 address.encode(buffer); 85 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 96 * Conveniance accessor function to get the hostPort field from the address. 102 return address.getHostPort(); 106 * Get the display name from the address. 110 return address.getDisplayName() [all...] |
/libcore/luni/src/test/resources/out_dh/ |
staff.out | 45 ####$employeeId$employeeId^$name$name^$position$position^$salary$salary^$gender$gender^$address$address^$employee$employee^$employeeId$employeeId^$name$name^$position$position^$salary$salary^$gender$gender^$address$address^$employee$employee^$employeeId$employeeId^$name$name^$position$position^$salary$salary^$entElement$entElement^$gender$gender^$address$address^$employee$employee^$employeeId$employeeId^$name$name^$position$position^$salary$salary^$gender$gender^$address$address^$employee$employee^$employeeId$employeeId^$name$name^$position$position^$salary$salary^$gender$gender^$address$address^$employee$employee^$staff$staff^##TEST-STYLE$PIDATA^PItarget$PIdata^##$staff$staff$employee$employ (…) [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_addr.h | 11 __u8 ifa_scope; /* Address scope */ 17 * IFA_ADDRESS is prefix address, rather than local interface address. 19 * but for point-to-point IFA_ADDRESS is DESTINATION address, 20 * local address is supplied in IFA_LOCAL attribute.
|
/libcore/luni/src/test/resources/nwf/ |
staff.xml | 20 <address domestic="Yes">1230 North Ave. Dallas, Texas 98551</address> 29 <address domestic="Yes" street="Yes">&ent2; Dallas, &ent3; 30 98554</address> 39 <address domestic="Yes" street="No">PO Box 27 Irving, texas 98553</address> 47 <address domestic="Yes" street="Y&ent1;">27 South Road. Dallas, Texas 98556</address> 55 <address street="Yes">1821 Nordic. Road, Irving Texas 98558</address> [all...] |