HomeSort by relevance Sort by last modified time
    Searched defs:hal (Results 1 - 25 of 36) sorted by null

1 2

  /external/opencv3/modules/hal/src/
arithm.cpp 45 namespace cv { namespace hal { namespace in namespace:cv
color.cpp 45 namespace cv { namespace hal { namespace in namespace:cv
filter.cpp 45 namespace cv { namespace hal { namespace in namespace:cv
resize.cpp 45 namespace cv { namespace hal { namespace in namespace:cv
warp.cpp 45 namespace cv { namespace hal { namespace in namespace:cv
matrix.cpp 45 namespace cv { namespace hal { namespace in namespace:cv
stat.cpp 45 namespace cv { namespace hal { namespace in namespace:cv
306 }} //cv::hal
  /system/bt/service/hal/
gatt_helpers.h 26 // Some utility functions for interacting with GATT HAL interfaces.
29 namespace hal { namespace in namespace:bluetooth
31 // Populates a HAL btgatt_srvc_id_t structure from the given GattIdentifier that
35 // Populates and returns a GattIdentifier for the given HAL btgatt_srvc_id_t
40 } // namespace hal
bluetooth_interface.h 23 namespace hal { namespace in namespace:bluetooth
25 // This class represents the HAL Bluetooth adapter interface, wrapping around
28 // to interface with the global HAL interface by multiplexing callbacks among
38 // The standard Bluetooth adapter management callback interface. The HAL
44 // TODO(armansito): We should fix this in the HAL.
50 // "bt_callbacks_t" in the HAL API definitions.
81 // the underlying HAL interface failed to initialize, and true on success.
104 // The HAL module pointer that represents the standard Bluetooth adapter
113 // The HAL module pointer that represents the underlying Bluetooth adapter.
126 } // namespace hal
    [all...]
gatt_helpers.cpp 17 #include "service/hal/gatt_helpers.h"
20 namespace hal { namespace in namespace:bluetooth
22 // Populates a HAL btgatt_srvc_id_t structure from the given GattIdentifier that
42 } // namespace hal
bluetooth_gatt_interface.h 28 namespace hal { namespace in namespace:bluetooth
35 // to interface with the global HAL interface by multiplexing callbacks among
42 // The standard BT-GATT client callback interface. The HAL interface doesn't
52 // "bt_gatt_client_callbacks_t" in the HAL API definitions.
225 // the underlying HAL interface failed to initialize, and true on success.
256 // The HAL module pointer that represents the standard BT-GATT client
264 // The HAL module pointer that represents the standard BT-GATT server
290 } // namespace hal
fake_bluetooth_gatt_interface.h 22 #include "service/hal/bluetooth_gatt_interface.h"
25 namespace hal { namespace in namespace:bluetooth
29 // Handles HAL Bluetooth GATT client API calls for testing. Test code can
57 // Handles HAL Bluetooth GATT server API calls for testing. Test code can
152 } // namespace hal
fake_bluetooth_interface.h 20 #include "service/hal/bluetooth_interface.h"
23 namespace hal { namespace in namespace:bluetooth
27 // A Fake HAL Bluetooth interface. This is kept as a global singleton as the
28 // Bluetooth HAL doesn't support anything otherwise.
62 // hal::BluetoothInterface overrides:
74 } // namespace hal
fake_bluetooth_interface.cpp 17 #include "service/hal/fake_bluetooth_interface.h"
20 namespace hal { namespace in namespace:bluetooth
167 } // namespace hal
  /external/opencv3/modules/hal/include/opencv2/
hal.hpp 48 #include "opencv2/hal/defs.h"
51 @defgroup hal Hardware Acceleration Layer
54 namespace cv { namespace hal { namespace in namespace:cv
96 }} //cv::hal
  /packages/services/Car/service/src/com/android/car/
BootReceiver.java 26 import com.android.car.hal.VehicleHal;
37 VehicleHal hal = VehicleHal.getInstance(); local
CarInputService.java 27 import com.android.car.hal.InputHalService;
28 import com.android.car.hal.VehicleHal;
91 InputHalService hal = VehicleHal.getInstance().getInputHal(); local
92 if (!hal.isKeyInputSupported()) {
93 Log.w(CarLog.TAG_INPUT, "Hal does not support key input.");
109 hal.setInputListener(this);
  /packages/services/Car/service/src/com/android/car/hal/
HalServiceBase.java 17 package com.android.car.hal;
27 * Common interface for all HAL service like sensor HAL.
28 * Each HAL service is connected with XyzService supporting XyzManager,
29 * and will translate HAL data into car api specific format.
SensorHalServiceBase.java 17 package com.android.car.hal;
41 * Sensor Hal is ready and is fully accessible.
44 void onSensorHalReady(SensorHalServiceBase hal);
57 * Sensor HAL should be ready after init call.
87 // default no-op impl. Necessary to not propagate this HAL specific event to logical
CarPropertyUtils.java 16 package com.android.car.hal;
InfoHalService.java 16 package com.android.car.hal;
37 public InfoHalService(VehicleHal hal) {
38 mHal = hal;
126 Log.w(CarLog.TAG_INFO, "unexpected HAL event for property 0x" +
InputHalService.java 16 package com.android.car.hal;
111 Log.i(CarLog.TAG_INPUT, "hal event code:" + code + ",action:" + action +
121 writer.println("*Input HAL*");
  /system/bt/hci/test/
hci_hal_h4_test.cpp 59 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->transmit_data(DATA_TYPE_COMMAND, (uint8_t *)(sample_data1 + 1), strlen(sample_data1 + 1))
    [all...]
hci_hal_mct_test.cpp 51 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->transmit_data(DATA_TYPE_COMMAND, (uint8_t *)(sample_data1), strlen(sample_data1))
    [all...]
  /external/parameter-framework/upstream/test/functional-tests-legacy/Util/
PfwUnitTestLib.py 75 class Hal(RemoteCli):
83 # Starts the HAL exe
92 # Send command "stop" to the HAL
125 hal = Hal(pfw) variable in class:PfwTestCase
137 # set up the Hal & pfw
138 cls.hal.startHal()
141 cls.hal.createInclusiveCriterion("Crit_0", "2")
142 cls.hal.createExclusiveCriterion("Crit_1", "2")
144 cls.hal.start(
    [all...]

Completed in 434 milliseconds

1 2