• Home
  • Raw
  • Download

Lines Matching refs:resume_from

1234       if(data->state.resume_from) {  in myssh_statemach_act()
1237 if(data->state.resume_from < 0) { in myssh_statemach_act()
1246 data->state.resume_from = attrs->size; in myssh_statemach_act()
1251 data->state.resume_from = 0; in myssh_statemach_act()
1259 else if(data->state.resume_from > 0) in myssh_statemach_act()
1292 if(data->state.resume_from > 0) { in myssh_statemach_act()
1296 seekerr = conn->seek_func(conn->seek_client, data->state.resume_from, in myssh_statemach_act()
1311 (data->state.resume_from - passed > data->set.buffer_size) ? in myssh_statemach_act()
1313 curlx_sotouz(data->state.resume_from - passed); in myssh_statemach_act()
1327 } while(passed < data->state.resume_from); in myssh_statemach_act()
1334 data->state.infilesize -= data->state.resume_from; in myssh_statemach_act()
1339 rc = sftp_seek64(sshc->sftp_file, data->state.resume_from); in myssh_statemach_act()
1693 if(data->state.resume_from) { in myssh_statemach_act()
1694 if(data->state.resume_from < 0) { in myssh_statemach_act()
1696 if((curl_off_t)size < -data->state.resume_from) { in myssh_statemach_act()
1700 data->state.resume_from, size); in myssh_statemach_act()
1704 data->state.resume_from += size; in myssh_statemach_act()
1707 if((curl_off_t)size < data->state.resume_from) { in myssh_statemach_act()
1710 data->state.resume_from, size); in myssh_statemach_act()
1715 data->req.size = size - data->state.resume_from; in myssh_statemach_act()
1716 data->req.maxdownload = size - data->state.resume_from; in myssh_statemach_act()
1718 size - data->state.resume_from); in myssh_statemach_act()
1720 rc = sftp_seek64(sshc->sftp_file, data->state.resume_from); in myssh_statemach_act()