Searched defs:actual_frame (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/net/spdy/
H A Dspdy_framer_test.cc626 const SpdyFrame& actual_frame,
630 reinterpret_cast<const unsigned char*>(actual_frame.data());
632 description, actual, actual_frame.size(), expected, expected_len);
637 const SpdyFrame& actual_frame) {
642 reinterpret_cast<const unsigned char*>(actual_frame.data()),
643 actual_frame.size());
625 CompareFrame(const string& description, const SpdyFrame& actual_frame, const unsigned char* expected, const int expected_len) argument
635 CompareFrames(const string& description, const SpdyFrame& expected_frame, const SpdyFrame& actual_frame) argument
/external/chromium_org/net/websockets/
H A Dwebsocket_channel_test.cc374 const WebSocketFrame& actual_frame = *(*actual_frames)[i]; local
376 if (actual_frame.header.final != (expected_frame.final == FINAL_FRAME)) {
378 << (actual_frame.header.final ? "" : "not ") << "final";
381 if (actual_frame.header.opcode != expected_frame.opcode) {
382 *listener << "the opcode is " << actual_frame.header.opcode;
385 if (actual_frame.header.masked != (expected_frame.masked == MASKED)) {
387 << (actual_frame.header.masked ? "masked" : "not masked");
392 if (actual_frame.header.payload_length != expected_length) {
394 << actual_frame.header.payload_length;
398 memcmp(actual_frame
[all...]

Completed in 91 milliseconds