summaryrefslogtreecommitdiffstats
path: root/telephony/java/com
diff options
context:
space:
mode:
authorJohn Huang <jsh@android.com>2013-12-05 01:12:12 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2013-12-05 01:12:12 +0000
commit66a9ebfd2fba0b94d84c6bf7bf98b9db7f9fb3b3 (patch)
tree0d15e12f21f79606e4a617fb896a336d90432aba /telephony/java/com
parentd5967e777e977d66f716dbf935e16c2b5f51ec6f (diff)
parentc91c7b4b5d61e2121cd60c5c27a6a8df0ecf155e (diff)
downloadframeworks_base-66a9ebfd2fba0b94d84c6bf7bf98b9db7f9fb3b3.zip
frameworks_base-66a9ebfd2fba0b94d84c6bf7bf98b9db7f9fb3b3.tar.gz
frameworks_base-66a9ebfd2fba0b94d84c6bf7bf98b9db7f9fb3b3.tar.bz2
am c91c7b4b: am 2e12e052: Merge "RIL changes for supporting generic SIM communication."
* commit 'c91c7b4b5d61e2121cd60c5c27a6a8df0ecf155e': RIL changes for supporting generic SIM communication.
Diffstat (limited to 'telephony/java/com')
-rw-r--r--telephony/java/com/android/internal/telephony/RILConstants.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java
index 821a11c..8e445d9 100644
--- a/telephony/java/com/android/internal/telephony/RILConstants.java
+++ b/telephony/java/com/android/internal/telephony/RILConstants.java
@@ -55,6 +55,8 @@ public interface RILConstants {
int ILLEGAL_SIM_OR_ME = 15; /* network selection failure due
to wrong SIM/ME and no
retries needed */
+ int MISSING_RESOURCE = 16; /* no logical channel available */
+ int NO_SUCH_ELEMENT = 17; /* application not found on SIM */
/* NETWORK_MODE_* See ril.h RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE */
int NETWORK_MODE_WCDMA_PREF = 0; /* GSM/WCDMA (WCDMA preferred) */
@@ -265,6 +267,10 @@ cat include/telephony/ril.h | \
int RIL_REQUEST_SET_INITIAL_ATTACH_APN = 111;
int RIL_REQUEST_IMS_REGISTRATION_STATE = 112;
int RIL_REQUEST_IMS_SEND_SMS = 113;
+ int RIL_REQUEST_SIM_TRANSMIT_APDU_BASIC = 114;
+ int RIL_REQUEST_SIM_OPEN_CHANNEL = 115;
+ int RIL_REQUEST_SIM_CLOSE_CHANNEL = 116;
+ int RIL_REQUEST_SIM_TRANSMIT_APDU_CHANNEL = 117;
int RIL_UNSOL_RESPONSE_BASE = 1000;
int RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED = 1000;
int RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED = 1001;