Home
last modified time | relevance | path

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

/platform_testing/libraries/telephony-utility/src/android/telephony/utility/
DSimCardUtil.java86 Bundle returnBundle = new Bundle(); in getSimCardInformation() local
89 returnBundle.putInt(SIM_STATE, state); in getSimCardInformation()
93 returnBundle.putBoolean(CARRIER_PRIVILEGES, carrierPrivileges); in getSimCardInformation()
99 returnBundle.putBoolean(SECURED_ELEMENT, reader.isSecureElementPresent()); in getSimCardInformation()
100 returnBundle.putBoolean(SE_SERVICE, reader.getSEService() != null ? true : false); in getSimCardInformation()
103 returnBundle.putBoolean(SECURED_ELEMENT, false); in getSimCardInformation()
104 returnBundle.putBoolean(SE_SERVICE, false); in getSimCardInformation()
106 SendToInstrumentation.sendBundle(instrumentation, returnBundle); in getSimCardInformation()