Home
last modified time | relevance | path

Searched refs:Address (Results 1 – 25 of 55) sorted by relevance

123

/frameworks/base/core/tests/coretests/src/android/net/
DRouteInfoTest.java31 private InetAddress Address(String addr) { in Address() method in RouteInfoTest
50 r = new RouteInfo((IpPrefix) null, Address("2001:db8::1"), null); in testConstructor()
52 assertEquals(Address("2001:db8::1"), r.getGateway()); in testConstructor()
55 r = new RouteInfo((IpPrefix) null, Address("192.0.2.1"), "wlan0"); in testConstructor()
57 assertEquals(Address("192.0.2.1"), r.getGateway()); in testConstructor()
63 assertEquals(Address("::"), r.getGateway()); in testConstructor()
68 assertEquals(Address("0.0.0.0"), r.getGateway()); in testConstructor()
88 assertTrue(r.matches(Address("2001:db8:f00::ace:d00c"))); in testMatches()
89 assertTrue(r.matches(Address("2001:db8:f00::ace:d00d"))); in testMatches()
90 assertFalse(r.matches(Address("2001:db8:f00::ace:d00e"))); in testMatches()
[all …]
/frameworks/compile/mclinker/include/mcld/Fragment/
DRelocation.h31 typedef uint64_t Address; // FIXME: use SizeTrait<T>::Address instead typedef
42 Address pAddend,
62 Address pAddend = 0);
72 Address symValue() const;
75 Address addend() const in addend()
79 Address place() const;
105 void setAddend(Address pAddend);
123 Address m_Addend;
/frameworks/base/location/java/android/location/
DGeocoder.java20 import android.location.Address;
123 public List<Address> getFromLocation(double latitude, double longitude, int maxResults) in getFromLocation()
132 List<Address> results = new ArrayList<Address>(); in getFromLocation()
169 … public List<Address> getFromLocationName(String locationName, int maxResults) throws IOException { in getFromLocationName()
174 List<Address> results = new ArrayList<Address>(); in getFromLocationName()
223 public List<Address> getFromLocationName(String locationName, int maxResults, in getFromLocationName()
246 ArrayList<Address> result = new ArrayList<Address>(); in getFromLocationName()
DIGeocodeProvider.aidl19 import android.location.Address;
30 in GeocoderParams params, out List<Address> addrs); in getFromLocation()
35 in GeocoderParams params, out List<Address> addrs); in getFromLocationName()
DAddress.java34 public class Address implements Parcelable { class
63 public Address(Locale locale) { in Address() method in Address
475 public static final Parcelable.Creator<Address> CREATOR =
476 new Parcelable.Creator<Address>() {
477 public Address createFromParcel(Parcel in) {
483 Address a = new Address(locale);
524 public Address[] newArray(int size) {
525 return new Address[size];
DILocationManager.aidl20 import android.location.Address;
56 in GeocoderParams params, out List<Address> addrs); in getFromLocation()
60 in GeocoderParams params, out List<Address> addrs); in getFromLocationName()
DAddress.aidl19 parcelable Address;
/frameworks/base/location/lib/java/com/android/location/provider/
DGeocodeProvider.java21 import android.location.Address;
41 GeocoderParams params, List<Address> addrs) {
49 GeocoderParams params, List<Address> addrs) {
62 GeocoderParams params, List<Address> addrs); in onGetFromLocation()
72 GeocoderParams params, List<Address> addrs); in onGetFromLocationName()
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64RelocationHelpers.h33 static inline Relocator::Address
34 helper_get_page_address(Relocator::Address pValue) in helper_get_page_address()
36 return (pValue & ~ (Relocator::Address) 0xFFF); in helper_get_page_address()
39 static inline Relocator::Address
40 helper_get_page_offset(Relocator::Address pValue) in helper_get_page_offset()
42 return (pValue & (Relocator::Address) 0xFFF); in helper_get_page_offset()
96 static inline Relocator::Address
164 static inline Relocator::Address
172 static inline Relocator::Address
DAArch64Relocator.cpp477 Relocator::Address S = pReloc.symValue(); in rel()
510 Relocator::Address value = 0x0; in add_abs_lo12()
511 Relocator::Address S = pReloc.symValue(); in add_abs_lo12()
526 Relocator::Address S = pReloc.symValue(); in adr_prel_pg_hi21()
557 Relocator::Address S = pReloc.symValue(); in call()
559 Relocator::Address P = pReloc.place(); in call()
588 Relocator::Address S = pReloc.symValue(); in condbr()
590 Relocator::Address P = pReloc.place(); in condbr()
611 Relocator::Address GOT_S = helper_get_GOT_address(*pReloc.symInfo(), pParent); in adr_got_page()
613 Relocator::Address P = pReloc.place(); in adr_got_page()
[all …]
/frameworks/rs/scriptc/
Drs_atomic.rsh32 * @param addr Address of value to increment
42 * @param addr Address of value to decrement
52 * @param addr Address of value to modify
63 * @param addr Address of value to modify
74 * @param addr Address of value to modify
85 * @param addr Address of value to modify
96 * @param addr Address of value to modify
108 * @param addr Address of value to modify
119 * @param addr Address of value to modify
131 * @param addr Address of value to modify
[all …]
/frameworks/compile/mclinker/lib/Fragment/
DRelocation.cpp49 Relocation* Relocation::Create(Type pType, FragmentRef& pFragRef, Address pAddend) in Create()
70 Relocation::Address pAddend, in Relocation()
85 Relocation::Address Relocation::place() const in place()
87 Address sect_addr = m_TargetAddress.frag()->getParent()->getSection().addr(); in place()
91 Relocation::Address Relocation::symValue() const in symValue()
138 void Relocation::setAddend(Address pAddend) in setAddend()
/frameworks/base/location/tests/locationtests/src/android/location/
DGeocoderTest.java19 import android.location.Address;
38 List<Address> addresses1 = g.getFromLocation(37.435067, -122.166767, 2); in testGeocoder()
42 Address addr = addresses1.get(0); in testGeocoder()
49 List<Address> addresses2 = g.getFromLocationName("San Francisco, CA", 1); in testGeocoder()
/frameworks/compile/mclinker/include/mcld/LD/
DRelocationFactory.h29 typedef Relocation::Address Address; typedef
45 Address pAddend = 0);
DRelocator.h30 typedef Relocation::Address Address; typedef
/frameworks/compile/mclinker/lib/LD/
DEhFrameHdr.cpp28 typedef std::pair<SizeTraits<32>::Address, SizeTraits<32>::Address> Entry;
88 SizeTraits<32>::Address fde_pc; in emitOutput()
89 SizeTraits<32>::Address fde_addr; in emitOutput()
170 SizeTraits<32>::Address pc = 0x0; in computePCBegin()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocator.cpp82 Relocator::Address helper_get_GOT_address(ResolveInfo& pSym, in helper_get_GOT_address()
128 Relocator::Address helper_GOT_ORG(ARMRelocator& pParent) in helper_GOT_ORG()
134 Relocator::Address helper_get_PLT_address(ResolveInfo& pSym, in helper_get_PLT_address()
879 Relocator::Address S = pReloc.symValue(); in rel32()
914 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in gotoff32()
915 Relocator::Address S = pReloc.symValue(); in gotoff32()
929 Relocator::Address GOT_S = helper_get_GOT_address(*pReloc.symInfo(), pParent); in got_brel()
931 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in got_brel()
948 Relocator::Address GOT_S = helper_get_GOT_address(*pReloc.symInfo(), pParent); in got_prel()
950 Relocator::Address P = pReloc.place(); in got_prel()
[all …]
/frameworks/base/services/core/java/com/android/server/location/
DGeocoderProxy.java20 import android.location.Address;
75 GeocoderParams params, List<Address> addrs) { in getFromLocation()
90 GeocoderParams params, List<Address> addrs) { in getFromLocationName()
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsRelocator.h85 Address getGPAddress();
89 Address getGP0();
101 Address getGOTOffset(MipsRelocationInfo& pReloc);
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonRelocator.cpp85 static Relocator::Address helper_get_GOT_address(ResolveInfo &pSym, in helper_get_GOT_address()
115 static Relocator::Address helper_get_PLT_address(ResolveInfo& pSym, in helper_get_PLT_address()
491 Relocator::Address S = pReloc.symValue(); in applyAbs()
682 Relocator::Address S = pReloc.symValue(); in relocAbs()
724 Relocator::Address S = pReloc.symValue(); in relocPCREL()
753 Relocator::Address S = pReloc.symValue(); in relocGPREL()
805 Relocator::Address PLT_S; in relocPLTB22PCREL()
810 Relocator::Address P = pReloc.place(); in relocPLTB22PCREL()
831 Relocator::Address GOT_S = in relocGOT()
833 Relocator::Address GOT = pParent.getTarget().getGOTSymbolAddr(); in relocGOT()
[all …]
/frameworks/compile/mclinker/lib/Target/X86/
DX86Relocator.cpp99 Relocator::Address helper_GOT_ORG(X86_32Relocator& pParent) in helper_GOT_ORG()
105 Relocator::Address helper_get_GOT_address(Relocation& pReloc, in helper_get_GOT_address()
138 static Relocator::Address
962 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in gotoff32()
963 Relocator::Address S = pReloc.symValue(); in gotoff32()
973 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in gotpc32()
993 Relocator::Address GOT_S = helper_get_GOT_address(pReloc, pParent); in got32()
995 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in got32()
1005 Relocator::Address PLT_S; in plt32()
1011 Relocator::Address P = pReloc.place(); in plt32()
[all …]
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipProfile.java30 import javax.sip.address.Address;
53 private Address mAddress;
312 mAddress = (Address) in.readSerializable(); in SipProfile()
376 public Address getSipAddress() { in getSipAddress()
/frameworks/base/docs/html/training/location/
Ddisplay-address.jd1 page.title=Displaying a Location Address
14 <li><a href="#DefineTask">Define the Address Lookup Task</a></li>
55 <strong>Note:</strong> Address lookup requires a backend service that is not included in the
69 <h2 id="DefineTask">Define the Address Lookup Task</h2>
150 List&lt;Address&gt; addresses = null;
176 Address address = addresses.get(0);
241 following snippet starts the address lookup when the user clicks the "Get Address" button:
247 * The "Get Address" button in the UI is defined with
/frameworks/compile/mclinker/include/mcld/Support/
DSystemUtils.h19 typedef uint8_t* Address; typedef
DMemoryRegion.h18 typedef NonConstTraits<uint8_t>::pointer Address; typedef

123