Searched refs:seekerr (Results 1 - 6 of 6) sorted by relevance
/third_party/curl/lib/vssh/ |
H A D | wolfssh.c | 627 int seekerr = CURL_SEEKFUNC_OK; in wssh_statemach_act() local 630 seekerr = conn->seek_func(conn->seek_client, data->state.resume_from, in wssh_statemach_act() 635 if(seekerr != CURL_SEEKFUNC_OK) { in wssh_statemach_act() 638 if(seekerr != CURL_SEEKFUNC_CANTSEEK) { in wssh_statemach_act() 642 /* seekerr == CURL_SEEKFUNC_CANTSEEK (can't seek to offset) */ in wssh_statemach_act()
|
H A D | libssh.c | 676 int seekerr = CURL_SEEKFUNC_OK; in myssh_statemach_act() local 1297 seekerr = conn->seek_func(conn->seek_client, data->state.resume_from, in myssh_statemach_act() 1302 if(seekerr != CURL_SEEKFUNC_OK) { in myssh_statemach_act() 1305 if(seekerr != CURL_SEEKFUNC_CANTSEEK) { in myssh_statemach_act() 1309 /* seekerr == CURL_SEEKFUNC_CANTSEEK (can't seek to offset) */ in myssh_statemach_act()
|
H A D | libssh2.c | 975 int seekerr = CURL_SEEKFUNC_OK; in ssh_statemach_act() local 2147 seekerr = conn->seek_func(conn->seek_client, data->state.resume_from, in ssh_statemach_act() 2152 if(seekerr != CURL_SEEKFUNC_OK) { in ssh_statemach_act() 2155 if(seekerr != CURL_SEEKFUNC_CANTSEEK) { in ssh_statemach_act() 2159 /* seekerr == CURL_SEEKFUNC_CANTSEEK (can't seek to offset) */ in ssh_statemach_act()
|
/third_party/astc-encoder/Source/ |
H A D | astcenccli_image_load_store.cpp | 1328 int seekerr; in load_ktx_compressed_image() local 1329 seekerr = fseek(f, hdr.bytes_of_key_value_data, SEEK_CUR); in load_ktx_compressed_image() 1330 if (seekerr) in load_ktx_compressed_image()
|
/third_party/curl/lib/ |
H A D | ftp.c | 1561 int seekerr = CURL_SEEKFUNC_OK; in ftp_state_ul_setup() local 1577 seekerr = conn->seek_func(conn->seek_client, data->state.resume_from, in ftp_state_ul_setup() 1582 if(seekerr != CURL_SEEKFUNC_OK) { in ftp_state_ul_setup() 1584 if(seekerr != CURL_SEEKFUNC_CANTSEEK) { in ftp_state_ul_setup() 1588 /* seekerr == CURL_SEEKFUNC_CANTSEEK (can't seek to offset) */ in ftp_state_ul_setup()
|
H A D | http.c | 2926 int seekerr = CURL_SEEKFUNC_CANTSEEK; in Curl_http_resume() local 2929 seekerr = conn->seek_func(conn->seek_client, data->state.resume_from, in Curl_http_resume() 2934 if(seekerr != CURL_SEEKFUNC_OK) { in Curl_http_resume() 2937 if(seekerr != CURL_SEEKFUNC_CANTSEEK) { in Curl_http_resume() 2941 /* when seekerr == CURL_SEEKFUNC_CANTSEEK (can't seek to offset) */ in Curl_http_resume()
|
Completed in 21 milliseconds