Home
last modified time | relevance | path

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

/aosp12/frameworks/base/media/java/android/media/
H A DMediaMetrics.java681 final String propKey = getStringFromBuffer(buffer); in toBundle() local
684 bundle.putInt(propKey, buffer.getInt()); in toBundle()
687 bundle.putLong(propKey, buffer.getLong()); in toBundle()
690 bundle.putDouble(propKey, buffer.getDouble()); in toBundle()
693 bundle.putString(propKey, getStringFromBuffer(buffer)); in toBundle()
706 "Property " + propKey + " has unsupported type " + type); in toBundle()
/aosp12/frameworks/base/telephony/java/com/android/internal/telephony/
H A 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
/aosp12/packages/services/Car/car-test-lib/src/android/car/testapi/
H A DFakeCarPropertyService.java208 PropKey propKey = (PropKey) o; in equals() local
209 return mPropId == propKey.mPropId && mAreaId == propKey.mAreaId; in equals()
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionManager.java2452 public static void setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
2456 iSub.setSubscriptionProperty(subId, propKey, propValue); in setSubscriptionProperty()
2491 private static List<Uri> getContactsFromSubscriptionProperty(int subId, String propKey, in getContactsFromSubscriptionProperty() argument
2493 String result = getSubscriptionProperty(subId, propKey, context); in getContactsFromSubscriptionProperty()
2521 private static String getSubscriptionProperty(int subId, String propKey, in getSubscriptionProperty() argument
2527 resultValue = iSub.getSubscriptionProperty(subId, propKey, in getSubscriptionProperty()
2544 public static boolean getBooleanSubscriptionProperty(int subId, String propKey, in getBooleanSubscriptionProperty() argument
2546 String result = getSubscriptionProperty(subId, propKey, context); in getBooleanSubscriptionProperty()
2567 String result = getSubscriptionProperty(subId, propKey, context); in getIntegerSubscriptionProperty()
2586 public static long getLongSubscriptionProperty(int subId, String propKey, long defValue, in getLongSubscriptionProperty() argument
[all …]
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscriptionController.java2252 for (String propKey : GROUP_SHARING_PROPERTIES) { in syncGroupedSetting()
2261 int columnIndex = cursor.getColumnIndex(propKey); in copyDataFromCursorToContentValue()
2267 switch (propKey) { in copyDataFromCursorToContentValue()
2278 values.put(propKey, cursor.getInt(columnIndex)); in copyDataFromCursorToContentValue()
3179 subId, propKey, propValue, resolver); in setSubscriptionProperty()
3193 switch (propKey) { in setSubscriptionPropertyIntoContentResolver()
3217 value.put(propKey, Integer.parseInt(propValue)); in setSubscriptionPropertyIntoContentResolver()
3220 value.put(propKey, propValue); in setSubscriptionPropertyIntoContentResolver()
3247 return getSubscriptionProperty(subId, propKey); in getSubscriptionProperty()
3264 new String[]{propKey}, in getSubscriptionProperty() argument
[all …]
/aosp12/frameworks/opt/net/ims/src/java/com/android/ims/
H A 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()