Searched defs:hal (Results 1 - 13 of 13) sorted by relevance

/system/bt/service/hal/
H A Dgatt_helpers.h29 namespace hal { namespace in namespace:bluetooth
40 } // namespace hal
H A Dbluetooth_interface.h23 namespace hal { namespace in namespace:bluetooth
126 } // namespace hal
H A Dbluetooth_gatt_interface.h28 namespace hal { namespace in namespace:bluetooth
290 } // namespace hal
H A Dgatt_helpers.cpp17 #include "service/hal/gatt_helpers.h"
20 namespace hal { namespace in namespace:bluetooth
42 } // namespace hal
H A Dfake_bluetooth_gatt_interface.h22 #include "service/hal/bluetooth_gatt_interface.h"
25 namespace hal { namespace in namespace:bluetooth
152 } // namespace hal
H A Dfake_bluetooth_interface.h20 #include "service/hal/bluetooth_interface.h"
23 namespace hal { namespace in namespace:bluetooth
62 // hal::BluetoothInterface overrides:
74 } // namespace hal
H A Dfake_bluetooth_interface.cpp17 #include "service/hal/fake_bluetooth_interface.h"
20 namespace hal { namespace in namespace:bluetooth
167 } // namespace hal
H A Dbluetooth_interface.cpp17 #include "service/hal/bluetooth_interface.h"
40 namespace hal { namespace in namespace:bluetooth
433 } // namespace hal
H A Dbluetooth_gatt_interface.cpp17 #include "service/hal/bluetooth_gatt_interface.h"
27 #include "service/hal/bluetooth_interface.h"
37 namespace hal { namespace in namespace:bluetooth
959 } // namespace hal
H A Dfake_bluetooth_gatt_interface.cpp17 #include "service/hal/fake_bluetooth_gatt_interface.h"
20 namespace hal { namespace in namespace:bluetooth
415 } // namespace hal
/system/bt/hci/test/
H A Dhci_hal_h4_test.cpp59 static const hci_hal_t *hal; variable
70 EXPECT_EQ((size_t)1, hal->read_data(type, &byte, 1));
74 hal->packet_finished(type);
119 while ((bytes_read = hal->read_data(type, &byte, 1)) != 0) {
124 hal->packet_finished(type);
145 hal = hci_hal_h4_get_test_interface(&vendor);
155 EXPECT_TRUE(hal->init(&callbacks, thread));
158 EXPECT_TRUE(hal->open());
164 hal->close();
214 hal
[all...]
H A Dhci_hal_mct_test.cpp51 static const hci_hal_t *hal; variable
65 EXPECT_EQ((size_t)1, hal->read_data(type, &byte, 1));
69 hal->packet_finished(type);
112 while ((bytes_read = hal->read_data(type, &byte, 1)) != 0) {
117 hal->packet_finished(type);
138 hal = hci_hal_mct_get_test_interface(&vendor);
155 EXPECT_TRUE(hal->init(&callbacks, thread));
158 EXPECT_TRUE(hal->open());
164 hal->close();
214 hal
[all...]
/system/bt/hci/src/
H A Dhci_layer.c112 static const hci_hal_t *hal; variable
245 hal->init(&hal_callbacks, thread);
317 hal->close();
406 hal->open();
508 hal->transmit_data(type, packet->data + packet->offset, packet->len);
552 while (hal->read_data(type, &byte, 1) != 0) {
595 size_t bytes_read = hal->read_data(type, (incoming->buffer->data + incoming->index), incoming->bytes_remaining);
605 // Don't forget to let the hal know we finished the packet we were ignoring.
608 hal->packet_finished(type);
640 hal
[all...]

Completed in 183 milliseconds