Home
last modified time | relevance | path

Searched refs:civicLocation (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Wifi/framework/tests/src/android/net/wifi/rtt/
DCivicLocationTest.java102 CivicLocation civicLocation = new CivicLocation(sTestCivicLocationBuffer, null); in testCivicLocationNullCountryCode() local
104 boolean valid = civicLocation.isValid(); in testCivicLocationNullCountryCode()
114 CivicLocation civicLocation = new CivicLocation(sTestCivicLocationBuffer, "X"); in testCivicLocationCountryCodeTooShort() local
116 boolean valid = civicLocation.isValid(); in testCivicLocationCountryCodeTooShort()
126 CivicLocation civicLocation = new CivicLocation(sTestCivicLocationBuffer, "XYZ"); in testCivicLocationCountryCodeTooLong() local
128 boolean valid = civicLocation.isValid(); in testCivicLocationCountryCodeTooLong()
138 CivicLocation civicLocation = new CivicLocation(null, sUsCountryCode); in testCivicLocationNullBuffer() local
140 boolean valid = civicLocation.isValid(); in testCivicLocationNullBuffer()
150 CivicLocation civicLocation = new CivicLocation(sEmptyBuffer, sUsCountryCode); in testCivicLocationEmptyBuffer() local
152 boolean valid = civicLocation.isValid(); in testCivicLocationEmptyBuffer()
[all …]
/packages/modules/Wifi/framework/java/android/net/wifi/rtt/
DResponderLocation.java769 CivicLocation civicLocation = in parseSubelementLocationCivic() local
773 if (!civicLocation.isValid()) { in parseSubelementLocationCivic()
776 this.mCivicLocation = civicLocation; in parseSubelementLocationCivic()
777 mCivicLocationString = civicLocation.toString(); in parseSubelementLocationCivic()