/frameworks/base/core/java/android/net/ |
H A D | LinkAddress.java | 54 this.address = interfaceAddress.getAddress(); 92 public InetAddress getAddress() { method in class:LinkAddress 118 dest.writeByteArray(address.getAddress());
|
H A D | RouteInfo.java | 62 if (destination.getAddress() instanceof Inet4Address) { 68 mDestination = new LinkAddress(NetworkUtils.getNetworkPart(destination.getAddress(), 142 dest.writeByteArray(mDestination.getAddress().getAddress()); 150 dest.writeByteArray(mGateway.getAddress()); 230 return mDestination.getAddress().equals(dstNet); 246 if (NetworkUtils.addressTypeMatches(route.mDestination.getAddress(), dest)) {
|
H A D | InterfaceConfiguration.java | 109 for (byte b : mAddr.getAddress().getAddress()) {
|
H A D | NetworkUtils.java | 129 byte [] addr = inetAddr.getAddress(); 183 byte[] array = address.getAddress();
|
/frameworks/base/tests/CoreTests/android/core/ |
H A D | InetAddrTest.java | 45 raw = ia.getAddress(); 54 raw = ia.getAddress();
|
/frameworks/base/core/java/android/server/ |
H A D | BluetoothInputProfileHandler.java | 66 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 83 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 94 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 110 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 139 Settings.Secure.getBluetoothInputDevicePriorityKey(device.getAddress()), 144 if (!BluetoothAdapter.checkBluetoothAddress(device.getAddress())) { 148 Settings.Secure.getBluetoothInputDevicePriorityKey(device.getAddress()),
|
H A D | BluetoothA2dpService.java | 107 String address = sinks.get(0).getAddress(); 196 ParcelUuid[] uuids = mBluetoothService.getRemoteUuids(device.getAddress()); 240 device.getAddress())); 263 String path = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 290 return mBluetoothService.connectSink(device.getAddress()); 314 String path = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 331 String path = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 350 return mBluetoothService.disconnectSink(device.getAddress()); 355 String path = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 379 String path = mBluetoothService.getObjectPathFromAddress(device.getAddress()); [all...] |
H A D | BluetoothPanProfileHandler.java | 131 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 171 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 177 device.getAddress(), 179 errorLog("could not disconnect Pan Server Device "+device.getAddress()); 219 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress()); 238 if (!mBluetoothService.disconnectPanServerDeviceNative(objectPath, device.getAddress(), 382 if (linkAddr == null || (addr = linkAddr.getAddress()) == null ||
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
H A D | Connection.java | 84 public abstract String getAddress(); method in class:Connection 298 str.append("addr: " + getAddress())
|
/frameworks/base/core/java/android/net/arp/ |
H A D | ArpPeer.java | 78 byte[] desiredIp = mPeer.getAddress(); 92 buf.put(mMyAddr.getAddress()); // four bytes: sender IP address
|
/frameworks/ex/common/java/com/android/common/ |
H A D | Rfc822Validator.java | 70 matcher(tokens[0].getAddress()).matches(); 128 String text = tokens[i].getAddress();
|
/frameworks/base/core/java/android/hardware/usb/ |
H A D | UsbDeviceConnection.java | 140 return native_bulk_request(endpoint.getAddress(), buffer, length, timeout);
|
H A D | UsbEndpoint.java | 60 public int getAddress() { method in class:UsbEndpoint
|
H A D | UsbRequest.java | 63 return native_init(connection, endpoint.getAddress(), endpoint.getAttributes(),
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
H A D | WifiP2pInfo.java | 73 dest.writeByteArray(groupOwnerAddress.getAddress());
|
/frameworks/compile/linkloader/include/impl/ |
H A D | ELFSectionHeader.hxx | 89 PRINT_LINT("Address", getAddress());
|
H A D | ELFObject.hxx | 145 Inst_t S = (Inst_t)(int64_t)sym->getAddress(EM_ARM); 197 void *callee_addr = sym->getAddress(EM_ARM); 211 "sym->getAddress(EM_ARM) function call."); 374 Inst_t S = (Inst_t)(int64_t)sym->getAddress(EM_X86_64); 428 Inst_t S = (Inst_t)(uintptr_t)sym->getAddress(EM_386); 475 Inst_t S = (Inst_t)(uintptr_t)sym->getAddress(EM_MIPS); 569 S = (Inst_t)(intptr_t)sym->getAddress(EM_MIPS);
|
/frameworks/base/core/java/android/bluetooth/ |
H A D | HeadsetBase.java | 83 mAddress = device.getAddress(); 100 mAddress = device.getAddress();
|
H A D | BluetoothSocket.java | 151 mAddress = device.getAddress(); 390 inProgress = service.fetchRemoteUuids(device.getAddress(), uuid, this);
|
H A D | BluetoothInputDevice.java | 323 if (BluetoothAdapter.checkBluetoothAddress(device.getAddress())) return true;
|
/frameworks/base/core/java/android/net/dhcp/ |
H A D | DhcpPacket.java | 253 byte[] destIpArray = destIp.getAddress(); 254 byte[] srcIpArray = srcIp.getAddress(); 309 buf.put(mClientIp.getAddress()); 310 buf.put(mYourIp.getAddress()); 311 buf.put(mNextIp.getAddress()); 312 buf.put(mRelayIp.getAddress()); 440 addTlv(buf, type, addr.getAddress()); 453 buf.put(addr.getAddress());
|
/frameworks/ex/chips/src/com/android/ex/chips/ |
H A D | SingleRecipientArrayAdapter.java | 61 destination.setText(Rfc822Tokenizer.tokenize(entry.getDestination())[0].getAddress());
|
/frameworks/base/core/java/android/net/nsd/ |
H A D | NsdServiceInfo.java | 123 dest.writeByteArray(mHost.getAddress());
|
/frameworks/base/core/java/android/text/util/ |
H A D | Rfc822Token.java | 46 public String getAddress() { method in class:Rfc822Token
|
/frameworks/base/voip/java/android/net/sip/ |
H A D | SimpleSessionDescription.java | 148 public String getAddress() { method in class:SimpleSessionDescription 149 return mFields.getAddress(); 400 public String getAddress() { method in class:SimpleSessionDescription.Fields
|