Lines Matching defs:done
150 static CURLcode tftp_connect(struct Curl_easy *data, bool *done);
154 static CURLcode tftp_do(struct Curl_easy *data, bool *done);
159 static CURLcode tftp_multi_statemach(struct Curl_easy *data, bool *done);
174 tftp_done, /* done */
684 * should be a good TFTP client and let the server know we're done */
831 * should be a good TFTP client and let the server know we're done */
948 /* done, free dynamically allocated pkt buffers */
965 static CURLcode tftp_connect(struct Curl_easy *data, bool *done)
1020 * reused or a custom local port was desired, this has already been done!
1045 *done = TRUE;
1054 * The done callback
1222 static CURLcode tftp_multi_statemach(struct Curl_easy *data, bool *done)
1230 *done = FALSE;
1240 *done = (state->state == TFTP_STATE_FIN) ? TRUE : FALSE;
1241 if(*done)
1242 /* Tell curl we're done */
1263 *done = (state->state == TFTP_STATE_FIN) ? TRUE : FALSE;
1264 if(*done)
1265 /* Tell curl we're done */
1340 static CURLcode tftp_do(struct Curl_easy *data, bool *done)
1346 *done = FALSE;
1349 result = tftp_connect(data, done);
1358 result = tftp_perform(data, done);