Searched refs:appType (Results 1 - 8 of 8) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneSubInfo.java304 * @param appType ICC application family (@see com.android.internal.telephony.PhoneConstants#APPTYPE_xxx)
308 public String getIccSimChallengeResponse(int subId, int appType, String data) { argument
319 UiccCardApplication uiccApp = uiccCard.getApplicationByType(appType);
322 appType);
326 + "specified type -- " + appType);
339 appType);
H A DPhoneSubInfoProxy.java271 * @param appType ICC application type (@see com.android.internal.telephony.PhoneConstants#APPTYPE_xxx)
275 public String getIccSimChallengeResponse(int subId, int appType, String data) { argument
276 return mPhoneSubInfo.getIccSimChallengeResponse(subId, appType, data);
H A DPhoneSubInfoController.java271 public String getIccSimChallengeResponse(int subId, int appType, String data) argument
274 return phoneSubInfoProxy.getIccSimChallengeResponse(subId, appType, data);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIPhoneSubInfo.aidl198 * @param appType ICC application type (@see com.android.internal.telephony.PhoneConstants#APPTYPE_xxx)
202 String getIccSimChallengeResponse(int subId, int appType, String data);
/frameworks/base/packages/WAPPushManager/src/com/android/smspush/
H A DWapPushManager.java106 int appType; field in class:WapPushManager.WapPushManDBHelper.queryData
139 ret.appType = cur.getInt(cur.getColumnIndex("app_type"));
203 if (lastapp.appType == WapPushManagerParams.APP_TYPE_ACTIVITY) {
408 " lastapp.appType: " + lastapp.appType +
415 && lastapp.appType == app_type
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCardApplication.java567 * @param appType the app type
568 * @return authContext corresponding to the type or AUTH_CONTEXT_UNDEFINED if appType not
571 private static int getAuthContext(AppType appType) { argument
574 switch (appType) {
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java3400 * @see getIccSimChallengeResponse with appType=PhoneConstants.APPTYPE_ISIM
3420 * @param appType ICC application type (@see com.android.internal.telephony.PhoneConstants#APPTYPE_xxx)
3425 public String getIccSimChallengeResponse(int subId, int appType, String data) { argument
3430 return info.getIccSimChallengeResponse(subId, appType, data);
3442 * @param appType ICC application type (@see com.android.internal.telephony.PhoneConstants#APPTYPE_xxx)
3447 public String getIccSimChallengeResponse(int appType, String data) { argument
3448 return getIccSimChallengeResponse(getDefaultSubscription(), appType, data);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java9837 * First, try with appType = 2 => USIM according to
9840 int appType = 2;
9841 String tmResponse = tm.getIccSimChallengeResponse(appType, base64Challenge);
9844 * appType = 1 => SIM
9846 appType = 1;
9847 tmResponse = tm.getIccSimChallengeResponse(appType, base64Challenge);
9907 int appType = 2; // 2 => USIM
9908 tmResponse = tm.getIccSimChallengeResponse(appType, base64Challenge);

Completed in 314 milliseconds