Searched refs:getAddress (Results 1 - 25 of 80) sorted by path

1234

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java542 if (BluetoothAdapter.checkBluetoothAddress(device.getAddress())) return true;
H A DBluetoothAdapter.java580 public String getAddress() { method in class:BluetoothAdapter
582 return mManagerService.getAddress();
H A DBluetoothDevice.java573 return mAddress.equals(((BluetoothDevice)o).getAddress());
586 * "00:11:22:AA:BB:CC". However, you should always use {@link #getAddress}
619 public String getAddress() { method in class:BluetoothDevice
854 getAddress()+")", npe);
H A DBluetoothGatt.java147 mService.clientConnect(mClientIf, mDevice.getAddress(),
162 if (!address.equals(mDevice.getAddress())) {
199 if (!address.equals(mDevice.getAddress())) {
218 if (!address.equals(mDevice.getAddress())) {
244 if (!address.equals(mDevice.getAddress())) {
267 if (!address.equals(mDevice.getAddress())) {
291 if (!address.equals(mDevice.getAddress())) {
312 if (!address.equals(mDevice.getAddress())) {
359 if (!address.equals(mDevice.getAddress())) {
405 if (!address.equals(mDevice.getAddress())) {
[all...]
H A DBluetoothGattServer.java408 if (DBG) Log.d(TAG, "connect() - device: " + device.getAddress() + ", auto: " + autoConnect);
412 mService.serverConnect(mServerIf, device.getAddress(),
431 if (DBG) Log.d(TAG, "cancelConnection() - device: " + device.getAddress());
435 mService.serverDisconnect(mServerIf, device.getAddress());
464 if (DBG) Log.d(TAG, "sendResponse() - device: " + device.getAddress());
468 mService.sendResponse(mServerIf, device.getAddress(), requestId,
496 if (DBG) Log.d(TAG, "notifyCharacteristicChanged() - device: " + device.getAddress());
503 mService.sendNotification(mServerIf, device.getAddress(),
H A DBluetoothHeadset.java919 if (BluetoothAdapter.checkBluetoothAddress(device.getAddress())) return true;
H A DBluetoothHealth.java551 if (BluetoothAdapter.checkBluetoothAddress(device.getAddress())) return true;
H A DBluetoothInputDevice.java487 if (BluetoothAdapter.checkBluetoothAddress(device.getAddress())) return true;
H A DBluetoothMap.java402 if (BluetoothAdapter.checkBluetoothAddress(device.getAddress())) return true;
H A DBluetoothPan.java380 if (BluetoothAdapter.checkBluetoothAddress(device.getAddress())) return true;
H A DBluetoothSocket.java171 mAddress = BluetoothAdapter.getDefaultAdapter().getAddress();
174 mAddress = device.getAddress();
H A DIBluetooth.aidl38 String getAddress();
H A DIBluetoothManager.aidl41 String getAddress();
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDeviceConnection.java195 return native_bulk_request(endpoint.getAddress(), buffer, offset, length, timeout);
H A DUsbEndpoint.java60 public int getAddress() { method in class:UsbEndpoint
H A DUsbRequest.java63 return native_init(connection, endpoint.getAddress(), endpoint.getAttributes(),
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java803 byte[] address = hostAddress.getAddress();
H A DDhcpResults.java150 dest.writeByteArray(serverAddress.getAddress());
H A DInterfaceConfiguration.java109 for (byte b : mAddr.getAddress().getAddress()) {
H A DLinkAddress.java58 init(interfaceAddress.getAddress(),
121 public InetAddress getAddress() { method in class:LinkAddress
147 dest.writeByteArray(address.getAddress());
H A DLinkProperties.java140 addresses.add(linkAddress.getAddress());
151 addresses.add(linkAddress.getAddress());
386 if (address.getAddress() instanceof Inet4Address) {
400 if (address.getAddress() instanceof Inet6Address) {
651 dest.writeByteArray(d.getAddress());
H A DNetworkUtils.java135 byte [] addr = inetAddr.getAddress();
186 byte[] array = address.getAddress();
H A DRouteInfo.java95 if (destination.getAddress() instanceof Inet4Address) {
103 mDestination = new LinkAddress(NetworkUtils.getNetworkPart(destination.getAddress(),
138 return (mDestination.getAddress() instanceof Inet4Address &&
140 (mDestination.getAddress() instanceof Inet6Address &&
197 dest.writeByteArray(mDestination.getAddress().getAddress());
205 dest.writeByteArray(mGateway.getAddress());
290 return mDestination.getAddress().equals(dstNet);
306 if (NetworkUtils.addressTypeMatches(route.mDestination.getAddress(), dest)) {
H A DVpnService.java358 byte[] bytes = address.getAddress();
/frameworks/base/core/java/android/net/arp/
H A DArpPeer.java85 byte[] desiredIp = mPeer.getAddress();
99 buf.put(mMyAddr.getAddress()); // four bytes: sender IP address
141 inetAddress = la.getAddress();

Completed in 155 milliseconds

1234