Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/com/android/internal/telephony/
DISub.aidl280 int setSubscriptionProperty(int subId, String propKey, String propValue); in setSubscriptionProperty() argument
282 String getSubscriptionProperty(int subId, String propKey, String callingPackage, in getSubscriptionProperty() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionController.java1845 for (String propKey : GROUP_SHARING_PROPERTIES) { in syncGroupedSetting()
1846 copyDataFromCursorToContentValue(propKey, cursor, values); in syncGroupedSetting()
1852 private void copyDataFromCursorToContentValue(String propKey, Cursor cursor, in copyDataFromCursorToContentValue() argument
1854 int columnIndex = cursor.getColumnIndex(propKey); in copyDataFromCursorToContentValue()
1856 logd("[copyDataFromCursorToContentValue] can't find column " + propKey); in copyDataFromCursorToContentValue()
1860 switch (propKey) { in copyDataFromCursorToContentValue()
1869 values.put(propKey, cursor.getInt(columnIndex)); in copyDataFromCursorToContentValue()
1873 values.put(propKey, cursor.getString(columnIndex)); in copyDataFromCursorToContentValue()
1876 loge("[copyDataFromCursorToContentValue] invalid propKey " + propKey); in copyDataFromCursorToContentValue()
2729 public int setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
[all …]
/frameworks/base/telephony/java/android/telephony/
DSubscriptionManager.java2283 public static void setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
2287 iSub.setSubscriptionProperty(subId, propKey, propValue); in setSubscriptionProperty()
2301 private static String getSubscriptionProperty(int subId, String propKey, in getSubscriptionProperty() argument
2307 resultValue = iSub.getSubscriptionProperty(subId, propKey, in getSubscriptionProperty()
2324 public static boolean getBooleanSubscriptionProperty(int subId, String propKey, in getBooleanSubscriptionProperty() argument
2326 String result = getSubscriptionProperty(subId, propKey, context); in getBooleanSubscriptionProperty()
2345 public static int getIntegerSubscriptionProperty(int subId, String propKey, int defValue, in getIntegerSubscriptionProperty() argument
2347 String result = getSubscriptionProperty(subId, propKey, context); in getIntegerSubscriptionProperty()
2366 public static long getLongSubscriptionProperty(int subId, String propKey, long defValue, in getLongSubscriptionProperty() argument
2368 String result = getSubscriptionProperty(subId, propKey, context); in getLongSubscriptionProperty()