Searched defs:appType (Results 1 - 7 of 7) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscription.java50 public String appType; field in class:Subscription
81 + ", appType = " + appType
94 && ((TextUtils.isEmpty(appType) && TextUtils.isEmpty(sub.appType))
95 || TextUtils.equals(appType, sub.appType))
119 + ":" + appType
124 + ":" + sub.appType
131 && ((TextUtils.isEmpty(appType)
[all...]
H A DPhoneSubInfo.java268 * @param appType ICC application family (@see com.android.internal.telephony.PhoneConstants#APPTYPE_xxx)
272 public String getIccSimChallengeResponse(long subId, int appType, String data) { argument
283 UiccCardApplication uiccApp = uiccCard.getApplicationByType(appType);
286 appType);
290 + "specified type -- " + appType);
303 appType);
H A DPhoneSubInfoController.java263 public String getIccSimChallengeResponse(long subId, int appType, String data) argument
266 return phoneSubInfoProxy.getIccSimChallengeResponse(subId, appType, data);
H A DPhoneSubInfoProxy.java252 * @param appType ICC application type (@see com.android.internal.telephony.PhoneConstants#APPTYPE_xxx)
256 public String getIccSimChallengeResponse(long subId, int appType, String data) { argument
257 return mPhoneSubInfo.getIccSimChallengeResponse(subId, appType, 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.java559 * @param appType the app type
560 * @return authContext corresponding to the type or AUTH_CONTEXT_UNDEFINED if appType not
563 private static int getAuthContext(AppType appType) { argument
566 switch (appType) {
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java2832 * @see getIccSimChallengeResponse with appType=PhoneConstants.APPTYPE_ISIM
2849 * @param appType ICC application type (@see com.android.internal.telephony.PhoneConstants#APPTYPE_xxx)
2854 public String getIccSimChallengeResponse(long subId, int appType, String data) { argument
2856 return getSubscriberInfo().getIccSimChallengeResponse(subId, appType, data);
2868 * @param appType ICC application type (@see com.android.internal.telephony.PhoneConstants#APPTYPE_xxx)
2873 public String getIccSimChallengeResponse(int appType, String data) { argument
2874 return getIccSimChallengeResponse(getDefaultSubscription(), appType, data);

Completed in 529 milliseconds