Searched refs:getAddress (Results 1 - 25 of 107) sorted by relevance

12345

/frameworks/compile/libbcc/include/bcc/ExecutionEngine/
H A DCompilerRTSymbolResolver.h29 virtual void *getAddress(const char *pName) { function in class:bcc::CompilerRTSymbolResolver
32 return DyldSymbolResolver::getAddress(pName);
H A DSymbolResolverInterface.h29 return ((resolver != NULL) ? resolver->getAddress(pName) : NULL);
33 virtual void *getAddress(const char *pName) = 0;
H A DSymbolResolverProxy.h36 virtual void *getAddress(const char *pName);
H A DSymbolResolvers.h42 virtual void *getAddress(const char *pName);
77 virtual void *getAddress(const char *pName) { function in class:bcc::ArraySymbolResolver
117 virtual void *getAddress(const char *pName) { function in class:bcc::LookupFunctionSymbolResolver
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DSymbolResolverProxy.cpp21 void *SymbolResolverProxy::getAddress(const char *pName) { function in class:SymbolResolverProxy
24 void *addr = mChain[i]->getAddress(pName);
H A DSymbolResolvers.cpp84 void *DyldSymbolResolver::getAddress(const char *pName) { function in class:DyldSymbolResolver
/frameworks/base/core/java/android/net/
H A DRouteInfo.java139 if (destination.getAddress() instanceof Inet4Address) {
147 if ((destination.getAddress() instanceof Inet4Address &&
149 (destination.getAddress() instanceof Inet6Address &&
172 new IpPrefix(destination.getAddress(), destination.getPrefixLength()),
262 return (mDestination.getAddress() instanceof Inet4Address &&
264 (mDestination.getAddress() instanceof Inet6Address &&
282 return new LinkAddress(mDestination.getAddress(), mDestination.getPrefixLength());
329 return isDefaultRoute() && mDestination.getAddress() instanceof Inet4Address;
337 return isDefaultRoute() && mDestination.getAddress() instanceof Inet6Address;
376 return mDestination.getAddress()
[all...]
H A DIpPrefix.java85 // which is unnecessary because getAddress() already returns a clone.
86 this.address = address.getAddress();
106 this.address = ipAndMask.first.getAddress();
143 public InetAddress getAddress() { method in class:IpPrefix
H A DLinkAddress.java105 byte[] bytes = address.getAddress();
162 this(interfaceAddress.getAddress(),
248 public InetAddress getAddress() { method in class:LinkAddress
310 dest.writeByteArray(address.getAddress());
H A DInterfaceConfiguration.java109 for (byte b : mAddr.getAddress().getAddress()) {
H A DNetworkUtils.java166 byte [] addr = inetAddr.getAddress();
212 byte[] addressArray = (address != null) ? address.getAddress() : null;
261 byte[] array = address.getAddress();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGatt.java160 mService.clientConnect(mClientIf, mDevice.getAddress(),
175 if (!address.equals(mDevice.getAddress())) {
208 if (!address.equals(mDevice.getAddress())) {
227 if (!address.equals(mDevice.getAddress())) {
253 if (!address.equals(mDevice.getAddress())) {
276 if (!address.equals(mDevice.getAddress())) {
300 if (!address.equals(mDevice.getAddress())) {
321 if (!address.equals(mDevice.getAddress())) {
373 if (!address.equals(mDevice.getAddress())) {
424 if (!address.equals(mDevice.getAddress())) {
[all...]
H A DIBluetoothManager.aidl45 String getAddress();
H A DBluetoothGattServer.java438 if (DBG) Log.d(TAG, "connect() - device: " + device.getAddress() + ", auto: " + autoConnect);
442 mService.serverConnect(mServerIf, device.getAddress(),
461 if (DBG) Log.d(TAG, "cancelConnection() - device: " + device.getAddress());
465 mService.serverDisconnect(mServerIf, device.getAddress());
494 if (VDBG) Log.d(TAG, "sendResponse() - device: " + device.getAddress());
498 mService.sendResponse(mServerIf, device.getAddress(), requestId,
527 if (VDBG) Log.d(TAG, "notifyCharacteristicChanged() - device: " + device.getAddress());
539 mService.sendNotification(mServerIf, device.getAddress(),
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothInstrumentation.java71 } else if ("getAddress".equals(command)) {
72 getAddress();
103 public void getAddress() { method in class:BluetoothInstrumentation
104 String name = getBluetoothAdapter().getAddress();
113 mSuccessResult.putString(String.format("device-%02d", i), device.getAddress());
/frameworks/base/tests/CoreTests/android/core/
H A DInetAddrTest.java45 raw = ia.getAddress();
54 raw = ia.getAddress();
/frameworks/base/core/tests/coretests/src/android/net/
H A DLinkAddressTest.java73 assertEquals(V4_ADDRESS, address.getAddress());
79 assertEquals(V6_ADDRESS, address.getAddress());
86 assertEquals(V6_ADDRESS, address.getAddress());
92 assertEquals(V4_ADDRESS, address.getAddress());
103 if (addrs.get(0).getAddress() instanceof Inet4Address) {
111 assertEquals(NetworkUtils.numericToInetAddress("127.0.0.1"), ipv4Loopback.getAddress());
114 assertEquals(NetworkUtils.numericToInetAddress("::1"), ipv6Loopback.getAddress());
275 byte[] ipv4Bytes = l1.getAddress().getAddress();
276 byte[] l2FirstIPv6Bytes = Arrays.copyOf(l2.getAddress()
[all...]
/frameworks/ex/common/java/com/android/common/
H A DRfc822Validator.java100 matcher(tokens[0].getAddress()).matches();
158 String text = tokens[i].getAddress();
/frameworks/base/core/java/android/hardware/usb/
H A DUsbEndpoint.java59 public int getAddress() { method in class:UsbEndpoint
H A DUsbRequest.java63 return native_init(connection, endpoint.getAddress(), endpoint.getAttributes(),
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pInfo.java73 dest.writeByteArray(groupOwnerAddress.getAddress());
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSectionHeader.hxx89 PRINT_LINT("Address", getAddress());
/frameworks/base/core/java/android/net/dhcp/
H A DDhcpPacket.java250 byte[] destIpArray = destIp.getAddress();
251 byte[] srcIpArray = srcIp.getAddress();
306 buf.put(mClientIp.getAddress());
307 buf.put(mYourIp.getAddress());
308 buf.put(mNextIp.getAddress());
309 buf.put(mRelayIp.getAddress());
437 addTlv(buf, type, addr.getAddress());
450 buf.put(addr.getAddress());
/frameworks/base/telecomm/java/android/telecom/
H A DConnectionRequest.java84 public Uri getAddress() { return mAddress; } method in class:ConnectionRequest
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DConnection.java124 public String getAddress() { method in class:Connection
431 mAddress = c.getAddress();
604 str.append("addr: " + getAddress())

Completed in 7294 milliseconds

12345