/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/ |
D | HidParser.cpp | 117 HidReport report(reportType, flag, top, mLocal); in processMainTag() local 118 mReport.push_back(report); in processMainTag() 119 std::shared_ptr<HidTreeNode> node(new HidReportNode(mCurrent, report)); in processMainTag() 183 const HidReport &report = in digest() local 186 unsigned int id = report.getReportId();; in digest() 193 switch(report.getType()) { in digest() 196 reportGroup[REPORT_TYPE_FEATURE].push_back(report); in digest() 199 reportGroup[REPORT_TYPE_INPUT].push_back(report); in digest() 202 reportGroup[REPORT_TYPE_OUTPUT].push_back(report); in digest() 294 for (const auto &report : packet.reports) { in operator <<() local [all …]
|
D | HidTree.cpp | 104 HidReportNode::HidReportNode(std::shared_ptr<HidTreeNode> parent, const HidReport &report) in HidReportNode() argument 105 : HidTreeNode(parent, 0 /*data*/, 0 /*fullUsage*/, TYPE_REPORT), mReport(report) { in HidReportNode()
|
D | HidTree.h | 83 HidReportNode(std::shared_ptr<HidTreeNode> parent, const HidReport &report);
|
/hardware/libhardware/tests/input/evdev/ |
D | MouseInputMapper_test.cpp | 90 MockInputReport report; in TEST_F() local 92 .WillOnce(Return(&report)); in TEST_F() 98 EXPECT_CALL(report, setIntUsage(id, INPUT_USAGE_AXIS_X, 5, 0)); in TEST_F() 99 EXPECT_CALL(report, setIntUsage(id, INPUT_USAGE_AXIS_Y, -3, 0)); in TEST_F() 100 EXPECT_CALL(report, reportEvent(_)); in TEST_F() 101 EXPECT_CALL(report, setBoolUsage(id, INPUT_USAGE_BUTTON_PRIMARY, 1, 0)); in TEST_F() 102 EXPECT_CALL(report, reportEvent(_)); in TEST_F() 103 EXPECT_CALL(report, setBoolUsage(id, INPUT_USAGE_BUTTON_PRIMARY, 0, 0)); in TEST_F() 104 EXPECT_CALL(report, reportEvent(_)); in TEST_F()
|
D | SwitchInputMapper_test.cpp | 80 MockInputReport report; in TEST_F() local 82 .WillOnce(Return(&report)); in TEST_F() 87 EXPECT_CALL(report, setBoolUsage(INPUT_COLLECTION_ID_SWITCH, INPUT_USAGE_SWITCH_LID, 1, 0)); in TEST_F() 88 EXPECT_CALL(report, reportEvent(_)); in TEST_F() 89 EXPECT_CALL(report, setBoolUsage(INPUT_COLLECTION_ID_SWITCH, INPUT_USAGE_SWITCH_LID, 0, 0)); in TEST_F() 90 EXPECT_CALL(report, reportEvent(_)); in TEST_F()
|
/hardware/qcom/gps/msm8998/core/ |
D | SystemStatus.cpp | 1502 bool SystemStatus::getReport(SystemStatusReports& report, bool isLatestOnly) const in getReport() argument 1508 report.mLocation.clear(); in getReport() 1510 report.mLocation.push_back(mCache.mLocation.back()); in getReport() 1511 report.mLocation.back().dump(); in getReport() 1514 report.mTimeAndClock.clear(); in getReport() 1516 report.mTimeAndClock.push_back(mCache.mTimeAndClock.back()); in getReport() 1517 report.mTimeAndClock.back().dump(); in getReport() 1519 report.mXoState.clear(); in getReport() 1521 report.mXoState.push_back(mCache.mXoState.back()); in getReport() 1522 report.mXoState.back().dump(); in getReport() [all …]
|
/hardware/qcom/gps/msm8909w_3100/core/ |
D | SystemStatus.cpp | 1588 bool SystemStatus::getReport(SystemStatusReports& report, bool isLatestOnly) const in getReport() argument 1594 report.mLocation.clear(); in getReport() 1596 report.mLocation.push_back(mCache.mLocation.back()); in getReport() 1597 report.mLocation.back().dump(); in getReport() 1600 report.mTimeAndClock.clear(); in getReport() 1602 report.mTimeAndClock.push_back(mCache.mTimeAndClock.back()); in getReport() 1603 report.mTimeAndClock.back().dump(); in getReport() 1605 report.mXoState.clear(); in getReport() 1607 report.mXoState.push_back(mCache.mXoState.back()); in getReport() 1608 report.mXoState.back().dump(); in getReport() [all …]
|
/hardware/interfaces/sensors/1.0/ |
D | ISensors.hal | 82 * report latency. This function can be called while the sensor is 85 * lost events, nor can transitioning from a high maximum report latency to 86 * a low maximum report latency. 93 * to time of report. 142 * Register direct report channel. 161 * Unregister direct report channel. 164 * registerDirectChannel, and remove all active sensor report configured in 165 * still active sensor report configured in the direct channel. 168 * @return result OK if direct report is supported; INVALID_OPERATION 174 * Configure direct sensor event report in direct channel. [all …]
|
/hardware/libhardware/modules/input/evdev/ |
D | InputMapper.h | 48 virtual bool configureInputReport(InputDeviceNode* devNode, InputReportDefinition* report) { in configureInputReport() argument 58 virtual bool configureOutputReport(InputDeviceNode* devNode, InputReportDefinition* report) { in configureOutputReport() argument
|
D | SwitchInputMapper.cpp | 60 InputReportDefinition* report) { in configureInputReport() argument 72 setInputReportDefinition(report); in configureInputReport()
|
D | SwitchInputMapper.h | 35 InputReportDefinition* report) override;
|
D | MouseInputMapper.h | 34 InputReportDefinition* report) override;
|
D | MouseInputMapper.cpp | 52 InputReportDefinition* report) { in configureInputReport() argument 53 setInputReportDefinition(report); in configureInputReport()
|
/hardware/libhardware/include/hardware/ |
D | input.h | 456 input_report_definition_t* report, input_collection_id_t id, int32_t arity); 463 input_report_definition_t* report, input_collection_id_t id, 471 input_report_definition_t* report, input_collection_id_t id, 502 void (*report_event)(input_host_t* host, input_device_handle_t* d, input_report_t* report); 564 void (*notify_report)(const input_module_t* module, input_report_t* report);
|
/hardware/qcom/gps/msm8998/gnss/ |
D | location_gnss.cpp | 61 static void getDebugReport(GnssDebugReport& report); 245 static void getDebugReport(GnssDebugReport& report) { in getDebugReport() argument 248 gGnssAdapter->getDebugReport(report); in getDebugReport()
|
/hardware/qcom/gps/msm8909w_3100/gnss/ |
D | location_gnss.cpp | 61 static void getDebugReport(GnssDebugReport& report); 247 static void getDebugReport(GnssDebugReport& report) { in getDebugReport() argument 250 gGnssAdapter->getDebugReport(report); in getDebugReport()
|
/hardware/libhardware/modules/sensors/dynamic_sensor/ |
D | HidRawSensor.h | 38 const std::vector<HidParser::ReportPacket> &report); 107 const HidParser::ReportItem &report,
|
D | HidRawSensor.cpp | 583 const HidParser::ReportItem &report, const std::vector<uint8_t> &buffer, std::string *d) { in decodeString() argument 584 if (!report.isByteAligned() || report.bitSize != 16 || report.count < 1) { in decodeString() 588 size_t offset = report.bitOffset / 8; in decodeString() 589 if (offset + report.count * 2 > buffer.size()) { in decodeString() 593 std::vector<uint16_t> data(report.count); in decodeString()
|
/hardware/interfaces/gnss/1.0/ |
D | IGnssDebug.hal | 92 * Time duration before this report that this position information was 131 * the satellite. To report status of predicted orbit and clock 143 * Time duration from this report (current time), minus the 155 * Time duration from this report (current time) minus the time of the
|
D | IGnssBatchingCallback.hal | 19 /** The callback interface to report measurements from the HAL. */
|
/hardware/interfaces/wifi/1.0/ |
D | IWifiChipEventCallback.hal | 65 * immediately as data is available, instead driver will report data 68 * - In the case where a bug report has to be captured, framework will
|
/hardware/qcom/gps/msm8998/location/ |
D | location_interface.h | 56 void (*getDebugReport)(GnssDebugReport& report);
|
/hardware/interfaces/usb/1.1/ |
D | types.hal | 37 * Used as the container to report data back to the caller.
|
/hardware/qcom/gps/msm8909w_3100/location/ |
D | location_interface.h | 57 void (*getDebugReport)(GnssDebugReport& report);
|
/hardware/interfaces/gnss/1.1/ |
D | IGnssMeasurementCallback.hal | 21 /** The callback interface to report measurements from the HAL. */
|