Lines Matching refs:state

276   if(pop3c->state == POP3_CAPA) {  in pop3_endofresp()
365 if(pop3c->state != newstate) in pop3_state()
367 (void *)pop3c, names[pop3c->state], names[newstate]); in pop3_state()
370 pop3c->state = newstate; in pop3_state()
441 if(pop3c->state != POP3_UPGRADETLS) in pop3_perform_upgrade_tls()
466 if(!data->state.aptr.user) { in pop3_perform_user()
500 if(!data->state.aptr.user) { in pop3_perform_apop()
1040 if(pop3c->state == POP3_UPGRADETLS) in pop3_statemachine()
1057 switch(pop3c->state) { in pop3_statemachine()
1059 result = pop3_state_servergreet_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1063 result = pop3_state_capa_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1067 result = pop3_state_starttls_resp(data, conn, pop3code, pop3c->state); in pop3_statemachine()
1071 result = pop3_state_auth_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1076 result = pop3_state_apop_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1081 result = pop3_state_user_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1085 result = pop3_state_pass_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1089 result = pop3_state_command_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1101 } while(!result && pop3c->state != POP3_STOP && Curl_pp_moredata(pp)); in pop3_statemachine()
1122 *done = (pop3c->state == POP3_STOP) ? TRUE : FALSE; in pop3_multi_statemach()
1134 while(pop3c->state != POP3_STOP && !result) in pop3_block_statemach()
1481 const char *path = &data->state.up.path[1]; /* skip leading path */ in pop3_parse_url_path()