HomeSort by relevance Sort by last modified time
    Searched refs:getAddress (Results 76 - 100 of 1021) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/java/android/bluetooth/
IBluetoothManager.aidl 46 String getAddress();
  /packages/apps/UnifiedEmail/src/com/android/mail/
EmailAddress.java 55 public String getAddress() {
86 address = Html.fromHtml(tokens[0].getAddress()).toString();
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/connections/
BluetoothConnection.java 52 public String getAddress() {
53 return mDevice.getAddress();
  /external/guava/guava/src/com/google/common/net/
InetAddresses.java 46 * objects as byte arrays (vis. {@code InetAddress.getAddress()}) they
361 byte[] bytes = ip.getAddress();
553 byte[] bytes = ip.getAddress();
573 return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 12, 16));
591 byte[] bytes = ip.getAddress();
606 return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 2, 6));
681 byte[] bytes = ip.getAddress();
697 byte[] bytes = ip.getAddress();
738 byte[] bytes = ip.getAddress();
762 return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 12, 16))
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
RealConnection.java 99 Address address = route.getAddress();
101 if (route.getAddress().getSslSocketFactory() == null
148 if (route.getAddress().getSslSocketFactory() != null) {
159 .socket(socket, route.getAddress().url().host(), source, sink)
175 Address address = route.getAddress();
294 route.getAddress().getAuthenticator(), response, route.getProxy());
314 .url(route.getAddress().url())
315 .header("Host", Util.hostHeader(route.getAddress().url(), true))
396 + route.getAddress().url().host() + ":" + route.getAddress().url().port(
    [all...]
  /libcore/ojluni/src/main/java/java/net/
SocksSocketImpl.java 264 if (!(endpoint.getAddress() instanceof Inet4Address)) {
271 out.write(endpoint.getAddress().getAddress());
346 security.checkConnect(epoint.getAddress().getHostAddress(),
418 } else if (epoint.getAddress() instanceof Inet6Address) {
420 out.write(epoint.getAddress().getAddress());
425 out.write(epoint.getAddress().getAddress());
520 return external_address.getAddress();
    [all...]
DatagramSocket.java 403 InetAddress iaddr = epoint.getAddress();
517 connectInternal(epoint.getAddress(), epoint.getPort());
645 * security checks. First, if {@code p.getAddress().isMulticastAddress()}
648 * with {@code p.getAddress()} as its argument.
652 * {@code p.getAddress().getHostAddress()} and
687 checkAddress (p.getAddress(), "send");
697 if (p.getAddress().isMulticastAddress()) {
698 security.checkMulticast(p.getAddress());
700 security.checkConnect(p.getAddress().getHostAddress(),
706 packetAddress = p.getAddress();
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/internet/
MimeMessageTest.java 295 assertEquals("no name 1 address", "noname1@dom1.com", from[0].getAddress());
299 assertEquals("no name 2 address", "noname2@dom2.com", to[0].getAddress());
303 assertEquals("simple name address", "address3@dom3.org", cc[0].getAddress());
305 assertEquals("double quoted name address", "address4@dom4.org", cc[1].getAddress());
309 assertEquals("quoted name address", "bigG@dom5.net", replyTo[0].getAddress());
311 assertEquals("utf-16 name address", "address6@co.jp", replyTo[1].getAddress());
313 assertEquals("utf-32 name address", "address8@ne.jp", replyTo[2].getAddress());
465 assertEquals("joe@example.org", toAddresses[1].getAddress());
466 assertEquals("jdoe@one.test", toAddresses[2].getAddress());
470 //assertEquals("c@public.example", toAddresses[0].getAddress());
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
CachedBluetoothDevice.java 378 public String getAddress() {
379 return mDevice.getAddress();
393 mName = mDevice.getAddress();
421 mName = mDevice.getAddress();
656 return mDevice.getAddress().hashCode();
713 if (!preferences.contains(mDevice.getAddress())) {
718 int oldPermission = preferences.getInt(mDevice.getAddress(), ACCESS_UNKNOWN);
727 editor.remove(mDevice.getAddress());
776 if (!preferences.contains(mDevice.getAddress())) {
781 int oldPermission = preferences.getInt(mDevice.getAddress(), ACCESS_UNKNOWN)
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
PstnIncomingCallNotifier.java 143 String number = connection.getAddress();
198 !TextUtils.isEmpty(connection.getAddress())) {
199 Uri uri = Uri.fromParts(PhoneAccount.SCHEME_TEL, connection.getAddress(), null);
237 !TextUtils.isEmpty(connection.getAddress())) {
238 Uri uri = Uri.fromParts(PhoneAccount.SCHEME_TEL, connection.getAddress(), null);
322 && Objects.equals(original.getAddress(), unknown.getAddress())) {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 258 result.set(i, oneType, oneHandler.getAddress());
286 return new CatchTable.Entry(startAddress.getAddress(),
287 endAddress.getAddress(), handlers);
311 int startAddress = addresses.getLast(start).getAddress();
312 int endAddress = addresses.getEnd(end).getAddress();
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 257 result.set(i, oneType, oneHandler.getAddress());
285 return new CatchTable.Entry(startAddress.getAddress(),
286 endAddress.getAddress(), handlers);
310 int startAddress = addresses.getLast(start).getAddress();
311 int endAddress = addresses.getEnd(end).getAddress();
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
BluetoothDeviceManagerTest.java 87 assertEquals(device1.getAddress(),
108 assertEquals(device3.getAddress(),
113 assertEquals(device2.getAddress(),
130 assertEquals(device2.getAddress(),
131 mBluetoothDeviceManager.getMostRecentlyConnectedDevice(device3.getAddress()));
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
BluetoothTest.java 74 * Test the getAddress() function.
77 assertTrue(BluetoothAdapter.checkBluetoothAddress(mAdapter.getAddress()));
123 assertEquals("00:11:22:AA:BB:CC", device.getAddress());
127 assertEquals("01:02:03:04:05:06", device.getAddress());
DummyConnectionService.java 41 connection.setAddress(request.getAddress(), TelecomManager.PRESENTATION_ALLOWED);
133 final int cause = convertNumberToCause(connection.getAddress().getSchemeSpecificPart());
  /frameworks/base/core/java/android/companion/
BluetoothDeviceFilterUtils.java 61 || (device != null && deviceAddress.equals(device.getAddress()));
128 return firstNotEmpty(device.getAliasName(), device.getAddress());
137 return ((BluetoothDevice) device).getAddress();
  /packages/apps/Contacts/src/com/android/contacts/interactions/
SmsInteraction.java 49 String address = getAddress();
71 return getAddress();
96 public String getAddress() {
  /packages/services/Telephony/src/com/android/phone/
CallLogger.java 58 final String number = c.getAddress();
153 number = conn.getAddress();
163 // In cdma getAddress() is not always equals to getOrigDialString().
166 number = conn.getAddress();
  /libcore/luni/src/test/java/libcore/java/nio/channels/
DatagramChannelTest.java 135 assertTrue(actualAddress.getAddress().isAnyLocalAddress());
164 assertEquals(bindAddress, actualAddress.getAddress());
200 assertEquals(socketAddress.getAddress(),
201 ((InetSocketAddress)(channel.getLocalAddress())).getAddress());
234 assertEquals(socketAddress.getAddress(),
235 ((InetSocketAddress) (clientChannel.getRemoteAddress())).getAddress());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/companion/
CompanionDeviceTestActivity.java 115 String deviceAddress = associatedDevice.getAddress();
120 mCompanionDeviceManager.disassociate(associatedDevice.getAddress());
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 98 ErrorOr<uint64_t> AddrOrErr = Sym.getAddress();
132 ErrorOr<uint64_t> AddrOrErr = I->getAddress();
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 48 uint8_t *Src = Sections[RE.SectionID].getAddress() + RE.Offset;
75 uint64_t SectionBaseAddr = TargetSI->getAddress();
131 uint64_t Addr = Sec.getAddress();
143 Value.Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress();
149 uint8_t *LocalAddress = Section.getAddress() + RE.Offset;
167 uint64_t SAddr = SI->getAddress();
331 uint8_t *P = EHFrame->getAddress();
337 MemMgr.registerEHFrames(EHFrame->getAddress(), EHFrame->getLoadAddress(),
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
WaltUsbConnection.java 142 int ep_out = endpointOut.getAddress();
143 int ep_in = endpointIn.getAddress();
  /frameworks/base/core/java/android/net/
InterfaceConfiguration.java 117 for (byte b : mAddr.getAddress().getAddress()) {
  /frameworks/base/services/core/java/com/android/server/connectivity/
KeepalivePacketData.java 124 buf.put(srcAddress.getAddress());
125 buf.put(dstAddress.getAddress());

Completed in 1061 milliseconds

1 2 34 5 6 7 8 91011>>