Lines Matching refs:CURLcode

148 static CURLcode tftp_rx(struct tftp_state_data *state, tftp_event_t event);
149 static CURLcode tftp_tx(struct tftp_state_data *state, tftp_event_t event);
150 static CURLcode tftp_connect(struct Curl_easy *data, bool *done);
151 static CURLcode tftp_disconnect(struct Curl_easy *data,
154 static CURLcode tftp_do(struct Curl_easy *data, bool *done);
155 static CURLcode tftp_done(struct Curl_easy *data,
156 CURLcode, bool premature);
157 static CURLcode tftp_setup_connection(struct Curl_easy *data,
159 static CURLcode tftp_multi_statemach(struct Curl_easy *data, bool *done);
160 static CURLcode tftp_doing(struct Curl_easy *data, bool *dophase_done);
163 static CURLcode tftp_translate_code(tftp_error_t error);
204 static CURLcode tftp_set_timeouts(struct tftp_state_data *state) in tftp_set_timeouts()
311 static CURLcode tftp_parse_option_ack(struct tftp_state_data *state, in tftp_parse_option_ack()
384 static CURLcode tftp_option_add(struct tftp_state_data *state, size_t *csize, in tftp_option_add()
394 static CURLcode tftp_connect_for_tx(struct tftp_state_data *state, in tftp_connect_for_tx()
397 CURLcode result; in tftp_connect_for_tx()
410 static CURLcode tftp_connect_for_rx(struct tftp_state_data *state, in tftp_connect_for_rx()
413 CURLcode result; in tftp_connect_for_rx()
426 static CURLcode tftp_send_first(struct tftp_state_data *state, in tftp_send_first()
434 CURLcode result = CURLE_OK; in tftp_send_first()
576 static CURLcode tftp_rx(struct tftp_state_data *state, in tftp_rx()
699 static CURLcode tftp_tx(struct tftp_state_data *state, tftp_event_t event) in tftp_tx()
703 CURLcode result = CURLE_OK; in tftp_tx()
849 static CURLcode tftp_translate_code(tftp_error_t error) in tftp_translate_code()
851 CURLcode result = CURLE_OK; in tftp_translate_code()
901 static CURLcode tftp_state_machine(struct tftp_state_data *state, in tftp_state_machine()
904 CURLcode result = CURLE_OK; in tftp_state_machine()
940 static CURLcode tftp_disconnect(struct Curl_easy *data, in tftp_disconnect()
964 static CURLcode tftp_connect(struct Curl_easy *data, bool *done) in tftp_connect()
1056 static CURLcode tftp_done(struct Curl_easy *data, CURLcode status, in tftp_done()
1059 CURLcode result = CURLE_OK; in tftp_done()
1098 static CURLcode tftp_receive_packet(struct Curl_easy *data) in tftp_receive_packet()
1101 CURLcode result = CURLE_OK; in tftp_receive_packet()
1217 static CURLcode tftp_multi_statemach(struct Curl_easy *data, bool *done) in tftp_multi_statemach()
1220 CURLcode result = CURLE_OK; in tftp_multi_statemach()
1276 static CURLcode tftp_doing(struct Curl_easy *data, bool *dophase_done) in tftp_doing()
1278 CURLcode result; in tftp_doing()
1303 static CURLcode tftp_perform(struct Curl_easy *data, bool *dophase_done) in tftp_perform()
1305 CURLcode result = CURLE_OK; in tftp_perform()
1335 static CURLcode tftp_do(struct Curl_easy *data, bool *done) in tftp_do()
1338 CURLcode result; in tftp_do()
1364 static CURLcode tftp_setup_connection(struct Curl_easy *data, in tftp_setup_connection()