Searched refs:CivicLocation (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Wifi/framework/tests/src/android/net/wifi/rtt/ |
D | CivicLocationTest.java | 102 CivicLocation civicLocation = new CivicLocation(sTestCivicLocationBuffer, null); in testCivicLocationNullCountryCode() 114 CivicLocation civicLocation = new CivicLocation(sTestCivicLocationBuffer, "X"); in testCivicLocationCountryCodeTooShort() 126 CivicLocation civicLocation = new CivicLocation(sTestCivicLocationBuffer, "XYZ"); in testCivicLocationCountryCodeTooLong() 138 CivicLocation civicLocation = new CivicLocation(null, sUsCountryCode); in testCivicLocationNullBuffer() 150 CivicLocation civicLocation = new CivicLocation(sEmptyBuffer, sUsCountryCode); in testCivicLocationEmptyBuffer() 162 CivicLocation civicLocation = new CivicLocation(sTestCivicLocationBuffer, sUsCountryCode); in testCivicLocationValid() 174 CivicLocation civicLocation = new CivicLocation(sTestCivicLocationBuffer, sUsCountryCode); in testCivicLocationToString() 186 CivicLocation civicLocation = new CivicLocation(sTestCivicLocationBuffer, sUsCountryCode); in testCivicLocationgetElementValue() 204 CivicLocation civicLocation = in testCivicLocationToAddress() 205 new CivicLocation(sTestCivicLocationBufferWithAddress, sUsCountryCode); in testCivicLocationToAddress() [all …]
|
/packages/modules/Wifi/framework/java/android/net/wifi/rtt/ |
D | CivicLocation.java | 42 public final class CivicLocation implements Parcelable { class 73 public CivicLocation(@Nullable byte[] civicTLVs, @Nullable String countryCode) { in CivicLocation() method in CivicLocation 89 private CivicLocation(Parcel in) { in CivicLocation() method in CivicLocation 95 …c static final @android.annotation.NonNull Creator<CivicLocation> CREATOR = new Creator<CivicLocat… 97 public CivicLocation createFromParcel(Parcel in) { 98 return new CivicLocation(in); 102 public CivicLocation[] newArray(int size) { 103 return new CivicLocation[size]; 258 if (!(obj instanceof CivicLocation)) { in equals() 261 CivicLocation other = (CivicLocation) obj; in equals()
|
D | ResponderLocation.java | 294 private CivicLocation mCivicLocation; 769 CivicLocation civicLocation = in parseSubelementLocationCivic() 770 new CivicLocation( in parseSubelementLocationCivic()
|