Home | History | Annotate | Download | only in spdy

Lines Matching refs:SpdyFrame

76   SpdyFrame* ConstructConnectRequestFrame();
77 SpdyFrame* ConstructConnectAuthRequestFrame();
78 SpdyFrame* ConstructConnectReplyFrame();
79 SpdyFrame* ConstructConnectAuthReplyFrame();
80 SpdyFrame* ConstructConnectRedirectReplyFrame();
81 SpdyFrame* ConstructConnectErrorReplyFrame();
82 SpdyFrame* ConstructBodyFrame(const char* data, int length);
329 SpdyFrame*
338 SpdyFrame* SpdyProxyClientSocketTest::ConstructConnectAuthRequestFrame() {
346 SpdyFrame* SpdyProxyClientSocketTest::ConstructConnectReplyFrame() {
355 SpdyFrame* SpdyProxyClientSocketTest::ConstructConnectAuthReplyFrame() {
363 SpdyFrame* SpdyProxyClientSocketTest::ConstructConnectRedirectReplyFrame() {
372 SpdyFrame* SpdyProxyClientSocketTest::ConstructConnectErrorReplyFrame() {
378 SpdyFrame* SpdyProxyClientSocketTest::ConstructBodyFrame(
387 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
392 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
408 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
413 scoped_ptr<SpdyFrame> resp(ConstructConnectAuthReplyFrame());
429 scoped_ptr<SpdyFrame> conn(ConstructConnectAuthRequestFrame());
434 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
449 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
450 scoped_ptr<SpdyFrame> rst(
456 scoped_ptr<SpdyFrame> resp(ConstructConnectRedirectReplyFrame());
482 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
487 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
504 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
505 scoped_ptr<SpdyFrame> rst(
511 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
531 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
536 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
564 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
565 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
566 scoped_ptr<SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
573 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
589 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
590 scoped_ptr<SpdyFrame> chunk(ConstructBodyFrame(chunk_data.data(),
599 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
623 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
628 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
629 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
646 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
651 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
652 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
653 scoped_ptr<SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
674 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
679 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
680 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
681 scoped_ptr<SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
701 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
706 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
707 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
708 scoped_ptr<SpdyFrame> msg3(ConstructBodyFrame(kMsg3, kLen3));
728 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
733 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
734 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
735 scoped_ptr<SpdyFrame> msg3(ConstructBodyFrame(kMsg3, kLen3));
736 scoped_ptr<SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
760 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
765 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
766 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
767 scoped_ptr<SpdyFrame> msg33(ConstructBodyFrame(kMsg33, kLen33));
768 scoped_ptr<SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
790 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
795 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
796 scoped_ptr<SpdyFrame> msg333(ConstructBodyFrame(kMsg333, kLen333));
821 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
826 scoped_ptr<SpdyFrame> resp(ConstructConnectAuthReplyFrame());
827 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
828 scoped_ptr<SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
847 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
852 scoped_ptr<SpdyFrame> resp(ConstructConnectErrorReplyFrame());
853 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
854 scoped_ptr<SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
870 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
871 scoped_ptr<SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
877 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
878 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
879 scoped_ptr<SpdyFrame> msg3(ConstructBodyFrame(kMsg3, kLen3));
906 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
907 scoped_ptr<SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
913 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
914 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
915 scoped_ptr<SpdyFrame> msg3(ConstructBodyFrame(kMsg3, kLen3));
945 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
950 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
971 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
976 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
996 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
997 scoped_ptr<SpdyFrame> rst(
1003 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1024 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
1029 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1030 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
1057 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
1062 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1063 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
1081 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
1082 scoped_ptr<SpdyFrame> rst(
1088 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1089 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
1111 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
1117 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1141 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
1142 scoped_ptr<SpdyFrame> rst(
1149 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1176 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
1177 scoped_ptr<SpdyFrame> rst(
1183 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1210 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
1216 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1217 scoped_ptr<SpdyFrame> rst(
1254 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
1255 scoped_ptr<SpdyFrame> rst(
1261 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1262 scoped_ptr<SpdyFrame> msg1(ConstructBodyFrame(kMsg1, kLen1));
1341 scoped_ptr<SpdyFrame> conn(ConstructConnectRequestFrame());
1347 scoped_ptr<SpdyFrame> resp(ConstructConnectReplyFrame());
1348 scoped_ptr<SpdyFrame> rst(