Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/pbap/
DBluetoothPbapConfigTest.java58 BluetoothPbapConfig.init(mContext); in testInit_whenUseProfileForOwnerVcardIsTrue()
59 assertThat(BluetoothPbapConfig.useProfileForOwnerVcard()).isTrue(); in testInit_whenUseProfileForOwnerVcardIsTrue()
66 BluetoothPbapConfig.init(mContext); in testInit_whenUseProfileForOwnerVcardIsFalse()
67 assertThat(BluetoothPbapConfig.useProfileForOwnerVcard()).isFalse(); in testInit_whenUseProfileForOwnerVcardIsFalse()
75 BluetoothPbapConfig.init(mContext); in testInit_whenUseProfileForOwnerVcardThrowsException()
83 BluetoothPbapConfig.init(mContext); in testInit_whenIncludePhotosInVcardIsTrue()
84 assertThat(BluetoothPbapConfig.includePhotosInVcard()).isTrue(); in testInit_whenIncludePhotosInVcardIsTrue()
91 BluetoothPbapConfig.init(mContext); in testInit_whenIncludePhotosInVcardIsFalse()
92 assertThat(BluetoothPbapConfig.includePhotosInVcard()).isFalse(); in testInit_whenIncludePhotosInVcardIsFalse()
100 BluetoothPbapConfig.init(mContext); in testInit_whenIncludePhotosInVcardThrowsException()
DBluetoothPbapVcardManagerTest.java81 BluetoothPbapConfig.setIncludePhotosInVcard(true); in testGetOwnerPhoneNumberVcard_whenUseProfileForOwnerVcard()
89 BluetoothPbapConfig.setIncludePhotosInVcard(false); in testGetOwnerPhoneNumberVcard_whenNotUseProfileForOwnerVcard()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbap/
DBluetoothPbapConfig.java30 public class BluetoothPbapConfig { class
DBluetoothPbapVcardManager.java106 if (!BluetoothPbapConfig.includePhotosInVcard()) { in getOwnerPhoneNumberVcardFromProfile()
115 if (BluetoothPbapConfig.useProfileForOwnerVcard()) { in getOwnerPhoneNumberVcard()
287 if (BluetoothPbapConfig.useProfileForOwnerVcard()) { in getPhonebookNameList()
376 if (BluetoothPbapConfig.useProfileForOwnerVcard()) { in getSelectedPhonebookNameList()
DBluetoothPbapUtils.java136 BluetoothPbapConfig.includePhotosInVcard() in createFilteredVCardComposer()
DBluetoothPbapService.java741 BluetoothPbapConfig.init(this); in start()