HomeSort by relevance Sort by last modified time
    Searched refs:ReadEventResponse (Results 1 - 9 of 9) sorted by null

  /device/google/contexthub/util/nanotool/
logevent.h 24 class LogEvent : public ReadEventResponse {
resetreasonevent.h 29 class ResetReasonEvent : public ReadEventResponse {
nanomessage.cpp 104 /* ReadEventResponse **********************************************************/
106 std::string ReadEventResponse::ToString() const {
108 snprintf(buffer, sizeof(buffer), "ReadEventResponse %u\n", GetEventType());
112 std::unique_ptr<ReadEventResponse> ReadEventResponse::FromBytes(
116 uint32_t event_type = ReadEventResponse::EventTypeFromBuffer(buffer);
117 if (ReadEventResponse::IsSensorEvent(event_type)) {
119 } else if (ReadEventResponse::IsAppToHostEvent(event_type)) {
121 } else if (ReadEventResponse::IsResetReasonEvent(event_type)) {
123 } else if (ReadEventResponse::IsLogEvent(event_type))
    [all...]
nanomessage.h 131 class ReadEventResponse : public NanoResponse {
135 // Construct and populate a concrete ReadEventResponse from the given buffer
136 static std::unique_ptr<ReadEventResponse> FromBytes(
sensorevent.h 89 class SensorEvent : public ReadEventResponse {
92 * Returns a pointer to a ReadEventResponse that will be constructed from
apptohostevent.h 81 class AppToHostEvent : public ReadEventResponse {
contexthub.cpp 528 std::unique_ptr<ReadEventResponse> event;
561 std::unique_ptr<ReadEventResponse> event;
600 std::unique_ptr<ReadEventResponse>* response, int timeout_ms) {
604 *response = ReadEventResponse::FromBytes(responseBuf);
contexthub.h 265 TransportResult ReadEvent(std::unique_ptr<ReadEventResponse>* response,
sensorevent.cpp 36 ReadEventResponse::EventTypeFromBuffer(buffer) -

Completed in 115 milliseconds