HomeSort by relevance Sort by last modified time
    Searched refs:isFilterMatched (Results 1 - 5 of 5) sorted by null

  /packages/apps/Settings/src/com/android/settings/bluetooth/
AvailableMediaBluetoothDeviceUpdater.java 70 if (isFilterMatched(cachedDevice)) {
81 public boolean isFilterMatched(CachedBluetoothDevice cachedDevice) {
95 boolean isFilterMatched = false;
98 Log.d(TAG, "isFilterMatched() current audio profile : " + currentAudioProfile);
108 isFilterMatched = cachedDevice.isA2dpDevice();
111 isFilterMatched = cachedDevice.isHfpDevice();
115 Log.d(TAG, "isFilterMatched() device : " +
116 cachedDevice.getName() + ", isFilterMatched : " + isFilterMatched);
119 return isFilterMatched;
    [all...]
ConnectedBluetoothDeviceUpdater.java 70 if (isFilterMatched(cachedDevice)) {
81 public boolean isFilterMatched(CachedBluetoothDevice cachedDevice) {
95 boolean isFilterMatched = false;
98 Log.d(TAG, "isFilterMatched() current audio profile : " + currentAudioProfile);
109 isFilterMatched = !cachedDevice.isA2dpDevice();
112 isFilterMatched = !cachedDevice.isHfpDevice();
116 Log.d(TAG, "isFilterMatched() device : " +
117 cachedDevice.getName() + ", isFilterMatched : " + isFilterMatched);
120 return isFilterMatched;
    [all...]
SavedBluetoothDeviceUpdater.java 60 public boolean isFilterMatched(CachedBluetoothDevice cachedDevice) {
BluetoothDeviceUpdater.java 178 public abstract boolean isFilterMatched(CachedBluetoothDevice cachedBluetoothDevice);
184 if (isFilterMatched(cachedBluetoothDevice)) {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
BluetoothDeviceUpdaterTest.java 91 public boolean isFilterMatched(CachedBluetoothDevice cachedBluetoothDevice) {

Completed in 80 milliseconds