Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
DMediaMetrics.java679 final String propKey = getStringFromBuffer(buffer); in toBundle() local
682 bundle.putInt(propKey, buffer.getInt()); in toBundle()
685 bundle.putLong(propKey, buffer.getLong()); in toBundle()
688 bundle.putDouble(propKey, buffer.getDouble()); in toBundle()
691 bundle.putString(propKey, getStringFromBuffer(buffer)); in toBundle()
704 "Property " + propKey + " has unsupported type " + type); in toBundle()
/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/base/telephony/java/android/telephony/
DSubscriptionManager.java2443 public static void setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
2447 iSub.setSubscriptionProperty(subId, propKey, propValue); in setSubscriptionProperty()
2482 private static List<Uri> getContactsFromSubscriptionProperty(int subId, String propKey, in getContactsFromSubscriptionProperty() argument
2484 String result = getSubscriptionProperty(subId, propKey, context); in getContactsFromSubscriptionProperty()
2512 private static String getSubscriptionProperty(int subId, String propKey, in getSubscriptionProperty() argument
2518 resultValue = iSub.getSubscriptionProperty(subId, propKey, in getSubscriptionProperty()
2535 public static boolean getBooleanSubscriptionProperty(int subId, String propKey, in getBooleanSubscriptionProperty() argument
2537 String result = getSubscriptionProperty(subId, propKey, context); in getBooleanSubscriptionProperty()
2556 public static int getIntegerSubscriptionProperty(int subId, String propKey, int defValue, in getIntegerSubscriptionProperty() argument
2558 String result = getSubscriptionProperty(subId, propKey, context); in getIntegerSubscriptionProperty()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionController.java2232 for (String propKey : GROUP_SHARING_PROPERTIES) { in syncGroupedSetting()
2233 copyDataFromCursorToContentValue(propKey, cursor, values); in syncGroupedSetting()
2239 private void copyDataFromCursorToContentValue(String propKey, Cursor cursor, in copyDataFromCursorToContentValue() argument
2241 int columnIndex = cursor.getColumnIndex(propKey); in copyDataFromCursorToContentValue()
2243 logd("[copyDataFromCursorToContentValue] can't find column " + propKey); in copyDataFromCursorToContentValue()
2247 switch (propKey) { in copyDataFromCursorToContentValue()
2257 values.put(propKey, cursor.getInt(columnIndex)); in copyDataFromCursorToContentValue()
2261 values.put(propKey, cursor.getString(columnIndex)); in copyDataFromCursorToContentValue()
2264 loge("[copyDataFromCursorToContentValue] invalid propKey " + propKey); in copyDataFromCursorToContentValue()
3150 public int setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
[all …]
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsManager.java256 int getIntegerSubscriptionProperty(int subId, String propKey, int defValue); in getIntegerSubscriptionProperty() argument
257 void setSubscriptionProperty(int subId, String propKey, String propValue); in setSubscriptionProperty() argument
299 public int getIntegerSubscriptionProperty(int subId, String propKey, int defValue) { in getIntegerSubscriptionProperty() argument
300 return SubscriptionManager.getIntegerSubscriptionProperty(subId, propKey, defValue, in getIntegerSubscriptionProperty()
305 public void setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
306 SubscriptionManager.setSubscriptionProperty(subId, propKey, propValue); in setSubscriptionProperty()