Lines Matching refs:packet

21     std::vector<uint8_t> packet = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};  in TEST()  local
32 auto response = algoPtr->generateIntegrityData(packet); in TEST()
56 size_t length = packet.size() - message::parser::RMCP_SESSION_HEADER_SIZE; in TEST()
59 packet.data() + message::parser::RMCP_SESSION_HEADER_SIZE, length, in TEST()
82 std::vector<uint8_t> packet = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; in TEST() local
104 size_t length = packet.size() - message::parser::RMCP_SESSION_HEADER_SIZE; in TEST()
107 packet.data() + message::parser::RMCP_SESSION_HEADER_SIZE, length, in TEST()
118 auto packetSize = packet.size(); in TEST()
119 packet.insert(packet.end(), output.begin(), output.end()); in TEST()
122 auto integrityIter = packet.cbegin(); in TEST()
133 packet, packetSize - message::parser::RMCP_SESSION_HEADER_SIZE, in TEST()
134 integrityIter, packet.cend()); in TEST()
146 std::vector<uint8_t> packet = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; in TEST() local
150 packet.insert(packet.end(), integrity.begin(), integrity.end()); in TEST()
153 auto integrityIter = packet.cbegin(); in TEST()
170 packet, packet.size() - message::parser::RMCP_SESSION_HEADER_SIZE, in TEST()
171 integrityIter, packet.cend()); in TEST()
182 std::vector<uint8_t> packet = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; in TEST() local
194 auto response = algoPtr->generateIntegrityData(packet); in TEST()
219 size_t length = packet.size() - message::parser::RMCP_SESSION_HEADER_SIZE; in TEST()
222 packet.data() + message::parser::RMCP_SESSION_HEADER_SIZE, length, in TEST()
245 std::vector<uint8_t> packet = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; in TEST() local
268 size_t length = packet.size() - message::parser::RMCP_SESSION_HEADER_SIZE; in TEST()
271 packet.data() + message::parser::RMCP_SESSION_HEADER_SIZE, length, in TEST()
282 auto packetSize = packet.size(); in TEST()
283 packet.insert(packet.end(), output.begin(), output.end()); in TEST()
286 auto integrityIter = packet.cbegin(); in TEST()
297 packet, packetSize - message::parser::RMCP_SESSION_HEADER_SIZE, in TEST()
298 integrityIter, packet.cend()); in TEST()
310 std::vector<uint8_t> packet = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; in TEST() local
314 packet.insert(packet.end(), integrity.begin(), integrity.end()); in TEST()
317 auto integrityIter = packet.cbegin(); in TEST()
335 packet, packet.size() - message::parser::RMCP_SESSION_HEADER_SIZE, in TEST()
336 integrityIter, packet.cend()); in TEST()