Lines Matching refs:replyPrivate
114 QHttpNetworkReplyPrivate *replyPrivate = m_reply->d_func(); in _q_receiveReply() local
115 qint64 headerBytes = replyPrivate->readHeader(m_socket); in _q_receiveReply()
123 if (replyPrivate->state == QHttpNetworkReplyPrivate::ReadingDataState) { in _q_receiveReply()
124 if (replyPrivate->isCompressed() && replyPrivate->autoDecompress) { in _q_receiveReply()
126 replyPrivate->removeAutoDecompressHeader(); in _q_receiveReply()
128 replyPrivate->autoDecompress = false; in _q_receiveReply()
130 if (replyPrivate->statusCode == 100) { in _q_receiveReply()
131 replyPrivate->clearHttpLayerInformation(); in _q_receiveReply()
132 replyPrivate->state = QHttpNetworkReplyPrivate::ReadingStatusState; in _q_receiveReply()
135 if (replyPrivate->shouldEmitSignals()) in _q_receiveReply()
141 if (!replyPrivate->expectContent()) { in _q_receiveReply()
142 replyPrivate->state = QHttpNetworkReplyPrivate::AllDoneState; in _q_receiveReply()
150 QHttpNetworkReplyPrivate *replyPrivate = m_reply->d_func(); in _q_receiveReply() local
152 …replyPrivate->downstreamLimited && !replyPrivate->responseData.isEmpty() && replyPrivate->shouldEm… in _q_receiveReply()
163 if (replyPrivate->userProvidedDownloadBuffer) { in _q_receiveReply()
168 …qint64 haveRead = replyPrivate->readBodyVeryFast(m_socket, replyPrivate->userProvidedDownloadBuffe… in _q_receiveReply()
171 replyPrivate->totalProgress += haveRead; in _q_receiveReply()
173 … emit m_reply->dataReadProgress(replyPrivate->totalProgress, replyPrivate->bodyLength); in _q_receiveReply()
180 } else if (!replyPrivate->isChunked() && !replyPrivate->autoDecompress in _q_receiveReply()
181 && replyPrivate->bodyLength > 0) { in _q_receiveReply()
184 qint64 haveRead = replyPrivate->readBodyFast(m_socket, &replyPrivate->responseData); in _q_receiveReply()
186 replyPrivate->totalProgress += haveRead; in _q_receiveReply()
187 if (replyPrivate->shouldEmitSignals()) { in _q_receiveReply()
189 … emit m_reply->dataReadProgress(replyPrivate->totalProgress, replyPrivate->bodyLength); in _q_receiveReply()
196 qint64 haveRead = replyPrivate->readBody(m_socket, &replyPrivate->responseData); in _q_receiveReply()
199 replyPrivate->totalProgress += haveRead; in _q_receiveReply()
200 if (replyPrivate->shouldEmitSignals()) { in _q_receiveReply()
202 … emit m_reply->dataReadProgress(replyPrivate->totalProgress, replyPrivate->bodyLength); in _q_receiveReply()
211 if (replyPrivate->state == QHttpNetworkReplyPrivate::ReadingDataState) in _q_receiveReply()
288 QHttpNetworkReplyPrivate *replyPrivate = m_reply->d_func(); in sendRequest() local
289 replyPrivate->clear(); in sendRequest()
290 replyPrivate->connection = m_connection; in sendRequest()
291 replyPrivate->connectionChannel = m_channel; in sendRequest()
292 replyPrivate->autoDecompress = m_channel->request.d->autoDecompress; in sendRequest()
293 replyPrivate->pipeliningUsed = false; in sendRequest()