Home
last modified time | relevance | path

Searched refs:rat (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/telephony/current/mockmodem/src/android/telephony/mockmodem/
DMockNetworkService.java201 int rat = android.hardware.radio.RadioTechnology.UNKNOWN; in getPrimaryCellRat() local
209 rat = android.hardware.radio.RadioTechnology.HSPA; in getPrimaryCellRat()
212 rat = android.hardware.radio.RadioTechnology.LTE; in getPrimaryCellRat()
220 return rat; in getPrimaryCellRat()
274 int rat; in getHighestRatFromNetworkType() local
279 rat = ServiceState.RIL_RADIO_TECHNOLOGY_HSPA; in getHighestRatFromNetworkType()
282 rat = ServiceState.RIL_RADIO_TECHNOLOGY_GSM; in getHighestRatFromNetworkType()
285 rat = ServiceState.RIL_RADIO_TECHNOLOGY_HSPA; in getHighestRatFromNetworkType()
288 rat = ServiceState.RIL_RADIO_TECHNOLOGY_HSPA; in getHighestRatFromNetworkType()
291 rat = ServiceState.RIL_RADIO_TECHNOLOGY_IS95A; in getHighestRatFromNetworkType()
[all …]
DIRadioNetworkImpl.java440 dataRegResponse.rat = mServiceState.getRegistrationRat(); in getDataRegistrationState()
550 int rat; in getVoiceRadioTechnology() local
553 rat = mServiceState.getRegistrationRat(); in getVoiceRadioTechnology()
558 mRadioNetworkResponse.getVoiceRadioTechnologyResponse(rsp, rat); in getVoiceRadioTechnology()
577 voiceRegResponse.rat = mServiceState.getRegistrationRat(); in getVoiceRegistrationState()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
DCameraMetadataGetter.java248 private static Object serializeRational(Rational rat) throws org.json.JSONException { in serializeRational() argument
250 ratObj.put("numerator", rat.getNumerator()); in serializeRational()
251 ratObj.put("denominator", rat.getDenominator()); in serializeRational()
/cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
DCameraDeviceInfo.java109 Rational rat, String protoName) throws Exception { in storeRational() argument
115 mStore.addResult("numerator", rat.getNumerator()); in storeRational()
116 mStore.addResult("denominator", rat.getDenominator()); in storeRational()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
DItsSerializer.java73 private static Object serializeRational(Rational rat) throws org.json.JSONException { in serializeRational() argument
75 ratObj.put("numerator", rat.getNumerator()); in serializeRational()
76 ratObj.put("denominator", rat.getDenominator()); in serializeRational()