SMConnection       50 net/tools/flip_server/acceptor_thread.cc   for (std::vector<SMConnection*>::iterator i =
SMConnection       59 net/tools/flip_server/acceptor_thread.cc SMConnection* SMAcceptorThread::NewConnection() {
SMConnection       60 net/tools/flip_server/acceptor_thread.cc   SMConnection* server = SMConnection::NewSMConnection(
SMConnection       67 net/tools/flip_server/acceptor_thread.cc SMConnection* SMAcceptorThread::FindOrMakeNewSMConnection() {
SMConnection       71 net/tools/flip_server/acceptor_thread.cc   SMConnection* server = unused_server_connections_.back();
SMConnection       98 net/tools/flip_server/acceptor_thread.cc   SMConnection* server_connection = FindOrMakeNewSMConnection();
SMConnection      164 net/tools/flip_server/acceptor_thread.cc   std::list<SMConnection*>::iterator iter = active_server_connections_.begin();
SMConnection      166 net/tools/flip_server/acceptor_thread.cc     SMConnection* conn = *iter;
SMConnection      206 net/tools/flip_server/acceptor_thread.cc void SMAcceptorThread::SMConnectionDone(SMConnection* sc) {
SMConnection       24 net/tools/flip_server/acceptor_thread.h class SMConnection;
SMConnection       62 net/tools/flip_server/acceptor_thread.h   virtual void SMConnectionDone(SMConnection* sc) OVERRIDE;
SMConnection       65 net/tools/flip_server/acceptor_thread.h   SMConnection* NewConnection();
SMConnection       66 net/tools/flip_server/acceptor_thread.h   SMConnection* FindOrMakeNewSMConnection();
SMConnection       87 net/tools/flip_server/acceptor_thread.h   std::vector<SMConnection*> unused_server_connections_;
SMConnection       88 net/tools/flip_server/acceptor_thread.h   std::vector<SMConnection*> tmp_unused_server_connections_;
SMConnection       89 net/tools/flip_server/acceptor_thread.h   std::vector<SMConnection*> allocated_server_connections_;
SMConnection       90 net/tools/flip_server/acceptor_thread.h   std::list<SMConnection*> active_server_connections_;
SMConnection      264 net/tools/flip_server/flip_in_mem_edsm_server.cc     net::SMConnection::set_force_spdy(true);
SMConnection       15 net/tools/flip_server/http_interface.cc HttpSM::HttpSM(SMConnection* connection,
SMConnection       27 net/tools/flip_server/http_interface.h   HttpSM(SMConnection* connection,
SMConnection      132 net/tools/flip_server/http_interface.h   SMConnection* connection_;
SMConnection       29 net/tools/flip_server/http_interface_test.cc class MockSMConnection : public SMConnection {
SMConnection       36 net/tools/flip_server/http_interface_test.cc       : SMConnection(epoll_server,
SMConnection       26 net/tools/flip_server/sm_connection.cc bool SMConnection::force_spdy_ = false;
SMConnection       33 net/tools/flip_server/sm_connection.cc SMConnection::SMConnection(EpollServer* epoll_server,
SMConnection       59 net/tools/flip_server/sm_connection.cc SMConnection::~SMConnection() {
SMConnection       64 net/tools/flip_server/sm_connection.cc EpollServer* SMConnection::epoll_server() { return epoll_server_; }
SMConnection       66 net/tools/flip_server/sm_connection.cc void SMConnection::ReadyToSend() {
SMConnection       72 net/tools/flip_server/sm_connection.cc void SMConnection::EnqueueDataFrame(DataFrame* df) {
SMConnection       79 net/tools/flip_server/sm_connection.cc void SMConnection::InitSMConnection(SMConnectionPoolInterface* connection_pool,
SMConnection      162 net/tools/flip_server/sm_connection.cc void SMConnection::CorkSocket() {
SMConnection      169 net/tools/flip_server/sm_connection.cc void SMConnection::UncorkSocket() {
SMConnection      176 net/tools/flip_server/sm_connection.cc int SMConnection::Send(const char* data, int len, int flags) {
SMConnection      223 net/tools/flip_server/sm_connection.cc void SMConnection::OnRegistration(EpollServer* eps, int fd, int event_mask) {
SMConnection      227 net/tools/flip_server/sm_connection.cc void SMConnection::OnEvent(int fd, EpollEvent* event) {
SMConnection      236 net/tools/flip_server/sm_connection.cc void SMConnection::OnUnregistration(int fd, bool replaced) {
SMConnection      240 net/tools/flip_server/sm_connection.cc void SMConnection::OnShutdown(EpollServer* eps, int fd) {
SMConnection      245 net/tools/flip_server/sm_connection.cc void SMConnection::Cleanup(const char* cleanup) {
SMConnection      257 net/tools/flip_server/sm_connection.cc void SMConnection::HandleEvents() {
SMConnection      306 net/tools/flip_server/sm_connection.cc bool SMConnection::WasSpdyNegotiated(SpdyMajorVersion* version_negotiated) {
SMConnection      344 net/tools/flip_server/sm_connection.cc bool SMConnection::SetupProtocolInterfaces() {
SMConnection      411 net/tools/flip_server/sm_connection.cc bool SMConnection::DoRead() {
SMConnection      496 net/tools/flip_server/sm_connection.cc bool SMConnection::DoConsumeReadData() {
SMConnection      526 net/tools/flip_server/sm_connection.cc void SMConnection::HandleResponseFullyRead() { sm_interface_->Cleanup(); }
SMConnection      528 net/tools/flip_server/sm_connection.cc bool SMConnection::DoWrite() {
SMConnection      626 net/tools/flip_server/sm_connection.cc void SMConnection::Reset() {
SMConnection      657 net/tools/flip_server/sm_connection.cc SMConnection* SMConnection::NewSMConnection(EpollServer* epoll_server,
SMConnection      662 net/tools/flip_server/sm_connection.cc   return new SMConnection(
SMConnection       43 net/tools/flip_server/sm_connection.h class SMConnection : public SMConnectionInterface,
SMConnection       47 net/tools/flip_server/sm_connection.h   virtual ~SMConnection();
SMConnection       49 net/tools/flip_server/sm_connection.h   static SMConnection* NewSMConnection(EpollServer* epoll_server,
SMConnection      119 net/tools/flip_server/sm_connection.h   friend std::ostream& operator<<(std::ostream& os, const SMConnection& c) {
SMConnection      124 net/tools/flip_server/sm_connection.h   SMConnection(EpollServer* epoll_server,
SMConnection       18 net/tools/flip_server/sm_interface.h class SMConnection;
SMConnection       79 net/tools/flip_server/sm_interface.h   virtual void SMConnectionDone(SMConnection* connection) = 0;
SMConnection       35 net/tools/flip_server/spdy_interface.cc SpdySM::SpdySM(SMConnection* connection,
SMConnection       76 net/tools/flip_server/spdy_interface.cc   SMConnection* server_connection =
SMConnection       77 net/tools/flip_server/spdy_interface.cc       SMConnection::NewSMConnection(epoll_server_,
SMConnection       29 net/tools/flip_server/spdy_interface.h   SpdySM(SMConnection* connection,
SMConnection      201 net/tools/flip_server/spdy_interface.h   SMConnection* connection_;
SMConnection       70 net/tools/flip_server/spdy_interface_test.cc class FakeSMConnection : public SMConnection {
SMConnection       77 net/tools/flip_server/spdy_interface_test.cc       : SMConnection(epoll_server,
SMConnection      100 net/tools/flip_server/spdy_interface_test.cc   TestSpdySM(SMConnection* connection,
SMConnection       18 net/tools/flip_server/streamer_interface.cc StreamerSM::StreamerSM(SMConnection* connection,
SMConnection      120 net/tools/flip_server/streamer_interface.cc     SMConnection* server_connection = SMConnection::NewSMConnection(
SMConnection       20 net/tools/flip_server/streamer_interface.h class SMConnection;
SMConnection       25 net/tools/flip_server/streamer_interface.h   StreamerSM(SMConnection* connection,
SMConnection      125 net/tools/flip_server/streamer_interface.h   SMConnection* connection_;