Home
last modified time | relevance | path

Searched refs:val_hdl (Results 1 – 9 of 9) sorted by relevance

/packages/modules/Bluetooth/system/bta/le_audio/
Dstorage_helper.cc96 uint16_t handle = std::get<0>(pac_tuple).val_hdl; in serializePacs()
197 STREAM_TO_UINT16(hdl_pair.val_hdl, ptr); in deserializePacs()
202 hdl_pair.val_hdl, hdl_pair.ccc_hdl, pac_count); in deserializePacs()
207 auto hdl = hdl_pair.val_hdl; in deserializePacs()
210 [&hdl](auto& pac_ent) { return std::get<0>(pac_ent).val_hdl == hdl; }); in deserializePacs()
285 ase.hdls.val_hdl, ase.hdls.ccc_hdl); in SerializeAses()
287 UINT16_TO_STREAM(ptr, ase.hdls.val_hdl); in SerializeAses()
371 if (leAudioDevice->ctp_hdls_.val_hdl == 0 || in SerializeHandles()
378 UINT16_TO_STREAM(ptr, leAudioDevice->ctp_hdls_.val_hdl); in SerializeHandles()
381 UINT16_TO_STREAM(ptr, leAudioDevice->snk_audio_locations_hdls_.val_hdl); in SerializeHandles()
[all …]
Dstate_machine_test.cc237 if (dev->ctp_hdls_.val_hdl == handle) { in SetUp()
506 leAudioDevice->snk_audio_locations_hdls_.val_hdl = attr_handle++; in PrepareConnectedDevice()
508 leAudioDevice->src_audio_locations_hdls_.val_hdl = attr_handle++; in PrepareConnectedDevice()
510 leAudioDevice->audio_avail_hdls_.val_hdl = attr_handle++; in PrepareConnectedDevice()
512 leAudioDevice->audio_supp_cont_hdls_.val_hdl = attr_handle++; in PrepareConnectedDevice()
514 leAudioDevice->ctp_hdls_.val_hdl = attr_handle++; in PrepareConnectedDevice()
520 ase.hdls.val_hdl = attr_handle++; in PrepareConnectedDevice()
530 ase.hdls.val_hdl = attr_handle++; in PrepareConnectedDevice()
789 handle_pair.val_hdl = attr_handle++; in MultipleTestDevicePrepare()
815 handle_pair.val_hdl = attr_handle++; in MultipleTestDevicePrepare()
[all …]
Dclient.cc362 leAudioDevice->ases_[i].hdls.val_hdl, in AseInitialStateReadRequest()
1582 std::get<0>(pac_tuple).val_hdl); in DeregisterNotifications()
1586 std::get<0>(pac_tuple).val_hdl); in DeregisterNotifications()
1589 if (leAudioDevice->snk_audio_locations_hdls_.val_hdl != 0) in DeregisterNotifications()
1592 leAudioDevice->snk_audio_locations_hdls_.val_hdl); in DeregisterNotifications()
1593 if (leAudioDevice->src_audio_locations_hdls_.val_hdl != 0) in DeregisterNotifications()
1596 leAudioDevice->src_audio_locations_hdls_.val_hdl); in DeregisterNotifications()
1597 if (leAudioDevice->audio_avail_hdls_.val_hdl != 0) in DeregisterNotifications()
1600 leAudioDevice->audio_avail_hdls_.val_hdl); in DeregisterNotifications()
1601 if (leAudioDevice->audio_supp_cont_hdls_.val_hdl != 0) in DeregisterNotifications()
[all …]
Dle_audio_types.h655 hdl_pair(uint16_t val_hdl, uint16_t ccc_hdl) in hdl_pair()
656 : val_hdl(val_hdl), ccc_hdl(ccc_hdl) {} in hdl_pair()
658 uint16_t val_hdl = 0; member
665 ase(uint16_t val_hdl, uint16_t ccc_hdl, uint8_t direction,
667 : hdls(val_hdl, ccc_hdl), in hdls()
Ddevices.cc2301 struct ase* LeAudioDevice::GetAseByValHandle(uint16_t val_hdl) { in GetAseByValHandle() argument
2304 [&val_hdl](const auto& ase) { return ase.hdls.val_hdl == val_hdl; }); in GetAseByValHandle()
2717 stream << "\n\t\tvalue handle: " << loghex(std::get<0>(pac).val_hdl) in DumpPacsDebugState()
Ddevices.h146 struct types::ase* GetAseByValHandle(uint16_t val_hdl);
Dstate_machine.cc835 leAudioDevice->ctp_hdls_.val_hdl, value, in WriteToControlPoint()
/packages/modules/Bluetooth/system/bta/csis/
Dcsis_client.cc416 << loghex(+(csis_instance->svc_data.lock_handle.val_hdl)); in SetLock()
419 device->conn_id, csis_instance->svc_data.lock_handle.val_hdl, value, in SetLock()
901 if (handle == csis_instance->svc_data.sirk_handle.val_hdl) { in OnCsisNotification()
903 } else if (handle == csis_instance->svc_data.lock_handle.val_hdl) { in OnCsisNotification()
905 } else if (handle == csis_instance->svc_data.size_handle.val_hdl) { in OnCsisNotification()
1538 csis_inst->svc_data.lock_handle.val_hdl); in DeregisterNotifications()
1540 csis_inst->svc_data.sirk_handle.val_hdl); in DeregisterNotifications()
1542 csis_inst->svc_data.size_handle.val_hdl); in DeregisterNotifications()
1584 csis_inst->svc_data.lock_handle.val_hdl = charac.value_handle; in OnCsisServiceFound()
1591 << loghex(csis_inst->svc_data.lock_handle.val_hdl) in OnCsisServiceFound()
[all …]
Dcsis_types.h60 hdl_pair(uint16_t val_hdl, uint16_t ccc_hdl) : val_hdl(val_hdl), ccc_hdl(ccc_hdl) {} in hdl_pair()
62 uint16_t val_hdl; member