Home
last modified time | relevance | path

Searched refs:isProfileReady (Results 1 – 21 of 21) sorted by relevance

/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/media/
DBluetoothMediaManagerTest.java169 when(mA2dpProfile.isProfileReady()).thenReturn(false); in starScan_a2dpAndHapProfileNotReady_shouldRegisterCallback()
170 when(mHapProfile.isProfileReady()).thenReturn(false); in starScan_a2dpAndHapProfileNotReady_shouldRegisterCallback()
184 when(mA2dpProfile.isProfileReady()).thenReturn(true); in starScan_a2dpAndHapProfileReady_shouldNotRegisterCallback()
185 when(mHapProfile.isProfileReady()).thenReturn(true); in starScan_a2dpAndHapProfileReady_shouldNotRegisterCallback()
199 when(mA2dpProfile.isProfileReady()).thenReturn(false); in onServiceConnected_a2dpAndHapProfileNotReady_doNothing()
200 when(mHapProfile.isProfileReady()).thenReturn(false); in onServiceConnected_a2dpAndHapProfileNotReady_doNothing()
215 when(mA2dpProfile.isProfileReady()).thenReturn(true); in onDeviceAttributesChanged_a2dpAndHapProfileReady_shouldUnregisterCallback()
216 when(mHapProfile.isProfileReady()).thenReturn(true); in onDeviceAttributesChanged_a2dpAndHapProfileReady_shouldUnregisterCallback()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DLocalBluetoothProfile.java59 boolean isProfileReady(); in isProfileReady() method
DLocalBluetoothProfileManager.java382 return profile.isProfileReady(); in isManagerReady()
386 return profile.isProfileReady(); in isManagerReady()
390 return profile.isProfileReady(); in isManagerReady()
400 if ((mA2dpSinkProfile != null) && (mA2dpSinkProfile.isProfileReady())) { in getA2dpSinkProfile()
412 if ((mHfpClientProfile != null) && (mHfpClientProfile.isProfileReady())) { in getHfpClientProfile()
DOppProfile.java62 public boolean isProfileReady() { in isProfileReady() method in OppProfile
DPbapServerProfile.java72 public boolean isProfileReady() { in isProfileReady() method in PbapServerProfile
DHidDeviceProfile.java87 public boolean isProfileReady() { in isProfileReady() method in HidDeviceProfile
DPanProfile.java67 public boolean isProfileReady() { in isProfileReady() method in PanProfile
DSapProfile.java89 public boolean isProfileReady() { in isProfileReady() method in SapProfile
DPbapClientProfile.java94 public boolean isProfileReady() { in isProfileReady() method in PbapClientProfile
DHidProfile.java78 public boolean isProfileReady() { in isProfileReady() method in HidProfile
DA2dpSinkProfile.java83 public boolean isProfileReady() { in isProfileReady() method in A2dpSinkProfile
DMapProfile.java90 public boolean isProfileReady() { in isProfileReady() method in MapProfile
DMapClientProfile.java91 public boolean isProfileReady() { in isProfileReady() method in MapClientProfile
DHfpClientProfile.java90 public boolean isProfileReady() { in isProfileReady() method in HfpClientProfile
DHeadsetProfile.java91 public boolean isProfileReady() { in isProfileReady() method in HeadsetProfile
DHearingAidProfile.java88 public boolean isProfileReady() { in isProfileReady() method in HearingAidProfile
DA2dpProfile.java90 public boolean isProfileReady() { in isProfileReady() method in A2dpProfile
DCachedBluetoothDevice.java849 if (profile.isProfileReady()) { in getConnectionSummary()
957 if (profile.isProfileReady()) { in getCarConnectionSummary()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
DCachedBluetoothDeviceManagerTest.java107 when(mHfpProfile.isProfileReady()).thenReturn(true); in setUp()
108 when(mA2dpProfile.isProfileReady()).thenReturn(true); in setUp()
109 when(mPanProfile.isProfileReady()).thenReturn(true); in setUp()
110 when(mHearingAidProfile.isProfileReady()).thenReturn(true); in setUp()
DCachedBluetoothDeviceTest.java79 when(mHfpProfile.isProfileReady()).thenReturn(true); in setUp()
80 when(mA2dpProfile.isProfileReady()).thenReturn(true); in setUp()
81 when(mPanProfile.isProfileReady()).thenReturn(true); in setUp()
82 when(mHearingAidProfile.isProfileReady()).thenReturn(true); in setUp()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/media/
DBluetoothMediaManager.java119 mIsA2dpProfileReady = a2dpProfile.isProfileReady(); in addConnectableA2dpDevices()
156 mIsHearingAidProfileReady = hapProfile.isProfileReady(); in addConnectableHearingAidDevices()