Home
last modified time | relevance | path

Searched refs:sLeAudioSupportedStateCache (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/development/
DBluetoothLeAudioDeviceDetailsPreferenceControllerTest.java80 mController.sLeAudioSupportedStateCache = BluetoothStatusCodes.FEATURE_SUPPORTED; in onPreferenceChanged_settingEnabled_shouldTurnOnLeAudioDeviceDetailSetting()
89 mController.sLeAudioSupportedStateCache = BluetoothStatusCodes.FEATURE_SUPPORTED; in onPreferenceChanged_settingDisabled_shouldTurnOffLeAudioDeviceDetailSetting()
98 mController.sLeAudioSupportedStateCache = BluetoothStatusCodes.FEATURE_SUPPORTED; in updateState_settingEnabled_preferenceShouldBeChecked()
107 mController.sLeAudioSupportedStateCache = BluetoothStatusCodes.FEATURE_SUPPORTED; in updateState_settingDisabled_preferenceShouldNotBeChecked()
117 mController.sLeAudioSupportedStateCache = BluetoothStatusCodes.ERROR_UNKNOWN; in isAvailable_leAudioSupported()
126 mController.sLeAudioSupportedStateCache = BluetoothStatusCodes.ERROR_UNKNOWN; in isAvailable_leAudioNotSupported()
/packages/apps/Settings/src/com/android/settings/development/
DBluetoothLeAudioDeviceDetailsPreferenceController.java44 static int sLeAudioSupportedStateCache = BluetoothStatusCodes.ERROR_UNKNOWN; field in BluetoothLeAudioDeviceDetailsPreferenceController
67 if (sLeAudioSupportedStateCache == BluetoothStatusCodes.ERROR_UNKNOWN in isAvailable()
71 sLeAudioSupportedStateCache = isLeAudioSupported; in isAvailable()
77 && (sLeAudioSupportedStateCache == BluetoothStatusCodes.FEATURE_SUPPORTED); in isAvailable()