Lines Matching refs:state
218 if(pop3c->state == POP3_CAPA) {
285 * This is the ONLY way to change POP3 state!
307 if(pop3c->state != newstate)
308 infof(data, "POP3 %p state change from %s to %s",
309 (void *)pop3c, names[pop3c->state], names[newstate]);
312 pop3c->state = newstate;
383 if(pop3c->state != POP3_UPGRADETLS)
408 if(!data->state.aptr.user) {
442 if(!data->state.aptr.user) {
981 if(pop3c->state == POP3_UPGRADETLS)
998 switch(pop3c->state) {
1000 result = pop3_state_servergreet_resp(data, pop3code, pop3c->state);
1004 result = pop3_state_capa_resp(data, pop3code, pop3c->state);
1008 result = pop3_state_starttls_resp(data, conn, pop3code, pop3c->state);
1012 result = pop3_state_auth_resp(data, pop3code, pop3c->state);
1017 result = pop3_state_apop_resp(data, pop3code, pop3c->state);
1022 result = pop3_state_user_resp(data, pop3code, pop3c->state);
1026 result = pop3_state_pass_resp(data, pop3code, pop3c->state);
1030 result = pop3_state_command_resp(data, pop3code, pop3c->state);
1042 } while(!result && pop3c->state != POP3_STOP && Curl_pp_moredata(pp));
1063 *done = (pop3c->state == POP3_STOP) ? TRUE : FALSE;
1075 while(pop3c->state != POP3_STOP && !result)
1209 /* Run the state-machine */
1422 const char *path = &data->state.up.path[1]; /* skip leading path */