Lines Matching defs:interface_

148     interface_.reset(new TestSpdySM(connection_.get(),
176 return interface_->output_ordering().ExistsInPriorityMaps(stream_id);
185 scoped_ptr<TestSpdySM> interface_;
212 interface_->InitSMConnection(
221 BufferedSpdyFramerVisitorInterface* visitor = interface_.get();
237 EXPECT_CALL(*interface_, FindOrMakeNewSMConnectionInterface(_, _))
255 BufferedSpdyFramerVisitorInterface* visitor = interface_.get();
271 EXPECT_CALL(*interface_,
290 BufferedSpdyFramerVisitorInterface* visitor = interface_.get();
304 EXPECT_CALL(*interface_, FindOrMakeNewSMConnectionInterface(_, _))
323 BufferedSpdyFramerVisitorInterface* visitor = interface_.get();
338 EXPECT_CALL(*interface_,
354 BufferedSpdyFramerVisitorInterface* visitor = interface_.get();
366 interface_->AddToOutputOrder(mci);
373 ASSERT_EQ(SpdyFramer::SPDY_RESET, interface_->spdy_framer()->state());
374 interface_->ProcessReadInput("", 1);
376 interface_->spdy_framer()->state());
393 interface_->AddToOutputOrder(mci);
395 interface_->ProcessReadInput(input, sizeof(input));
396 ASSERT_NE(SpdyFramer::SPDY_RESET, interface_->spdy_framer()->state());
398 interface_->ResetForNewConnection();
400 ASSERT_TRUE(interface_->spdy_framer() == NULL);
404 interface_->ResetForNewConnection();
405 interface_->CreateFramer(SPDY2);
406 ASSERT_TRUE(interface_->spdy_framer() != NULL);
407 ASSERT_EQ(interface_->spdy_version(), SPDY2);
409 interface_->ResetForNewConnection();
410 interface_->CreateFramer(SPDY3);
411 ASSERT_TRUE(interface_->spdy_framer() != NULL);
412 ASSERT_EQ(interface_->spdy_version(), SPDY3);
416 interface_->PostAcceptHook();
449 interface_->AddToOutputOrder(mci);
464 interface_->SendErrorNotFound(stream_id);
513 interface_->SendErrorNotFound(stream_id);
564 interface_->SendSynStream(stream_id, headers);
598 interface_->SendSynStream(stream_id, headers);
632 interface_->SendSynReply(stream_id, headers);
668 interface_->SendSynReply(stream_id, headers);
699 interface_->SendDataFrame(stream_id, "hello", 5, flags, true);
727 interface_->SendDataFrame(stream_id, data.data(), data.size(), flags, true);
777 interface_->AddToOutputOrder(mci);
779 interface_->SendEOF(stream_id);
800 interface_->SendDataFrame(stream_id, "hello", 0, flags, true);
811 BufferedSpdyFramerVisitorInterface* visitor = interface_.get();
836 interface_->NewStream(stream_id, 0, filename);
847 interface_->NewStream(stream_id, 0, "nonexistingfile");