Home | History | Annotate | Download | only in openssh

Lines Matching defs:Stat

22 #include <sys/stat.h>
78 typedef struct Stat Stat;
80 struct Stat {
457 send_names(u_int32_t id, int count, const Stat *stats)
689 struct stat st;
698 ret = do_lstat ? lstat(name, &st) : stat(name, &st);
727 struct stat st;
928 struct stat st;
930 Stat *stats;
933 stats = xcalloc(nstats, sizeof(Stat));
937 stats = xrealloc(stats, nstats, sizeof(Stat));
1052 Stat s;
1066 struct stat sb;
1089 struct stat st;
1093 * stat+rename. This is racy.
1095 if (stat(newpath, &st) == -1) {
1111 } else if (stat(newpath, &sb) == -1) {
1137 Stat s;