Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPhoneSubInfo.java308 public String getIccSimChallengeResponse(int subId, int appType, String data) { in getIccSimChallengeResponse() argument
319 UiccCardApplication uiccApp = uiccCard.getApplicationByType(appType); in getIccSimChallengeResponse()
322 appType); in getIccSimChallengeResponse()
326 + "specified type -- " + appType); in getIccSimChallengeResponse()
339 appType); in getIccSimChallengeResponse()
DPhoneSubInfoProxy.java275 public String getIccSimChallengeResponse(int subId, int appType, String data) { in getIccSimChallengeResponse() argument
276 return mPhoneSubInfo.getIccSimChallengeResponse(subId, appType, data); in getIccSimChallengeResponse()
DPhoneSubInfoController.java271 public String getIccSimChallengeResponse(int subId, int appType, String data) in getIccSimChallengeResponse() argument
274 return phoneSubInfoProxy.getIccSimChallengeResponse(subId, appType, data); in getIccSimChallengeResponse()
/frameworks/base/packages/WAPPushManager/src/com/android/smspush/
DWapPushManager.java106 int appType; field in WapPushManager.WapPushManDBHelper.queryData
139 ret.appType = cur.getInt(cur.getColumnIndex("app_type")); in queryLastApp()
203 if (lastapp.appType == WapPushManagerParams.APP_TYPE_ACTIVITY) { in processMessage()
408 " lastapp.appType: " + lastapp.appType + in verifyData()
415 && lastapp.appType == app_type in verifyData()
/frameworks/base/telephony/java/com/android/internal/telephony/
DIPhoneSubInfo.aidl202 String getIccSimChallengeResponse(int subId, int appType, String data); in getIccSimChallengeResponse() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccCardApplication.java571 private static int getAuthContext(AppType appType) { in getAuthContext() argument
574 switch (appType) { in getAuthContext()
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java3425 public String getIccSimChallengeResponse(int subId, int appType, String data) { in getIccSimChallengeResponse() argument
3430 return info.getIccSimChallengeResponse(subId, appType, data); in getIccSimChallengeResponse()
3447 public String getIccSimChallengeResponse(int appType, String data) { in getIccSimChallengeResponse() argument
3448 return getIccSimChallengeResponse(getDefaultSubscription(), appType, data); in getIccSimChallengeResponse()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiStateMachine.java9840 int appType = 2; in handleGsmAuthRequest() local
9841 String tmResponse = tm.getIccSimChallengeResponse(appType, base64Challenge); in handleGsmAuthRequest()
9846 appType = 1; in handleGsmAuthRequest()
9847 tmResponse = tm.getIccSimChallengeResponse(appType, base64Challenge); in handleGsmAuthRequest()
9907 int appType = 2; // 2 => USIM in handle3GAuthRequest() local
9908 tmResponse = tm.getIccSimChallengeResponse(appType, base64Challenge); in handle3GAuthRequest()