Home | History | Annotate | Download | only in dropbear

Lines Matching refs:stb

594 	struct stat stb;
616 if (fstat(fd, &stb) < 0) {
620 switch (stb.st_mode & S_IFMT) {
625 rsource(name, &stb);
644 (u_long) stb.st_mtime,
645 (u_long) stb.st_atime);
652 (u_int) (stb.st_mode & FILEMODEMASK),
653 (long long)stb.st_size, last);
669 start_progress_meter(curfile, stb.st_size, &statbytes);
672 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
674 if (i + amt > stb.st_size)
675 amt = stb.st_size - i;
825 struct stat stb;
855 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
956 exists = stat(np, &stb) == 0;
962 if (!S_ISDIR(stb.st_mode)) {
1179 struct stat stb;
1181 if (!stat(cp, &stb)) {
1182 if (S_ISDIR(stb.st_mode))
1225 struct stat stb;
1227 if (fstat(fd, &stb) < 0) {
1231 size = roundup(stb.st_blksize, blksize);