Home
last modified time | relevance | path

Searched refs:currentHfpDevice (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Car/Dialer/src/com/android/car/dialer/inject/
DHfpDataModules.java64 @Named("Hfp") LiveData<BluetoothDevice> currentHfpDevice) { in provideCallHistoryLiveData() argument
65 return LiveDataFunctions.switchMapNonNull(currentHfpDevice, in provideCallHistoryLiveData()
72 @Named("Hfp") LiveData<BluetoothDevice> currentHfpDevice) { in provideContactListLiveData()
73 return LiveDataFunctions.switchMapNonNull(currentHfpDevice, in provideContactListLiveData()
96 @Named("Hfp") LiveData<BluetoothDevice> currentHfpDevice, in provideBluetoothFavoriteContactListLiveData()
98 return LiveDataFunctions.switchMapNonNull(currentHfpDevice, in provideBluetoothFavoriteContactListLiveData()
106 @Named("Hfp") LiveData<BluetoothDevice> currentHfpDevice, in provideLocalFavoriteContactListLiveData()
108 return LiveDataFunctions.switchMapNonNull(currentHfpDevice, in provideLocalFavoriteContactListLiveData()
DBluetoothSingleHfpModule.java75 LiveData<BluetoothDevice> currentHfpDevice = Transformations.map(hfpDeviceListLiveData, in provideCurrentHfpDeviceLiveData() local
77 currentHfpDevice.observeForever( in provideCurrentHfpDeviceLiveData()
79 return currentHfpDevice; in provideCurrentHfpDeviceLiveData()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/
DToolbarTitleLiveData.java93 private void updateDeviceName(BluetoothDevice currentHfpDevice) { in updateDeviceName() argument
98 if (currentHfpDevice == null) { in updateDeviceName()
103 setValue(currentHfpDevice.getName()); in updateDeviceName()
DTelecomActivityViewModel.java124 LiveData<BluetoothDevice> currentHfpDevice) { in RefreshUiEvent() argument
125 mCurrentHfpDevice = currentHfpDevice; in RefreshUiEvent()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/common/
DContactResultsLiveData.java133 BluetoothDevice currentHfpDevice = mCurrentHfpDeviceLiveData.getValue(); in onQueryFinished() local
134 String accountName = currentHfpDevice == null ? null : currentHfpDevice.getAddress(); in onQueryFinished()
/packages/apps/Car/Dialer/framework/fake/src/com/android/car/dialer/framework/
DFakeModule.java71 LiveData<BluetoothDevice> currentHfpDevice = Transformations.map(hfpDeviceListLiveData, in provideCurrentHfpDeviceLiveData() local
73 return currentHfpDevice; in provideCurrentHfpDeviceLiveData()
/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
DInCallServiceImpl.java101 BluetoothDevice currentHfpDevice = mCurrentHfpDeviceLiveData.getValue(); in onCallAdded() local
103 mPhoneAccountManager.getMatchingPhoneAccount(currentHfpDevice); in onCallAdded()