• Home
  • Raw
  • Download

Lines Matching refs:SpdySession

272     const base::WeakPtr<SpdySession>& session,  in StartRequest()
346 SpdySession::ActiveStreamInfo::ActiveStreamInfo() in ActiveStreamInfo()
350 SpdySession::ActiveStreamInfo::ActiveStreamInfo(SpdyStream* stream) in ActiveStreamInfo()
354 SpdySession::ActiveStreamInfo::~ActiveStreamInfo() {} in ~ActiveStreamInfo()
356 SpdySession::PushedStreamInfo::PushedStreamInfo() : stream_id(0) {} in PushedStreamInfo()
358 SpdySession::PushedStreamInfo::PushedStreamInfo( in PushedStreamInfo()
364 SpdySession::PushedStreamInfo::~PushedStreamInfo() {} in ~PushedStreamInfo()
366 SpdySession::SpdySession( in SpdySession() function in net::SpdySession
447 SpdySession::~SpdySession() { in ~SpdySession()
463 Error SpdySession::InitializeWithSocket( in InitializeWithSocket()
539 bool SpdySession::VerifyDomainAuthentication(const std::string& domain) { in VerifyDomainAuthentication()
561 int SpdySession::GetPushStream( in GetPushStream()
589 Error SpdySession::TryAccessStream(const GURL& url) { in TryAccessStream()
606 int SpdySession::TryCreateStream( in TryCreateStream()
637 int SpdySession::CreateStream(const SpdyStreamRequest& request, in CreateStream()
686 void SpdySession::CancelStreamRequest( in CancelStreamRequest()
722 base::WeakPtr<SpdyStreamRequest> SpdySession::GetNextPendingStreamRequest() { in GetNextPendingStreamRequest()
736 void SpdySession::ProcessPendingStreamRequests() { in ProcessPendingStreamRequests()
754 base::Bind(&SpdySession::CompleteStreamRequest, in ProcessPendingStreamRequests()
760 void SpdySession::AddPooledAlias(const SpdySessionKey& alias_key) { in AddPooledAlias()
764 SpdyMajorVersion SpdySession::GetProtocolVersion() const { in GetProtocolVersion()
769 base::WeakPtr<SpdySession> SpdySession::GetWeakPtr() { in GetWeakPtr()
773 bool SpdySession::CloseOneIdleConnection() { in CloseOneIdleConnection()
788 void SpdySession::EnqueueStreamWrite( in EnqueueStreamWrite()
799 scoped_ptr<SpdyFrame> SpdySession::CreateSynStream( in CreateSynStream()
836 scoped_ptr<SpdyBuffer> SpdySession::CreateDataBuffer(SpdyStreamId stream_id, in CreateDataBuffer()
955 base::Bind(&SpdySession::OnWriteBufferConsumed, in CreateDataBuffer()
963 void SpdySession::CloseActiveStream(SpdyStreamId stream_id, int status) { in CloseActiveStream()
975 void SpdySession::CloseCreatedStream( in CloseCreatedStream()
988 void SpdySession::ResetStream(SpdyStreamId stream_id, in ResetStream()
1002 bool SpdySession::IsStreamActive(SpdyStreamId stream_id) const { in IsStreamActive()
1006 LoadState SpdySession::GetLoadState() const { in GetLoadState()
1012 void SpdySession::CloseActiveStreamIterator(ActiveStreamMap::iterator it, in CloseActiveStreamIterator()
1030 base::WeakPtr<SpdySession> weak_this = GetWeakPtr(); in CloseActiveStreamIterator()
1049 void SpdySession::CloseCreatedStreamIterator(CreatedStreamSet::iterator it, in CloseCreatedStreamIterator()
1056 void SpdySession::ResetStreamIterator(ActiveStreamMap::iterator it, in ResetStreamIterator()
1070 void SpdySession::EnqueueResetStreamFrame(SpdyStreamId stream_id, in EnqueueResetStreamFrame()
1089 void SpdySession::PumpReadLoop(ReadState expected_read_state, int result) { in PumpReadLoop()
1106 int SpdySession::DoReadLoop(ReadState expected_read_state, int result) { in DoReadLoop()
1146 base::Bind(&SpdySession::PumpReadLoop, in DoReadLoop()
1159 int SpdySession::DoRead() { in DoRead()
1169 base::Bind(&SpdySession::PumpReadLoop, in DoRead()
1173 int SpdySession::DoReadComplete(int result) { in DoReadComplete()
1224 void SpdySession::PumpWriteLoop(WriteState expected_write_state, int result) { in PumpWriteLoop()
1241 int SpdySession::DoWriteLoop(WriteState expected_write_state, int result) { in DoWriteLoop()
1286 int SpdySession::DoWrite() { in DoWrite()
1341 base::Bind(&SpdySession::PumpWriteLoop, in DoWrite()
1345 int SpdySession::DoWriteComplete(int result) { in DoWriteComplete()
1398 void SpdySession::DcheckGoingAway() const { in DcheckGoingAway()
1408 void SpdySession::DcheckClosed() const { in DcheckClosed()
1417 void SpdySession::StartGoingAway(SpdyStreamId last_good_stream_id, in StartGoingAway()
1463 void SpdySession::MaybeFinishGoingAway() { in MaybeFinishGoingAway()
1472 SpdySession::CloseSessionResult SpdySession::DoCloseSession( in DoCloseSession()
1508 void SpdySession::RemoveFromPool() { in RemoveFromPool()
1517 void SpdySession::LogAbandonedStream(SpdyStream* stream, Error status) { in LogAbandonedStream()
1529 void SpdySession::LogAbandonedActiveStream(ActiveStreamMap::const_iterator it, in LogAbandonedActiveStream()
1544 int SpdySession::GetNewStreamId() { in GetNewStreamId()
1552 void SpdySession::CloseSessionOnError(Error err, in CloseSessionOnError()
1559 base::Value* SpdySession::GetInfoAsValue() const { in GetInfoAsValue()
1609 bool SpdySession::IsReused() const { in IsReused()
1613 bool SpdySession::GetLoadTimingInfo(SpdyStreamId stream_id, in GetLoadTimingInfo()
1619 int SpdySession::GetPeerAddress(IPEndPoint* address) const { in GetPeerAddress()
1631 int SpdySession::GetLocalAddress(IPEndPoint* address) const { in GetLocalAddress()
1643 void SpdySession::EnqueueSessionWrite(RequestPriority priority, in EnqueueSessionWrite()
1658 void SpdySession::EnqueueWrite(RequestPriority priority, in EnqueueWrite()
1673 base::Bind(&SpdySession::PumpWriteLoop, in EnqueueWrite()
1678 void SpdySession::InsertCreatedStream(scoped_ptr<SpdyStream> stream) { in InsertCreatedStream()
1684 scoped_ptr<SpdyStream> SpdySession::ActivateCreatedStream(SpdyStream* stream) { in ActivateCreatedStream()
1693 void SpdySession::InsertActivatedStream(scoped_ptr<SpdyStream> stream) { in InsertActivatedStream()
1706 void SpdySession::DeleteStream(scoped_ptr<SpdyStream> stream, int status) { in DeleteStream()
1718 base::WeakPtr<SpdySession> weak_this = GetWeakPtr(); in DeleteStream()
1739 base::WeakPtr<SpdyStream> SpdySession::GetActivePushStream(const GURL& url) { in GetActivePushStream()
1760 bool SpdySession::GetSSLInfo(SSLInfo* ssl_info, in GetSSLInfo()
1768 bool SpdySession::GetSSLCertRequestInfo( in GetSSLCertRequestInfo()
1776 void SpdySession::OnError(SpdyFramer::SpdyError error_code) { in OnError()
1791 void SpdySession::OnStreamError(SpdyStreamId stream_id, in OnStreamError()
1810 void SpdySession::OnDataFrameHeader(SpdyStreamId stream_id, in OnDataFrameHeader()
1832 void SpdySession::OnStreamFrameData(SpdyStreamId stream_id, in OnStreamFrameData()
1861 base::Bind(&SpdySession::OnReadBufferConsumed, in OnStreamFrameData()
1889 void SpdySession::OnSettings(bool clear_persisted) { in OnSettings()
1906 void SpdySession::OnSetting(SpdySettingsIds id, in OnSetting()
1929 void SpdySession::OnSendCompressedFrame( in OnSendCompressedFrame()
1949 void SpdySession::OnReceiveCompressedFrame( in OnReceiveCompressedFrame()
1956 int SpdySession::OnInitialResponseHeadersReceived( in OnInitialResponseHeadersReceived()
1973 void SpdySession::OnSynStream(SpdyStreamId stream_id, in OnSynStream()
2124 void SpdySession::DeleteExpiredPushedStreams() { in DeleteExpiredPushedStreams()
2159 void SpdySession::OnSynReply(SpdyStreamId stream_id, in OnSynReply()
2202 void SpdySession::OnHeaders(SpdyStreamId stream_id, in OnHeaders()
2237 void SpdySession::OnRstStream(SpdyStreamId stream_id, in OnRstStream()
2275 void SpdySession::OnGoAway(SpdyStreamId last_accepted_stream_id, in OnGoAway()
2303 void SpdySession::OnPing(uint32 unique_id) { in OnPing()
2337 void SpdySession::OnWindowUpdate(SpdyStreamId stream_id, in OnWindowUpdate()
2405 void SpdySession::OnPushPromise(SpdyStreamId stream_id, in OnPushPromise()
2410 void SpdySession::SendStreamWindowUpdate(SpdyStreamId stream_id, in SendStreamWindowUpdate()
2420 void SpdySession::SendInitialData() { in SendInitialData()
2487 void SpdySession::SendSettings(const SettingsMap& settings) { in SendSettings()
2502 void SpdySession::HandleSetting(uint32 id, uint32 value) { in HandleSetting()
2536 void SpdySession::UpdateStreamsSendWindowSize(int32 delta_window_size) { in UpdateStreamsSendWindowSize()
2549 void SpdySession::SendPrefacePingIfNoneInFlight() { in SendPrefacePingIfNoneInFlight()
2559 void SpdySession::SendPrefacePing() { in SendPrefacePing()
2563 void SpdySession::SendWindowUpdateFrame(SpdyStreamId stream_id, in SendWindowUpdateFrame()
2586 void SpdySession::WritePingFrame(uint32 unique_id) { in WritePingFrame()
2605 void SpdySession::PlanToCheckPingStatus() { in PlanToCheckPingStatus()
2612 base::Bind(&SpdySession::CheckPingStatus, weak_factory_.GetWeakPtr(), in PlanToCheckPingStatus()
2616 void SpdySession::CheckPingStatus(base::TimeTicks last_check_time) { in CheckPingStatus()
2645 base::Bind(&SpdySession::CheckPingStatus, weak_factory_.GetWeakPtr(), in CheckPingStatus()
2650 void SpdySession::RecordPingRTTHistogram(base::TimeDelta duration) { in RecordPingRTTHistogram()
2654 void SpdySession::RecordProtocolErrorHistogram( in RecordProtocolErrorHistogram()
2664 void SpdySession::RecordHistograms() { in RecordHistograms()
2734 void SpdySession::CompleteStreamRequest( in CompleteStreamRequest()
2752 SSLClientSocket* SpdySession::GetSSLClientSocket() const { in GetSSLClientSocket()
2761 void SpdySession::OnWriteBufferConsumed( in OnWriteBufferConsumed()
2786 void SpdySession::IncreaseSendWindowSize(int32 delta_window_size) { in IncreaseSendWindowSize()
2819 void SpdySession::DecreaseSendWindowSize(int32 delta_window_size) { in DecreaseSendWindowSize()
2840 void SpdySession::OnReadBufferConsumed( in OnReadBufferConsumed()
2856 void SpdySession::IncreaseRecvWindowSize(int32 delta_window_size) { in IncreaseRecvWindowSize()
2880 void SpdySession::DecreaseRecvWindowSize(int32 delta_window_size) { in DecreaseRecvWindowSize()
2906 void SpdySession::QueueSendStalledStream(const SpdyStream& stream) { in QueueSendStalledStream()
2914 void SpdySession::ResumeSendStalledStreams() { in ResumeSendStalledStreams()
2943 SpdyStreamId SpdySession::PopStreamToPossiblyResume() { in PopStreamToPossiblyResume()