Lines Matching refs:attrs
1209 sftp_attributes attrs; in myssh_statemach_act() local
1211 attrs = sftp_stat(sshc->sftp_session, protop->path); in myssh_statemach_act()
1212 if(attrs) { in myssh_statemach_act()
1213 data->info.filetime = attrs->mtime; in myssh_statemach_act()
1214 sftp_attributes_free(attrs); in myssh_statemach_act()
1237 sftp_attributes attrs; in myssh_statemach_act() local
1240 attrs = sftp_stat(sshc->sftp_session, protop->path); in myssh_statemach_act()
1241 if(attrs) { in myssh_statemach_act()
1242 curl_off_t size = attrs->size; in myssh_statemach_act()
1248 data->state.resume_from = attrs->size; in myssh_statemach_act()
1250 sftp_attributes_free(attrs); in myssh_statemach_act()
1605 sftp_attributes attrs; in myssh_statemach_act() local
1608 attrs = sftp_fstat(sshc->sftp_file); in myssh_statemach_act()
1609 if(!attrs || in myssh_statemach_act()
1610 !(attrs->flags & SSH_FILEXFER_ATTR_SIZE) || in myssh_statemach_act()
1611 (attrs->size == 0)) { in myssh_statemach_act()
1624 size = attrs->size; in myssh_statemach_act()
1626 sftp_attributes_free(attrs); in myssh_statemach_act()