Lines Matching defs:done
109 static CURLcode ftp_regular_transfer(struct Curl_easy *data, bool *done);
125 static CURLcode ftp_do(struct Curl_easy *data, bool *done);
128 static CURLcode ftp_connect(struct Curl_easy *data, bool *done);
132 static CURLcode ftp_multi_statemach(struct Curl_easy *data, bool *done);
161 ftp_done, /* done */
192 ftp_done, /* done */
553 int *ftpcode, /* return the ftp-code if done */
859 /* already done and fine */
1512 /* This is called after the CWD commands have been done in the beginning of
1979 Curl_resolv_unlock(data, addr); /* we're done using this address */
1997 Curl_resolv_unlock(data, addr); /* we're done using this address */
2249 /* We always (attempt to) get the size of downloads, so it is done before
2788 bool done;
2796 result = Curl_conn_connect(data, FIRSTSOCKET, TRUE, &done);
2956 ftp_state(data, FTP_STOP); /* we are done with the CONNECT phase! */
3001 ftp_state(data, FTP_STOP); /* we are done with the CONNECT phase! */
3012 ftp_state(data, FTP_STOP); /* we are done with the CONNECT phase! */
3141 /* called repeatedly until done from multi.c */
3143 bool *done)
3152 *done = (ftpc->state == FTP_STOP) ? TRUE : FALSE;
3177 * The variable 'done' points to will be TRUE if the protocol-layer connect
3178 * phase is done when this function returns, or FALSE if not.
3182 bool *done) /* see description above */
3189 *done = FALSE; /* default to not done yet */
3198 result = Curl_conn_connect(data, FIRSTSOCKET, TRUE, done);
3210 result = ftp_multi_statemach(data, done);
3219 * The DONE function. This does what needs to be done after a single DO has
3321 /* shut down the socket to inform the server we're done */
3574 * 'complete' can return 0 for incomplete, 1 for done and -1 for go back
3592 /* if the second connection isn't done yet, wait for it to have
3615 They are only done to kickstart the do_more state */
3742 *dophase_done = FALSE; /* not done yet */
3954 will be done because of CURLWC_CLEAN state */
4004 static CURLcode ftp_do(struct Curl_easy *data, bool *done)
4010 *done = FALSE; /* default to false */
4029 result = ftp_regular_transfer(data, done);
4246 ftpc->cwddone = FALSE; /* default to not done */
4321 * Performs all commands done before a regular transfer between a local and a
4346 dophase_done); /* all commands in the DO-phase done? */