Lines Matching refs:CURLcode
50 static CURLcode wssh_connect(struct Curl_easy *data, bool *done);
51 static CURLcode wssh_multi_statemach(struct Curl_easy *data, bool *done);
52 static CURLcode wssh_do(struct Curl_easy *data, bool *done);
54 static CURLcode wscp_done(struct Curl_easy *data,
55 CURLcode, bool premature);
56 static CURLcode wscp_doing(struct Curl_easy *data,
58 static CURLcode wscp_disconnect(struct Curl_easy *data,
62 static CURLcode wsftp_done(struct Curl_easy *data,
63 CURLcode, bool premature);
64 static CURLcode wsftp_doing(struct Curl_easy *data,
66 static CURLcode wsftp_disconnect(struct Curl_easy *data,
72 static CURLcode wssh_setup_connection(struct Curl_easy *data,
222 CURLcode *err) in wscp_send()
236 char *mem, size_t len, CURLcode *err) in wscp_recv()
250 const void *mem, size_t len, bool eos, CURLcode *err) in wsftp_send()
295 char *mem, size_t len, CURLcode *err) in wsftp_recv()
337 static CURLcode wssh_setup_connection(struct Curl_easy *data, in wssh_setup_connection()
366 static CURLcode wssh_connect(struct Curl_easy *data, bool *done) in wssh_connect()
442 static CURLcode wssh_statemach_act(struct Curl_easy *data, bool *block) in wssh_statemach_act()
444 CURLcode result = CURLE_OK; in wssh_statemach_act()
902 static CURLcode wssh_multi_statemach(struct Curl_easy *data, bool *done) in wssh_multi_statemach()
906 CURLcode result = CURLE_OK; in wssh_multi_statemach()
923 CURLcode wscp_perform(struct Curl_easy *data, in wscp_perform()
934 CURLcode wsftp_perform(struct Curl_easy *data, in wsftp_perform()
938 CURLcode result = CURLE_OK; in wsftp_perform()
962 static CURLcode wssh_do(struct Curl_easy *data, bool *done) in wssh_do()
964 CURLcode result; in wssh_do()
988 static CURLcode wssh_block_statemach(struct Curl_easy *data, in wssh_block_statemach()
993 CURLcode result = CURLE_OK; in wssh_block_statemach()
1040 static CURLcode wssh_done(struct Curl_easy *data, CURLcode status) in wssh_done()
1042 CURLcode result = CURLE_OK; in wssh_done()
1062 static CURLcode wscp_done(struct Curl_easy *data,
1063 CURLcode code, bool premature)
1065 CURLcode result = CURLE_OK;
1073 static CURLcode wscp_doing(struct Curl_easy *data,
1076 CURLcode result = CURLE_OK;
1083 static CURLcode wscp_disconnect(struct Curl_easy *data,
1086 CURLcode result = CURLE_OK;
1095 static CURLcode wsftp_done(struct Curl_easy *data, in wsftp_done()
1096 CURLcode code, bool premature) in wsftp_done()
1104 static CURLcode wsftp_doing(struct Curl_easy *data, in wsftp_doing()
1107 CURLcode result = wssh_multi_statemach(data, dophase_done); in wsftp_doing()
1115 static CURLcode wsftp_disconnect(struct Curl_easy *data, in wsftp_disconnect()
1119 CURLcode result = CURLE_OK; in wsftp_disconnect()
1156 CURLcode Curl_ssh_init(void) in Curl_ssh_init()