Home | History | Annotate | Download | only in tests

Lines Matching refs:protocol

29 #include "wifilogd/protocol.h"
73 EXPECT_CALL(*os_, ReceiveDatagram(_, _, Ge(protocol::kMaxMessageSize)));
81 Return(std::tuple<size_t, Os::Errno>{sizeof(protocol::Command), 0}));
83 ProcessCommand(_, sizeof(protocol::Command), _));
90 Return(std::tuple<size_t, Os::Errno>{protocol::kMaxMessageSize, 0}));
92 ProcessCommand(_, protocol::kMaxMessageSize, _));
106 std::tuple<size_t, Os::Errno>{protocol::kMaxMessageSize + 1, 0}));
108 ProcessCommand(_, protocol::kMaxMessageSize, _));
113 EXPECT_CALL(*os_, ReceiveDatagram(_, _, protocol::kMaxMessageSize))
136 ON_CALL(*os_, ReceiveDatagram(_, _, protocol::kMaxMessageSize))