Lines Matching refs: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);
964 static CURLcode tftp_connect(struct Curl_easy *data, bool *done) in tftp_connect() argument
1044 *done = TRUE; in tftp_connect()
1217 static CURLcode tftp_multi_statemach(struct Curl_easy *data, bool *done) in tftp_multi_statemach() argument
1225 *done = FALSE; in tftp_multi_statemach()
1235 *done = (state->state == TFTP_STATE_FIN); in tftp_multi_statemach()
1236 if(*done) in tftp_multi_statemach()
1258 *done = (state->state == TFTP_STATE_FIN); in tftp_multi_statemach()
1259 if(*done) in tftp_multi_statemach()
1335 static CURLcode tftp_do(struct Curl_easy *data, bool *done) in tftp_do() argument
1341 *done = FALSE; in tftp_do()
1344 result = tftp_connect(data, done); in tftp_do()
1353 result = tftp_perform(data, done); in tftp_do()