Home
last modified time | relevance | path

Searched refs:handle_pair (Results 1 – 5 of 5) sorted by relevance

/system/bt/gd/iso/
Dfacade.cc145 for (const auto& handle_pair : request->handle_pair()) { in LeCreateCis() local
147 std::make_pair<uint16_t, uint16_t>(handle_pair.cis_handle(), handle_pair.acl_handle())); in LeCreateCis()
Dfacade.proto75 repeated HandlePair handle_pair = 1; field
/system/bt/bta/vc/
Ddevices_test.cc346 for (auto const& handle_pair : expected_to_read_write) { in TEST_F() local
347 EXPECT_CALL(gatt_queue, ReadCharacteristic(_, handle_pair.first, _, _)); in TEST_F()
348 EXPECT_CALL(gatt_queue, WriteDescriptor(_, handle_pair.second, in TEST_F()
352 RegisterForNotifications(gatt_if, _, handle_pair.first)); in TEST_F()
415 for (auto const& handle_pair : expected_to_write_value_ccc_handle_map) { in TEST_F() local
416 EXPECT_CALL(gatt_queue, WriteDescriptor(_, handle_pair.second, in TEST_F()
420 RegisterForNotifications(gatt_if, _, handle_pair.first)); in TEST_F()
/system/bt/gd/iso/internal/
Diso_manager_impl.cc225 for (const auto& handle_pair : cis_and_acl_handles) { in LeCreateCis() local
227 config.cis_connection_handle_ = handle_pair.first; in LeCreateCis()
228 config.acl_connection_handle_ = handle_pair.second; in LeCreateCis()
/system/bt/gd/cert/
Dpy_le_iso.py170 self._device.iso.LeCreateCis(iso_facade_pb2.LeCreateCisRequest(handle_pair=handles_pairs))