Lines Matching defs:done
112 Curl_http_done, /* done */
140 Curl_http_done, /* done */
490 /* rewind data when completely done sending! */
518 /* rewind data when completely done sending! */
620 (!data->state.authhost.done) &&
623 authentication is not "done" yet and
631 data->state.authhost.done = TRUE;
728 /* NOTE: this function should set 'done' TRUE, as the other auth
730 authstatus->done = TRUE;
744 /* NOTE: this function should set 'done' TRUE, as the other auth
746 authstatus->done = TRUE;
764 authstatus->multipass = (!authstatus->done) ? TRUE : FALSE;
776 * done.
816 authhost->done = TRUE;
817 authproxy->done = TRUE;
845 /* we have no proxy so let's pretend we're done authenticating
847 authproxy->done = TRUE;
858 authhost->done = TRUE;
860 if(((authhost->multipass && !authhost->done) ||
861 (authproxy->multipass && !authproxy->done)) &&
1153 ** particular stage, and we've done it, we're OK. But, if
1506 CURLcode Curl_http_connect(struct Curl_easy *data, bool *done)
1514 return Curl_conn_connect(data, FIRSTSOCKET, FALSE, done);
1541 /* Clear multipass flag. If authentication isn't done yet, then it will get
1940 /* only send this if the contents was non-blank or done special */
2981 bool *done)
2985 *done = FALSE;
2991 *done = TRUE;
3010 *done = TRUE;
3028 *done = TRUE;
3082 CURLcode Curl_http(struct Curl_easy *data, bool *done)
3095 /* Always consider the DO phase done after this function call, even if there
3098 *done = TRUE;
3292 /* append HTTP2 upgrade magic stuff to the HTTP request if it isn't done
3344 data->req.keepon &= ~KEEP_SEND; /* we're done writing */
3507 connclose(conn, "Proxy-Connection: asked to close after done");
4197 * The check for close above is done simply because of something
4507 * when not done yet and otherwise return without consuming data.
4512 bool *done)
4514 *done = FALSE;
4525 result = Curl_http_firstwrite(data, data->conn, done);
4544 bool *done)
4550 *done = FALSE;
4551 result = Curl_http_write_resp_hds(data, buf, blen, &consumed, done);
4552 if(result || *done)
4559 * and are done with heders, e.g. it is BODY data */