Home
last modified time | relevance | path

Searched refs:bluetooth_device (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/system/audio_bluetooth_hw/
Daudio_bluetooth_hw.cc45 auto* bluetooth_device = reinterpret_cast<BluetoothAudioDevice*>(dev); in adev_set_parameters() local
46 std::lock_guard<std::mutex> guard(bluetooth_device->mutex_); in adev_set_parameters()
47 for (auto sout : bluetooth_device->opened_stream_outs_) { in adev_set_parameters()
126 auto* bluetooth_device = reinterpret_cast<BluetoothAudioDevice*>(device); in adev_create_audio_patch() local
127 std::lock_guard<std::mutex> guard(bluetooth_device->mutex_); in adev_create_audio_patch()
129 *handle = ++bluetooth_device->next_unique_id; in adev_create_audio_patch()
165 auto* bluetooth_device = reinterpret_cast<BluetoothAudioDevice*>(device); in adev_close() local
166 delete bluetooth_device; in adev_close()
Dstream_apis.cc830 auto* bluetooth_device = reinterpret_cast<BluetoothAudioDevice*>(dev); in adev_open_output_stream() local
831 std::lock_guard<std::mutex> guard(bluetooth_device->mutex_); in adev_open_output_stream()
832 bluetooth_device->opened_stream_outs_.push_back(out_ptr); in adev_open_output_stream()
852 auto* bluetooth_device = reinterpret_cast<BluetoothAudioDevice*>(dev); in adev_close_output_stream() local
853 std::lock_guard<std::mutex> guard(bluetooth_device->mutex_); in adev_close_output_stream()
854 bluetooth_device->opened_stream_outs_.remove(out); in adev_close_output_stream()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
DBluetoothHeadsetFragment.java82 mPickedDeviceText = (TextView) v.findViewById(R.id.bluetooth_device); in onCreateView()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDevicePreference.java400 name = context.getString(R.string.bluetooth_device); in askDisconnect()