Lines Matching refs:pp

313   char *message = Curl_dyn_ptr(&data->conn->proto.pop3c.pp.recvbuf);  in pop3_get_message()
314 size_t len = data->conn->proto.pop3c.pp.nfinal; in pop3_get_message()
391 result = Curl_pp_sendf(data, &pop3c->pp, "%s", "CAPA"); in pop3_perform_capa()
409 CURLcode result = Curl_pp_sendf(data, &conn->proto.pop3c.pp, "%s", "STLS"); in pop3_perform_starttls()
473 result = Curl_pp_sendf(data, &conn->proto.pop3c.pp, "USER %s", in pop3_perform_user()
524 result = Curl_pp_sendf(data, &pop3c->pp, "APOP %s %s", conn->user, secret); in pop3_perform_apop()
550 result = Curl_pp_sendf(data, &pop3c->pp, "AUTH %s %s", mech, ir); in pop3_perform_auth()
554 result = Curl_pp_sendf(data, &pop3c->pp, "AUTH %s", mech); in pop3_perform_auth()
574 return Curl_pp_sendf(data, &pop3c->pp, in pop3_continue_auth()
590 return Curl_pp_sendf(data, &pop3c->pp, "*"); in pop3_cancel_auth()
673 result = Curl_pp_sendf(data, &conn->proto.pop3c.pp, "%s %s", in pop3_perform_command()
676 result = Curl_pp_sendf(data, &conn->proto.pop3c.pp, "%s", command); in pop3_perform_command()
696 CURLcode result = Curl_pp_sendf(data, &conn->proto.pop3c.pp, "%s", "QUIT"); in pop3_perform_quit()
712 const char *line = Curl_dyn_ptr(&data->conn->proto.pop3c.pp.recvbuf); in pop3_state_servergreet_resp()
713 size_t len = data->conn->proto.pop3c.pp.nfinal; in pop3_state_servergreet_resp()
762 const char *line = Curl_dyn_ptr(&data->conn->proto.pop3c.pp.recvbuf); in pop3_state_capa_resp()
763 size_t len = data->conn->proto.pop3c.pp.nfinal; in pop3_state_capa_resp()
850 if(data->conn->proto.pop3c.pp.overflow) in pop3_state_starttls_resp()
941 result = Curl_pp_sendf(data, &conn->proto.pop3c.pp, "PASS %s", in pop3_state_user_resp()
976 struct pingpong *pp = &pop3c->pp; in pop3_state_command_resp() local
999 if(pp->overflow) { in pop3_state_command_resp()
1005 Curl_dyn_tail(&pp->recvbuf, pp->overflow); in pop3_state_command_resp()
1006 pp->nfinal = 0; /* done */ in pop3_state_command_resp()
1009 result = pop3_write(data, Curl_dyn_ptr(&pp->recvbuf), in pop3_state_command_resp()
1010 Curl_dyn_len(&pp->recvbuf), FALSE); in pop3_state_command_resp()
1016 Curl_dyn_reset(&pp->recvbuf); in pop3_state_command_resp()
1017 pp->overflow = 0; in pop3_state_command_resp()
1021 pp->overflow = 0; in pop3_state_command_resp()
1035 struct pingpong *pp = &pop3c->pp; in pop3_statemachine() local
1044 if(pp->sendleft) in pop3_statemachine()
1045 return Curl_pp_flushsend(data, pp); in pop3_statemachine()
1049 result = Curl_pp_readresp(data, FIRSTSOCKET, pp, &pop3code, &nread); in pop3_statemachine()
1101 } while(!result && pop3c->state != POP3_STOP && Curl_pp_moredata(pp)); in pop3_statemachine()
1121 result = Curl_pp_statemach(data, &pop3c->pp, FALSE, FALSE); in pop3_multi_statemach()
1135 result = Curl_pp_statemach(data, &pop3c->pp, TRUE, disconnecting); in pop3_block_statemach()
1158 return Curl_pp_getsock(data, &conn->proto.pop3c.pp, socks); in pop3_getsock()
1176 struct pingpong *pp = &pop3c->pp; in pop3_connect() local
1183 PINGPONG_SETUP(pp, pop3_statemachine, pop3_endofresp); in pop3_connect()
1190 Curl_pp_init(pp); in pop3_connect()
1330 Curl_pp_disconnect(&pop3c->pp); in pop3_disconnect()