Lines Matching refs:QHttpNetworkConnectionChannel

89 QHttpNetworkConnectionChannel::QHttpNetworkConnectionChannel()  in QHttpNetworkConnectionChannel()  function in QHttpNetworkConnectionChannel
117 void QHttpNetworkConnectionChannel::init() in init()
212 void QHttpNetworkConnectionChannel::close() in close()
214 if (state == QHttpNetworkConnectionChannel::ClosingState) in close()
218 state = QHttpNetworkConnectionChannel::IdleState; in close()
220 state = QHttpNetworkConnectionChannel::IdleState; in close()
222 state = QHttpNetworkConnectionChannel::ClosingState; in close()
235 void QHttpNetworkConnectionChannel::abort() in abort()
238 state = QHttpNetworkConnectionChannel::IdleState; in abort()
240 state = QHttpNetworkConnectionChannel::IdleState; in abort()
242 state = QHttpNetworkConnectionChannel::ClosingState; in abort()
255 bool QHttpNetworkConnectionChannel::sendRequest() in sendRequest()
267 void QHttpNetworkConnectionChannel::sendRequestDelayed() in sendRequestDelayed()
276 void QHttpNetworkConnectionChannel::_q_receiveReply() in _q_receiveReply()
282 void QHttpNetworkConnectionChannel::_q_readyRead() in _q_readyRead()
289 void QHttpNetworkConnectionChannel::handleUnexpectedEOF() in handleUnexpectedEOF()
312 bool QHttpNetworkConnectionChannel::ensureConnection() in ensureConnection()
341 state = QHttpNetworkConnectionChannel::ConnectingState; in ensureConnection()
461 void QHttpNetworkConnectionChannel::allDone() in allDone()
531 if (state != QHttpNetworkConnectionChannel::ClosingState) in allDone()
532 state = QHttpNetworkConnectionChannel::IdleState; in allDone()
558 state = QHttpNetworkConnectionChannel::ReadingState; in allDone()
585 void QHttpNetworkConnectionChannel::detectPipeliningSupport() in detectPipeliningSupport()
606 pipeliningSupported = QHttpNetworkConnectionChannel::PipeliningProbablySupported; in detectPipeliningSupport()
608 pipeliningSupported = QHttpNetworkConnectionChannel::PipeliningSupportUnknown; in detectPipeliningSupport()
613 void QHttpNetworkConnectionChannel::requeueCurrentlyPipelinedRequests() in requeueCurrentlyPipelinedRequests()
626 void QHttpNetworkConnectionChannel::handleStatus() in handleStatus()
694 bool QHttpNetworkConnectionChannel::resetUploadData() in resetUploadData()
715 void QHttpNetworkConnectionChannel::setProxy(const QNetworkProxy &networkProxy) in setProxy()
727 void QHttpNetworkConnectionChannel::ignoreSslErrors() in ignoreSslErrors()
736 void QHttpNetworkConnectionChannel::ignoreSslErrors(const QList<QSslError> &errors) in ignoreSslErrors()
744 void QHttpNetworkConnectionChannel::setSslConfiguration(const QSslConfiguration &config) in setSslConfiguration()
757 void QHttpNetworkConnectionChannel::pipelineInto(HttpMessagePair &pair) in pipelineInto()
781 void QHttpNetworkConnectionChannel::pipelineFlush() in pipelineFlush()
796 void QHttpNetworkConnectionChannel::closeAndResendCurrentRequest() in closeAndResendCurrentRequest()
806 void QHttpNetworkConnectionChannel::resendCurrentRequest() in resendCurrentRequest()
815 bool QHttpNetworkConnectionChannel::isSocketBusy() const in isSocketBusy()
817 return (state & QHttpNetworkConnectionChannel::BusyState); in isSocketBusy()
820 bool QHttpNetworkConnectionChannel::isSocketWriting() const in isSocketWriting()
822 return (state & QHttpNetworkConnectionChannel::WritingState); in isSocketWriting()
825 bool QHttpNetworkConnectionChannel::isSocketWaiting() const in isSocketWaiting()
827 return (state & QHttpNetworkConnectionChannel::WaitingState); in isSocketWaiting()
830 bool QHttpNetworkConnectionChannel::isSocketReading() const in isSocketReading()
832 return (state & QHttpNetworkConnectionChannel::ReadingState); in isSocketReading()
835 void QHttpNetworkConnectionChannel::_q_bytesWritten(qint64 bytes) in _q_bytesWritten()
850 void QHttpNetworkConnectionChannel::_q_disconnected() in _q_disconnected()
852 if (state == QHttpNetworkConnectionChannel::ClosingState) { in _q_disconnected()
853 state = QHttpNetworkConnectionChannel::IdleState; in _q_disconnected()
861 state = QHttpNetworkConnectionChannel::ReadingState; in _q_disconnected()
864 } else if (state == QHttpNetworkConnectionChannel::IdleState && resendCurrent) { in _q_disconnected()
868 state = QHttpNetworkConnectionChannel::IdleState; in _q_disconnected()
879 void QHttpNetworkConnectionChannel::_q_connected() in _q_connected()
922 pipeliningSupported = QHttpNetworkConnectionChannel::PipeliningSupportUnknown; in _q_connected()
947 state = QHttpNetworkConnectionChannel::IdleState; in _q_connected()
955 state = QHttpNetworkConnectionChannel::IdleState; in _q_connected()
978 void QHttpNetworkConnectionChannel::_q_error(QAbstractSocket::SocketError socketError) in _q_error()
995 if (!reply && state == QHttpNetworkConnectionChannel::IdleState) { in _q_error()
1011 …} else if (state != QHttpNetworkConnectionChannel::IdleState && state != QHttpNetworkConnectionCha… in _q_error()
1023 } else if (state == QHttpNetworkConnectionChannel::ReadingState) { in _q_error()
1052 state = QHttpNetworkConnectionChannel::IdleState; in _q_error()
1065 if (state == QHttpNetworkConnectionChannel::WritingState && (reconnectAttempts-- > 0)) { in _q_error()
1150 state = QHttpNetworkConnectionChannel::IdleState; in _q_error()
1152 state = QHttpNetworkConnectionChannel::IdleState; in _q_error()
1154 state = QHttpNetworkConnectionChannel::ClosingState; in _q_error()
1162 void QHttpNetworkConnectionChannel::_q_proxyAuthenticationRequired(const QNetworkProxy &proxy, QAut… in _q_proxyAuthenticationRequired()
1182 void QHttpNetworkConnectionChannel::_q_uploadDataReadyRead() in _q_uploadDataReadyRead()
1188 void QHttpNetworkConnectionChannel::emitFinishedWithError(QNetworkReply::NetworkError error, in emitFinishedWithError()
1192 emit reply->finishedWithError(error, QHttpNetworkConnectionChannel::tr(message)); in emitFinishedWithError()
1197 emit currentReply->finishedWithError(error, QHttpNetworkConnectionChannel::tr(message)); in emitFinishedWithError()
1202 void QHttpNetworkConnectionChannel::_q_encrypted() in _q_encrypted()
1279 state = QHttpNetworkConnectionChannel::IdleState; in _q_encrypted()
1304 void QHttpNetworkConnectionChannel::requeueSpdyRequests() in requeueSpdyRequests()
1313 void QHttpNetworkConnectionChannel::_q_sslErrors(const QList<QSslError> &errors) in _q_sslErrors()
1341 void QHttpNetworkConnectionChannel::_q_preSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthentic… in _q_preSharedKeyAuthenticationRequired()
1364 void QHttpNetworkConnectionChannel::_q_encryptedBytesWritten(qint64 bytes) in _q_encryptedBytesWritten()
1375 void QHttpNetworkConnectionChannel::setConnection(QHttpNetworkConnection *c) in setConnection()