Lines Matching refs:CURLcode
51 static CURLcode wssh_connect(struct Curl_easy *data, bool *done);
52 static CURLcode wssh_multi_statemach(struct Curl_easy *data, bool *done);
53 static CURLcode wssh_do(struct Curl_easy *data, bool *done);
55 static CURLcode wscp_done(struct Curl_easy *data,
56 CURLcode, bool premature);
57 static CURLcode wscp_doing(struct Curl_easy *data,
59 static CURLcode wscp_disconnect(struct Curl_easy *data,
63 static CURLcode wsftp_done(struct Curl_easy *data,
64 CURLcode, bool premature);
65 static CURLcode wsftp_doing(struct Curl_easy *data,
67 static CURLcode wsftp_disconnect(struct Curl_easy *data,
73 static CURLcode wssh_setup_connection(struct Curl_easy *data,
220 const void *mem, size_t len, CURLcode *err) in wscp_send()
233 char *mem, size_t len, CURLcode *err) in wscp_recv()
247 const void *mem, size_t len, CURLcode *err) in wsftp_send()
291 char *mem, size_t len, CURLcode *err) in wsftp_recv()
333 static CURLcode wssh_setup_connection(struct Curl_easy *data, in wssh_setup_connection()
365 static CURLcode wssh_connect(struct Curl_easy *data, bool *done) in wssh_connect()
441 static CURLcode wssh_statemach_act(struct Curl_easy *data, bool *block) in wssh_statemach_act()
443 CURLcode result = CURLE_OK; in wssh_statemach_act()
906 static CURLcode wssh_multi_statemach(struct Curl_easy *data, bool *done) in wssh_multi_statemach()
910 CURLcode result = CURLE_OK; in wssh_multi_statemach()
927 CURLcode wscp_perform(struct Curl_easy *data, in wscp_perform()
938 CURLcode wsftp_perform(struct Curl_easy *data, in wsftp_perform()
942 CURLcode result = CURLE_OK; in wsftp_perform()
966 static CURLcode wssh_do(struct Curl_easy *data, bool *done) in wssh_do()
968 CURLcode result; in wssh_do()
992 static CURLcode wssh_block_statemach(struct Curl_easy *data, in wssh_block_statemach()
997 CURLcode result = CURLE_OK; in wssh_block_statemach()
1044 static CURLcode wssh_done(struct Curl_easy *data, CURLcode status) in wssh_done()
1046 CURLcode result = CURLE_OK; in wssh_done()
1066 static CURLcode wscp_done(struct Curl_easy *data,
1067 CURLcode code, bool premature)
1069 CURLcode result = CURLE_OK;
1077 static CURLcode wscp_doing(struct Curl_easy *data,
1080 CURLcode result = CURLE_OK;
1087 static CURLcode wscp_disconnect(struct Curl_easy *data,
1090 CURLcode result = CURLE_OK;
1099 static CURLcode wsftp_done(struct Curl_easy *data, in wsftp_done()
1100 CURLcode code, bool premature) in wsftp_done()
1108 static CURLcode wsftp_doing(struct Curl_easy *data, in wsftp_doing()
1111 CURLcode result = wssh_multi_statemach(data, dophase_done); in wsftp_doing()
1119 static CURLcode wsftp_disconnect(struct Curl_easy *data, in wsftp_disconnect()
1123 CURLcode result = CURLE_OK; in wsftp_disconnect()
1160 CURLcode Curl_ssh_init(void) in Curl_ssh_init()