/prebuilts/go/linux-x86/src/net/ |
unixsock.go | 7 // UnixAddr represents the address of a Unix domain socket end point. 13 // Network returns the address's network name, "unix", "unixgram" or 37 // ResolveUnixAddr parses addr as a Unix domain socket address.
|
/system/bt/service/common/bluetooth/util/ |
address_helper.h | 24 // Checks if the given string representing a Bluetooth device address (BD_ADDR) 30 bool IsAddressValid(const std::string& address); 34 bool BdAddrFromString(const std::string& address, bt_bdaddr_t* out_addr);
|
/system/core/base/include/android-base/ |
parsenetaddress.h | 25 // Parses |address| into |host| and |port|. 27 // If |address| doesn't contain a port number, the default value is taken from 32 bool ParseNetAddress(const std::string& address, std::string* host, int* port,
|
/toolchain/binutils/binutils-2.25/include/vms/ |
etir.h | 43 #define ETIR__C_STO_CA 56 /* Store code address. */ 50 #define ETIR__C_STO_HINT_GBL 64 /* Store 14 bit HINT at global address. */ 88 #define ETIR__C_STC_GBL 202 /* STC Address at global address. */ 89 #define ETIR__C_STC_GCA 203 /* STC Code Address at global address. */ 90 #define ETIR__C_STC_PS 204 /* STC Address at psect + offset. */ 91 #define ETIR__C_STC_NOP_GBL 205 /* STC NOP at address of global. */ 93 #define ETIR__C_STC_BSR_GBL 207 /* STC BSR at global address. */ 95 #define ETIR__C_STC_LDA_GBL 209 /* STC LDA at global address. * [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
mips16-pic-2.gd | 23 Address Access Initial Purpose 28 Address Access Initial 35 Address Access Initial Sym\.Val\. Type Ndx Name
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
b-offlocmis.s | 3 % with a 64-bit address (0x789abcdef012345b) then 16 bytes of % random 4 % data. Note that the address is misaligned and the contents should 6 % LOP_LOC, about 32 bytes further on, also at a misaligned address:
|
/external/v8/tools/ |
grokdump.py | 214 ("address", ctypes.c_uint64), 684 def IsValidAddress(self, address): 685 return self.FindLocation(address) is not None 687 def ReadU8(self, address): 688 location = self.FindLocation(address) 691 def ReadU32(self, address): 692 location = self.FindLocation(address) 695 def ReadU64(self, address): 696 location = self.FindLocation(address) 699 def ReadUIntPtr(self, address) [all...] |
/external/jmdns/src/javax/jmdns/impl/ |
HostInfo.java | 58 * @param address 59 * IP address to bind 66 public static HostInfo newHostInfo(InetAddress address, JmDNSImpl dns, String jmdnsName) { 69 InetAddress addr = address; 78 // Find local address that isn't a loopback address 87 logger.warning("Could not find any address beside the loopback."); 96 logger.log(Level.WARNING, "Could not intialize the host network interface on " + address + "because of an error: " + e.getMessage(), e); 121 private HostInfo(final InetAddress address, final String name, final JmDNSImpl dns) { 124 this._address = address; 242 String address = (rawAddress[12] & 0xff) + "." + (rawAddress[13] & 0xff) + "." + (rawAddress[14] & 0xff) + "." + (rawAddress[15] & 0xff); local [all...] |
/external/webrtc/webrtc/base/ |
macasyncsocket.cc | 49 // Returns the address to which the socket is bound. If the socket is not 50 // bound, then the any-address is returned. 52 SocketAddress address; local 62 SocketAddressFromSockAddrStorage(addr, &address); 64 return address; 67 // Returns the address to which the socket is connected. If the socket is not 68 // connected, then the any-address is returned. 70 SocketAddress address; local 78 SocketAddressFromSockAddrStorage(addr, &address); 80 return address; [all...] |
/frameworks/base/core/tests/coretests/src/android/net/ |
IpPrefixTest.java | 32 private static InetAddress Address(String addr) { 82 fail("Expected IllegalArgumentException: invalid address"); 92 fail("Expected IllegalArgumentException: invalid IPv4 address"); 97 fail("Expected IllegalArgumentException: non-address"); 102 fail("Expected IllegalArgumentException: invalid IPv6 address"); 218 assertTrue(p.contains(Address("2001:db8:f00::ace:d00c"))); 219 assertTrue(p.contains(Address("2001:db8:f00::ace:d00d"))); 220 assertFalse(p.contains(Address("2001:db8:f00::ace:d00e"))); 221 assertFalse(p.contains(Address("2001:db8:f00::bad:d00d"))); 222 assertFalse(p.contains(Address("2001:4868:4860::8888"))) [all...] |
/frameworks/base/services/core/java/com/android/server/hdmi/ |
Constants.java | 28 /** Logical address for TV */ 31 /** Logical address for recorder 1 */ 34 /** Logical address for recorder 2 */ 37 /** Logical address for tuner 1 */ 40 /** Logical address for playback 1 */ 43 /** Logical address for audio system */ 46 /** Logical address for tuner 2 */ 49 /** Logical address for tuner 3 */ 52 /** Logical address for playback 2 */ 55 /** Logical address for recorder 3 * [all...] |
/libcore/ojluni/src/main/java/sun/nio/ch/ |
Net.java | 117 * multicast group (IPv4 group as IPv4-mapped IPv6 address) 137 throw new IllegalArgumentException("Invalid address type"); 162 nx = new SocketException("Unsupported address type"); 164 nx = new SocketException("Unresolved address"); 203 * Returns the local address after performing a SecurityManager#checkConnect. 211 // Return loopback address only if security check fails 216 //Return loopback address 255 * Returns any IPv4 address of the given network interface, or 274 * Returns an IPv4 address as an int. 279 int address = addr[3] & 0xFF [all...] |
/system/connectivity/shill/ |
connection_diagnostics_unittest.cc | 400 const IPAddress& address) { 403 EXPECT_CALL(*icmp_session_, Start(IsSameIPAddress(address), _)) 405 connection_diagnostics_.PingHost(address); 409 const IPAddress& address) { 412 EXPECT_CALL(*icmp_session_, Start(IsSameIPAddress(address), _)) 419 connection_diagnostics_.PingHost(address); 423 const IPAddress& address) { 433 connection_diagnostics_.OnPingHostComplete(ping_event_type, address, 438 const IPAddress& address) { 445 connection_diagnostics_.OnPingHostComplete(ping_event_type, address, [all...] |
/external/autotest/client/cros/cellular/ |
labconfig_data.py | 56 # working DNS server at this address, but you must 86 "address": "172.31.206.171", 92 "address": "172.31.206.145", 98 "address": "172.31.206.146", 107 "address": "172.31.206.153", 122 "address": "172.31.206.172", 132 "address": "172.22.50.118", 139 "address": "172.22.50.244", 153 "address": "172.22.50.86", 161 "address": "172.22.50.187" [all...] |
/external/elfutils/libdw/ |
fde.c | 132 address range. That is odd. Ignore this FDE. And just use 175 binary_search_fde (Dwarf_CFI *cache, Dwarf_Addr address) 211 if (address < start) 228 /* Look at the start address in the following entry. */ 234 if (address >= end) 247 __libdw_find_fde (Dwarf_CFI *cache, Dwarf_Addr address) 249 /* Look for a cached FDE covering this address. */ 251 const struct dwarf_fde fde_key = { .start = address, .end = 0 }; 259 Dwarf_Off offset = binary_search_fde (cache, address); 265 /* Sanity check the address range. * [all...] |
/external/google-breakpad/src/common/ |
dwarf_cfi_to_module.h | 81 // address column number for this entry. 140 virtual bool Entry(size_t offset, uint64 address, uint64 length, 143 virtual bool UndefinedRule(uint64 address, int reg); 144 virtual bool SameValueRule(uint64 address, int reg); 145 virtual bool OffsetRule(uint64 address, int reg, 147 virtual bool ValOffsetRule(uint64 address, int reg, 149 virtual bool RegisterRule(uint64 address, int reg, int base_register); 150 virtual bool ExpressionRule(uint64 address, int reg, 152 virtual bool ValExpressionRule(uint64 address, int reg, 160 // Record RULE for register REG at ADDRESS [all...] |
/external/google-breakpad/src/processor/ |
contained_range_map-inl.h | 86 // containing child's high address. 98 // iterator_high might refer to an irrelevant range: one whose base address 99 // is higher than the new range's high address. Set contains_high to true 140 // Store the new range in the map by its high address. Any children that 152 const AddressType &address, EntryType *entry) const { 161 // Get an iterator to the child range whose high address is equal to or 162 // greater than the supplied address. If the supplied address is higher 164 // contain a child at address, so return false. If the supplied address [all...] |
/external/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugLine.h | 48 // program opcodes that alter the address register first multiply their 102 return LHS.Address < RHS.Address; 107 uint64_t Address; 131 // A boolean indicating that the current address is that of the 135 // A boolean indicating that the current address is one (of possibly 139 // A boolean indicating that the current address is one (of possibly 147 // guaranteed to be in the order of ascending instruction address. 149 // Sequence describes instructions at address range [LowPC, HighPC) 184 // Returns the index of the row with file/line info for a given address, [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/net/ |
if_arp.h | 1 /* Definitions for Address Resolution Protocol. 57 unsigned short int ar_hrd; /* Format of hardware address. */ 58 unsigned short int ar_pro; /* Format of protocol address. */ 59 unsigned char ar_hln; /* Length of hardware address. */ 60 unsigned char ar_pln; /* Length of protocol address. */ 65 unsigned char __ar_sha[ETH_ALEN]; /* Sender hardware address. */ 66 unsigned char __ar_sip[4]; /* Sender IP address. */ 67 unsigned char __ar_tha[ETH_ALEN]; /* Target hardware address. */ 68 unsigned char __ar_tip[4]; /* Target IP address. */ 141 struct sockaddr arp_pa; /* Protocol address. * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/net/ |
if_arp.h | 1 /* Definitions for Address Resolution Protocol. 57 unsigned short int ar_hrd; /* Format of hardware address. */ 58 unsigned short int ar_pro; /* Format of protocol address. */ 59 unsigned char ar_hln; /* Length of hardware address. */ 60 unsigned char ar_pln; /* Length of protocol address. */ 65 unsigned char __ar_sha[ETH_ALEN]; /* Sender hardware address. */ 66 unsigned char __ar_sip[4]; /* Sender IP address. */ 67 unsigned char __ar_tha[ETH_ALEN]; /* Target hardware address. */ 68 unsigned char __ar_tip[4]; /* Target IP address. */ 141 struct sockaddr arp_pa; /* Protocol address. * [all...] |
/external/kernel-headers/original/uapi/linux/ |
ipmi.h | 65 * This is an overlay for all the address types, so it's easy to 66 * determine the actual address type. This is kind of like addresses 79 * When the address is not used, the type will be set to this value. 90 /* An IPMB Address. */ 103 * A LAN Address. This is an address to/from a LAN interface bridged 104 * by the BMC, not an address actually out on the LAN. 110 * always have exactly the same address. If you didn't do this, 114 * In this address, the remote_SWID is always the SWID the remote 133 * channel, This is for the system interface address type only. FIXM [all...] |
/frameworks/base/core/java/android/net/ |
NetworkUtils.java | 50 * @param packetType the hardware address type, one of ARPHRD_*. 109 * Convert a IPv4 address from an integer to an InetAddress. 110 * @param hostAddress an int corresponding to the IPv4 address in network byte order 126 * Convert a IPv4 address from an InetAddress to an integer 127 * @param inetAddr is an InetAddress corresponding to the IPv4 address 128 * @return the IP address as an integer in network byte order 181 * representation of a V4 or V6 address. Avoids doing a DNS lookup on failure 193 * Writes an InetAddress to a parcel. The address may be null. This is likely faster than 196 protected static void parcelInetAddress(Parcel parcel, InetAddress address, int flags) { 197 byte[] addressArray = (address != null) ? address.getAddress() : null 279 InetAddress address = null; local [all...] |
/ndk/sources/host-tools/make-3.81/ |
alloca.c | 61 provide an "address metric" ADDRESS_FUNCTION macro. */ 119 static char *addr = NULL; /* Address of first `dummy', once known. */ 120 auto char dummy; /* To get stack address. */ 218 /* Address of header. */ 253 the high-address end of a stack segment. (The stack 268 long sstcpt:32; /* Pointer to task common address block. */ 314 long current_address; /* Current stack segment address. */ 318 long initial_address; /* Address of initial segment. */ 328 long this_address; /* Address of this block. */ 333 long link; /* Address of trailer block of previou [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
ipmi.h | 73 * This is an overlay for all the address types, so it's easy to 74 * determine the actual address type. This is kind of like addresses 87 * When the address is not used, the type will be set to this value. 98 /* An IPMB Address. */ 111 * A LAN Address. This is an address to/from a LAN interface bridged 112 * by the BMC, not an address actually out on the LAN. 118 * always have exactly the same address. If you didn't do this, 122 * In this address, the remote_SWID is always the SWID the remote 141 * channel, This is for the system interface address type only. FIXM [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
ipmi.h | 73 * This is an overlay for all the address types, so it's easy to 74 * determine the actual address type. This is kind of like addresses 87 * When the address is not used, the type will be set to this value. 98 /* An IPMB Address. */ 111 * A LAN Address. This is an address to/from a LAN interface bridged 112 * by the BMC, not an address actually out on the LAN. 118 * always have exactly the same address. If you didn't do this, 122 * In this address, the remote_SWID is always the SWID the remote 141 * channel, This is for the system interface address type only. FIXM [all...] |