Lines Matching refs:CURLcode
92 static CURLcode pop3_regular_transfer(struct connectdata *conn, bool *done);
93 static CURLcode pop3_do(struct connectdata *conn, bool *done);
94 static CURLcode pop3_done(struct connectdata *conn, CURLcode status,
96 static CURLcode pop3_connect(struct connectdata *conn, bool *done);
97 static CURLcode pop3_disconnect(struct connectdata *conn, bool dead);
98 static CURLcode pop3_multi_statemach(struct connectdata *conn, bool *done);
101 static CURLcode pop3_doing(struct connectdata *conn, bool *dophase_done);
102 static CURLcode pop3_setup_connection(struct connectdata *conn);
103 static CURLcode pop3_parse_url_options(struct connectdata *conn);
104 static CURLcode pop3_parse_url_path(struct connectdata *conn);
105 static CURLcode pop3_parse_custom_request(struct connectdata *conn);
106 static CURLcode pop3_perform_auth(struct connectdata *conn, const char *mech,
108 static CURLcode pop3_continue_auth(struct connectdata *conn, const char *resp);
359 static CURLcode pop3_perform_capa(struct connectdata *conn) in pop3_perform_capa()
361 CURLcode result = CURLE_OK; in pop3_perform_capa()
383 static CURLcode pop3_perform_starttls(struct connectdata *conn) in pop3_perform_starttls()
385 CURLcode result = CURLE_OK; in pop3_perform_starttls()
402 static CURLcode pop3_perform_upgrade_tls(struct connectdata *conn) in pop3_perform_upgrade_tls()
404 CURLcode result = CURLE_OK; in pop3_perform_upgrade_tls()
429 static CURLcode pop3_perform_user(struct connectdata *conn) in pop3_perform_user()
431 CURLcode result = CURLE_OK; in pop3_perform_user()
457 static CURLcode pop3_perform_apop(struct connectdata *conn) in pop3_perform_apop()
459 CURLcode result = CURLE_OK; in pop3_perform_apop()
508 static CURLcode pop3_perform_auth(struct connectdata *conn, in pop3_perform_auth()
512 CURLcode result = CURLE_OK; in pop3_perform_auth()
533 static CURLcode pop3_continue_auth(struct connectdata *conn, in pop3_continue_auth()
549 static CURLcode pop3_perform_authentication(struct connectdata *conn) in pop3_perform_authentication()
551 CURLcode result = CURLE_OK; in pop3_perform_authentication()
597 static CURLcode pop3_perform_command(struct connectdata *conn) in pop3_perform_command()
599 CURLcode result = CURLE_OK; in pop3_perform_command()
637 static CURLcode pop3_perform_quit(struct connectdata *conn) in pop3_perform_quit()
639 CURLcode result = CURLE_OK; in pop3_perform_quit()
651 static CURLcode pop3_state_servergreet_resp(struct connectdata *conn, in pop3_state_servergreet_resp()
655 CURLcode result = CURLE_OK; in pop3_state_servergreet_resp()
703 static CURLcode pop3_state_capa_resp(struct connectdata *conn, int pop3code, in pop3_state_capa_resp()
706 CURLcode result = CURLE_OK; in pop3_state_capa_resp()
793 static CURLcode pop3_state_starttls_resp(struct connectdata *conn, in pop3_state_starttls_resp()
797 CURLcode result = CURLE_OK; in pop3_state_starttls_resp()
817 static CURLcode pop3_state_auth_resp(struct connectdata *conn, in pop3_state_auth_resp()
821 CURLcode result = CURLE_OK; in pop3_state_auth_resp()
858 static CURLcode pop3_state_apop_resp(struct connectdata *conn, int pop3code, in pop3_state_apop_resp()
861 CURLcode result = CURLE_OK; in pop3_state_apop_resp()
879 static CURLcode pop3_state_user_resp(struct connectdata *conn, int pop3code, in pop3_state_user_resp()
882 CURLcode result = CURLE_OK; in pop3_state_user_resp()
902 static CURLcode pop3_state_pass_resp(struct connectdata *conn, int pop3code, in pop3_state_pass_resp()
905 CURLcode result = CURLE_OK; in pop3_state_pass_resp()
922 static CURLcode pop3_state_command_resp(struct connectdata *conn, in pop3_state_command_resp()
926 CURLcode result = CURLE_OK; in pop3_state_command_resp()
978 static CURLcode pop3_statemach_act(struct connectdata *conn) in pop3_statemach_act()
980 CURLcode result = CURLE_OK; in pop3_statemach_act()
1053 static CURLcode pop3_multi_statemach(struct connectdata *conn, bool *done) in pop3_multi_statemach()
1055 CURLcode result = CURLE_OK; in pop3_multi_statemach()
1070 static CURLcode pop3_block_statemach(struct connectdata *conn) in pop3_block_statemach()
1072 CURLcode result = CURLE_OK; in pop3_block_statemach()
1083 static CURLcode pop3_init(struct connectdata *conn) in pop3_init()
1085 CURLcode result = CURLE_OK; in pop3_init()
1113 static CURLcode pop3_connect(struct connectdata *conn, bool *done) in pop3_connect()
1115 CURLcode result = CURLE_OK; in pop3_connect()
1159 static CURLcode pop3_done(struct connectdata *conn, CURLcode status, in pop3_done()
1162 CURLcode result = CURLE_OK; in pop3_done()
1193 static CURLcode pop3_perform(struct connectdata *conn, bool *connected, in pop3_perform()
1197 CURLcode result = CURLE_OK; in pop3_perform()
1234 static CURLcode pop3_do(struct connectdata *conn, bool *done) in pop3_do()
1236 CURLcode result = CURLE_OK; in pop3_do()
1262 static CURLcode pop3_disconnect(struct connectdata *conn, bool dead_connection) in pop3_disconnect()
1289 static CURLcode pop3_dophase_done(struct connectdata *conn, bool connected) in pop3_dophase_done()
1298 static CURLcode pop3_doing(struct connectdata *conn, bool *dophase_done) in pop3_doing()
1300 CURLcode result = pop3_multi_statemach(conn, dophase_done); in pop3_doing()
1322 static CURLcode pop3_regular_transfer(struct connectdata *conn, in pop3_regular_transfer()
1325 CURLcode result = CURLE_OK; in pop3_regular_transfer()
1348 static CURLcode pop3_setup_connection(struct connectdata *conn) in pop3_setup_connection()
1353 CURLcode result = pop3_init(conn); in pop3_setup_connection()
1395 static CURLcode pop3_parse_url_options(struct connectdata *conn) in pop3_parse_url_options()
1397 CURLcode result = CURLE_OK; in pop3_parse_url_options()
1454 static CURLcode pop3_parse_url_path(struct connectdata *conn) in pop3_parse_url_path()
1471 static CURLcode pop3_parse_custom_request(struct connectdata *conn) in pop3_parse_custom_request()
1473 CURLcode result = CURLE_OK; in pop3_parse_custom_request()
1492 CURLcode Curl_pop3_write(struct connectdata *conn, char *str, size_t nread) in Curl_pop3_write()
1495 CURLcode result = CURLE_OK; in Curl_pop3_write()