Searched refs:newstate (Results 1 – 9 of 9) sorted by relevance
/curl/lib/ |
H A D | curl_sasl.c | 260 if(sasl->state != newstate) in sasl_state() 267 sasl->state = newstate; in sasl_state() 537 saslstate newstate = SASL_FINAL; in Curl_sasl_continue() local 580 newstate = SASL_LOGIN_PASSWD; in Curl_sasl_continue() 594 newstate = SASL_GSASL; in Curl_sasl_continue() 611 newstate = SASL_DIGESTMD5_RESP; in Curl_sasl_continue() 625 newstate = SASL_NTLM_TYPE2MSG; in Curl_sasl_continue() 649 newstate = SASL_GSSAPI_TOKEN; in Curl_sasl_continue() 696 newstate = SASL_OAUTH2_RESP; in Curl_sasl_continue() 741 newstate = SASL_CANCEL; in Curl_sasl_continue() [all …]
|
H A D | easy.c | 1120 int newstate; in curl_easy_pause() local 1135 newstate = (k->keepon &~ (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE)) | in curl_easy_pause() 1139 keep_changed = ((newstate & (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE)) != oldstate); in curl_easy_pause() 1140 not_all_paused = (newstate & (KEEP_RECV_PAUSE|KEEP_SEND_PAUSE)) != in curl_easy_pause() 1142 unpause_read = ((k->keepon & ~newstate & KEEP_SEND_PAUSE) && in curl_easy_pause() 1151 k->keepon = newstate; in curl_easy_pause() 1159 if(!(newstate & KEEP_SEND_PAUSE)) in curl_easy_pause() 1161 if(!(newstate & KEEP_RECV_PAUSE)) in curl_easy_pause()
|
H A D | smb.c | 369 static void conn_state(struct Curl_easy *data, enum smb_conn_state newstate) in conn_state() argument 383 if(smbc->state != newstate) in conn_state() 385 (void *)smbc, names[smbc->state], names[newstate]); in conn_state() 388 smbc->state = newstate; in conn_state() 392 enum smb_req_state newstate) in request_state() argument 409 if(req->state != newstate) in request_state() 411 (void *)req, names[req->state], names[newstate]); in request_state() 414 req->state = newstate; in request_state()
|
H A D | openldap.c | 208 static void oldap_state(struct Curl_easy *data, ldapstate newstate) in oldap_state() argument 226 if(ldapc->state != newstate) in oldap_state() 228 (void *)ldapc, names[ldapc->state], names[newstate]); in oldap_state() 231 ldapc->state = newstate; in oldap_state() 403 static CURLcode oldap_perform_bind(struct Curl_easy *data, ldapstate newstate) in oldap_perform_bind() argument 426 oldap_state(data, newstate); in oldap_perform_bind() 470 static CURLcode oldap_ssl_connect(struct Curl_easy *data, ldapstate newstate) in oldap_ssl_connect() argument 477 oldap_state(data, newstate); in oldap_ssl_connect()
|
H A D | telnet.c | 106 int option, int newstate); 108 int option, int newstate); 326 void set_remote_option(struct Curl_easy *data, int option, int newstate) in set_remote_option() argument 329 if(newstate == CURL_YES) { in set_remote_option() 490 set_local_option(struct Curl_easy *data, int option, int newstate) in set_local_option() argument 493 if(newstate == CURL_YES) { in set_local_option()
|
H A D | pop3.c | 345 static void pop3_state(struct Curl_easy *data, pop3state newstate) in pop3_state() argument 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()
|
H A D | ftp.c | 147 ftpstate newstate in _ftp_state() argument 161 if(ftpc->state != newstate) in _ftp_state() 164 ftp_state_names[newstate], lineno); in _ftp_state() 167 ftp_state_names[newstate]); in _ftp_state() 171 ftpc->state = newstate; in _ftp_state() 200 bool ascii, ftpstate newstate); 3480 bool ascii, ftpstate newstate) in ftp_nb_type() argument 3487 ftp_state(data, newstate); in ftp_nb_type() 3488 return ftp_state_type_resp(data, 200, newstate); in ftp_nb_type() 3493 ftp_state(data, newstate); in ftp_nb_type()
|
H A D | smtp.c | 288 static void smtp_state(struct Curl_easy *data, smtpstate newstate) in smtp_state() argument 310 if(smtpc->state != newstate) in smtp_state() 312 names[smtpc->state], names[newstate]); in smtp_state() 315 smtpc->state = newstate; in smtp_state()
|
H A D | imap.c | 392 static void imap_state(struct Curl_easy *data, imapstate newstate) in imap_state() argument 416 if(imapc->state != newstate) in imap_state() 418 (void *)imapc, names[imapc->state], names[newstate]); in imap_state() 421 imapc->state = newstate; in imap_state()
|
Completed in 42 milliseconds