HomeSort by relevance Sort by last modified time
    Searched full:actual_frame (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/net/websockets/
websocket_channel_test.cc 319 const WebSocketFrame& actual_frame = *(*actual_frames)[i]; local
321 if (actual_frame.header.final != (expected_frame.final == FINAL_FRAME)) {
323 << (actual_frame.header.final ? "" : "not ") << "final";
326 if (actual_frame.header.opcode != expected_frame.opcode) {
327 *listener << "the opcode is " << actual_frame.header.opcode;
330 if (actual_frame.header.masked != (expected_frame.masked == MASKED)) {
332 << (actual_frame.header.masked ? "masked" : "not masked");
337 if (actual_frame.header.payload_length != expected_length) {
339 << actual_frame.header.payload_length;
343 memcmp(actual_frame.data->data()
    [all...]
  /external/chromium/net/spdy/
spdy_framer_test.cc 219 const SpdyFrame& actual_frame,
223 reinterpret_cast<const unsigned char*>(actual_frame.data());
224 int actual_len = actual_frame.length() + SpdyFrame::size();
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
client_for_testing.py     [all...]
  /external/chromium_org/net/spdy/
spdy_framer_test.cc 586 const SpdyFrame& actual_frame,
590 reinterpret_cast<const unsigned char*>(actual_frame.data());
592 description, actual, actual_frame.size(), expected, expected_len);
597 const SpdyFrame& actual_frame) {
602 reinterpret_cast<const unsigned char*>(actual_frame.data()),
603 actual_frame.size());
    [all...]

Completed in 549 milliseconds