• Home
  • Raw
  • Download

Lines Matching refs:CURLcode

147 static CURLcode tftp_rx(struct tftp_state_data *state, tftp_event_t event);
148 static CURLcode tftp_tx(struct tftp_state_data *state, tftp_event_t event);
149 static CURLcode tftp_connect(struct Curl_easy *data, bool *done);
150 static CURLcode tftp_disconnect(struct Curl_easy *data,
153 static CURLcode tftp_do(struct Curl_easy *data, bool *done);
154 static CURLcode tftp_done(struct Curl_easy *data,
155 CURLcode, bool premature);
156 static CURLcode tftp_setup_connection(struct Curl_easy *data,
158 static CURLcode tftp_multi_statemach(struct Curl_easy *data, bool *done);
159 static CURLcode tftp_doing(struct Curl_easy *data, bool *dophase_done);
162 static CURLcode tftp_translate_code(tftp_error_t error);
202 static CURLcode tftp_set_timeouts(struct tftp_state_data *state) in tftp_set_timeouts()
310 static CURLcode tftp_parse_option_ack(struct tftp_state_data *state, in tftp_parse_option_ack()
383 static CURLcode tftp_option_add(struct tftp_state_data *state, size_t *csize, in tftp_option_add()
393 static CURLcode tftp_connect_for_tx(struct tftp_state_data *state, in tftp_connect_for_tx()
396 CURLcode result; in tftp_connect_for_tx()
409 static CURLcode tftp_connect_for_rx(struct tftp_state_data *state, in tftp_connect_for_rx()
412 CURLcode result; in tftp_connect_for_rx()
425 static CURLcode tftp_send_first(struct tftp_state_data *state, in tftp_send_first()
433 CURLcode result = CURLE_OK; in tftp_send_first()
579 static CURLcode tftp_rx(struct tftp_state_data *state, in tftp_rx()
702 static CURLcode tftp_tx(struct tftp_state_data *state, tftp_event_t event) in tftp_tx()
706 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()
1058 static CURLcode tftp_done(struct Curl_easy *data, CURLcode status, in tftp_done()
1061 CURLcode result = CURLE_OK; in tftp_done()
1100 static CURLcode tftp_receive_packet(struct Curl_easy *data) in tftp_receive_packet()
1104 CURLcode result = CURLE_OK; in tftp_receive_packet()
1226 static CURLcode tftp_multi_statemach(struct Curl_easy *data, bool *done) in tftp_multi_statemach()
1229 CURLcode result = CURLE_OK; in tftp_multi_statemach()
1285 static CURLcode tftp_doing(struct Curl_easy *data, bool *dophase_done) in tftp_doing()
1287 CURLcode result; in tftp_doing()
1312 static CURLcode tftp_perform(struct Curl_easy *data, bool *dophase_done) in tftp_perform()
1314 CURLcode result = CURLE_OK; in tftp_perform()
1344 static CURLcode tftp_do(struct Curl_easy *data, bool *done) in tftp_do()
1347 CURLcode result; in tftp_do()
1373 static CURLcode tftp_setup_connection(struct Curl_easy *data, in tftp_setup_connection()