Lines Matching refs:CURLcode
52 static CURLcode wssh_connect(struct Curl_easy *data, bool *done);
53 static CURLcode wssh_multi_statemach(struct Curl_easy *data, bool *done);
54 static CURLcode wssh_do(struct Curl_easy *data, bool *done);
56 static CURLcode wscp_done(struct Curl_easy *data,
57 CURLcode, bool premature);
58 static CURLcode wscp_doing(struct Curl_easy *data,
60 static CURLcode wscp_disconnect(struct Curl_easy *data,
64 static CURLcode wsftp_done(struct Curl_easy *data,
65 CURLcode, bool premature);
66 static CURLcode wsftp_doing(struct Curl_easy *data,
68 static CURLcode wsftp_disconnect(struct Curl_easy *data,
74 static CURLcode wssh_setup_connection(struct Curl_easy *data,
221 const void *mem, size_t len, CURLcode *err) in wscp_send()
234 char *mem, size_t len, CURLcode *err) in wscp_recv()
248 const void *mem, size_t len, CURLcode *err) in wsftp_send()
292 char *mem, size_t len, CURLcode *err) in wsftp_recv()
334 static CURLcode wssh_setup_connection(struct Curl_easy *data, in wssh_setup_connection()
363 static CURLcode wssh_connect(struct Curl_easy *data, bool *done) in wssh_connect()
439 static CURLcode wssh_statemach_act(struct Curl_easy *data, bool *block) in wssh_statemach_act()
441 CURLcode result = CURLE_OK; in wssh_statemach_act()
899 static CURLcode wssh_multi_statemach(struct Curl_easy *data, bool *done) in wssh_multi_statemach()
903 CURLcode result = CURLE_OK; in wssh_multi_statemach()
920 CURLcode wscp_perform(struct Curl_easy *data, in wscp_perform()
931 CURLcode wsftp_perform(struct Curl_easy *data, in wsftp_perform()
935 CURLcode result = CURLE_OK; in wsftp_perform()
959 static CURLcode wssh_do(struct Curl_easy *data, bool *done) in wssh_do()
961 CURLcode result; in wssh_do()
985 static CURLcode wssh_block_statemach(struct Curl_easy *data, in wssh_block_statemach()
990 CURLcode result = CURLE_OK; in wssh_block_statemach()
1037 static CURLcode wssh_done(struct Curl_easy *data, CURLcode status) in wssh_done()
1039 CURLcode result = CURLE_OK; in wssh_done()
1059 static CURLcode wscp_done(struct Curl_easy *data,
1060 CURLcode code, bool premature)
1062 CURLcode result = CURLE_OK;
1070 static CURLcode wscp_doing(struct Curl_easy *data,
1073 CURLcode result = CURLE_OK;
1080 static CURLcode wscp_disconnect(struct Curl_easy *data,
1083 CURLcode result = CURLE_OK;
1092 static CURLcode wsftp_done(struct Curl_easy *data, in wsftp_done()
1093 CURLcode code, bool premature) in wsftp_done()
1101 static CURLcode wsftp_doing(struct Curl_easy *data, in wsftp_doing()
1104 CURLcode result = wssh_multi_statemach(data, dophase_done); in wsftp_doing()
1112 static CURLcode wsftp_disconnect(struct Curl_easy *data, in wsftp_disconnect()
1116 CURLcode result = CURLE_OK; in wsftp_disconnect()
1153 CURLcode Curl_ssh_init(void) in Curl_ssh_init()