Lines Matching defs:done

104 static CURLcode ssh_connect(struct Curl_easy *data, bool *done);
105 static CURLcode ssh_multi_statemach(struct Curl_easy *data, bool *done);
106 static CURLcode ssh_do(struct Curl_easy *data, bool *done);
131 scp_done, /* done */
160 sftp_done, /* done */
1123 * This is done by simply passing sshc->rsa_pub = NULL.
1383 infof(data, "SSH CONNECT phase done");
1453 DEBUGF(infof(data, "SSH CONNECT phase done"));
2049 * If this is not done the destination file will be named the
2634 DEBUGF(infof(data, "SFTP DONE done"));
2652 sftp_handle might not have been taken down so make sure that is done
2711 * not done the destination file will be named the same name as the last
3090 /* called repeatedly until done from multi.c */
3091 static CURLcode ssh_multi_statemach(struct Curl_easy *data, bool *done)
3100 *done = (sshc->state == SSH_STOP) ? TRUE : FALSE;
3101 /* if there's no error, it isn't done and it didn't EWOULDBLOCK, then
3103 } while(!result && !*done && !block);
3238 static CURLcode ssh_connect(struct Curl_easy *data, bool *done)
3390 result = ssh_multi_statemach(data, done);
3413 *dophase_done = FALSE; /* not done yet */
3448 static CURLcode ssh_do(struct Curl_easy *data, bool *done)
3455 *done = FALSE; /* default to false */
3469 result = scp_perform(data, &connected, done);
3471 result = sftp_perform(data, &connected, done);
3496 /* generic done function for both SCP and SFTP called from their specific
3497 done functions */
3602 *dophase_done = FALSE; /* not done yet */
3649 DEBUGF(infof(data, "SSH DISCONNECT is done"));