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

/system/bt/service/hal/
H A Dbluetooth_interface.h23 namespace hal { namespace in namespace:bluetooth
127 } // namespace hal
H A Dbluetooth_gatt_interface.h28 namespace hal { namespace in namespace:bluetooth
263 } // namespace hal
H A Dfake_bluetooth_interface.h20 #include "service/hal/bluetooth_interface.h"
23 namespace hal { namespace in namespace:bluetooth
61 // hal::BluetoothInterface overrides:
74 } // namespace hal
H A Dfake_bluetooth_gatt_interface.h24 #include "service/hal/bluetooth_gatt_interface.h"
27 namespace hal { namespace in namespace:bluetooth
151 } // namespace hal
H A Dfake_bluetooth_interface.cc17 #include "service/hal/fake_bluetooth_interface.h"
20 namespace hal { namespace in namespace:bluetooth
162 } // namespace hal
H A Dbluetooth_interface.cc17 #include "service/hal/bluetooth_interface.h"
40 namespace hal { namespace in namespace:bluetooth
405 } // namespace hal
H A Dfake_bluetooth_gatt_interface.cc17 #include "service/hal/fake_bluetooth_gatt_interface.h"
20 namespace hal { namespace in namespace:bluetooth
325 } // namespace hal
H A Dbluetooth_gatt_interface.cc17 #include "service/hal/bluetooth_gatt_interface.h"
25 #include "service/hal/bluetooth_interface.h"
39 namespace hal { namespace in namespace:bluetooth
815 } // namespace hal
/system/libvintf/
H A DCompatibilityMatrix.cpp27 bool CompatibilityMatrix::add(MatrixHal &&hal) { argument
28 return HalGroup<MatrixHal>::add(std::move(hal));
H A Dparse_string.cpp317 bool parse(const std::string &s, ManifestHal *hal) { argument
322 if (!parse(v[0], &hal->format)) {
325 hal->name = v[1];
326 if (!parse(v[2], &hal->transportArch)) {
329 if (!parse(v[3], &hal->versions)) {
332 return hal->isValid();
335 std::ostream &operator<<(std::ostream &os, const ManifestHal &hal) { argument
336 return os << hal.format << "/"
337 << hal.name << "/"
338 << hal
384 oss << hal; local
[all...]
/system/libvintf/include/vintf/
H A DHalGroup.h43 // Add an hal to this HalGroup so that it can be constructed programatically.
44 bool add(Hal&& hal) { argument
45 if (!shouldAdd(hal)) {
48 std::string name = hal.getName();
49 mHals.emplace(std::move(name), std::move(hal)); // always succeed
/system/libvintf/test/
H A Dmain.cpp54 bool add(CompatibilityMatrix &cm, MatrixHal &&hal) { argument
55 return cm.add(std::move(hal));
60 bool add(HalManifest &vm, ManifestHal &&hal) { argument
61 return vm.add(std::move(hal));
230 " <hal format=\"hidl\">\n"
243 " </hal>\n"
244 " <hal format=\"hidl\">\n"
252 " </hal>\n"
267 " <hal format=\"hidl\">\n"
275 " </hal>\
[all...]

Completed in 132 milliseconds