Home
last modified time | relevance | path

Searched refs:RpcLogRecordType (Results 1 – 3 of 3) sorted by relevance

/aosp12/system/chre/apps/wifi_offload/
H A Drpc_log_record.cc22 : record_type_(RpcLogRecordType::CMD_BASE), timestamp_chre_ms_(0) {} in RpcLogRecord()
40 if ((rec > static_cast<uint8_t>(RpcLogRecordType::CMD_BASE) && in Deserialize()
41 rec < static_cast<uint8_t>(RpcLogRecordType::CMD_LAST_ITEM)) || in Deserialize()
42 (rec > static_cast<uint8_t>(RpcLogRecordType::EVENT_RECVD_BASE) && in Deserialize()
43 rec < static_cast<uint8_t>(RpcLogRecordType::EVENT_RECVD_LAST_ITEM)) || in Deserialize()
44 (rec > static_cast<uint8_t>(RpcLogRecordType::EVENT_SENT_BASE) && in Deserialize()
45 rec < static_cast<uint8_t>(RpcLogRecordType::EVENT_SENT_LAST_ITEM)) || in Deserialize()
46 (rec > static_cast<uint8_t>(RpcLogRecordType::REQ_BASE) && in Deserialize()
47 rec < static_cast<uint8_t>(RpcLogRecordType::REQ_LAST_ITEM))) { in Deserialize()
48 record_type_ = static_cast<RpcLogRecordType>(fbs_record.record_type()); in Deserialize()
/aosp12/system/chre/apps/wifi_offload/include/chre/apps/wifi_offload/
H A Drpc_log_record.h31 enum class RpcLogRecordType : uint8_t { enum
71 RpcLogRecordType record_type_;
/aosp12/system/chre/apps/wifi_offload/test/
H A Dutility.cc19 using RpcLog = wifi_offload::RpcLogRecord::RpcLogRecordType;