Lines Matching defs:done
86 static CURLcode imap_regular_transfer(struct Curl_easy *data, bool *done);
87 static CURLcode imap_do(struct Curl_easy *data, bool *done);
90 static CURLcode imap_connect(struct Curl_easy *data, bool *done);
93 static CURLcode imap_multi_statemach(struct Curl_easy *data, bool *done);
123 imap_done, /* done */
152 imap_done, /* done */
1180 pp->nfinal = 0; /* done */
1187 /* no size, we're done with the data */
1386 /* Called repeatedly until done from multi.c */
1387 static CURLcode imap_multi_statemach(struct Curl_easy *data, bool *done)
1402 *done = (imapc->state == IMAP_STOP) ? TRUE : FALSE;
1449 * The variable 'done' points to will be TRUE if the protocol-layer connect
1450 * phase is done when this function returns, or FALSE if not.
1452 static CURLcode imap_connect(struct Curl_easy *data, bool *done)
1459 *done = FALSE; /* default to not done yet */
1484 result = imap_multi_statemach(data, done);
1493 * The DONE function. This does what needs to be done after a single DO has
1511 connclose(conn, "IMAP done with bad status"); /* marked for closure */
1574 *dophase_done = FALSE; /* not done yet */
1628 static CURLcode imap_do(struct Curl_easy *data, bool *done)
1631 *done = FALSE; /* default to false */
1643 result = imap_regular_transfer(data, done);
1722 * Performs all commands done before a regular transfer between a local and a