Lines Matching refs:stbuf
836 struct stat stbuf; in fd_set_perms() local
849 if (fstat(fd, &stbuf) < 0) in fd_set_perms()
851 st = &stbuf; in fd_set_perms()
1120 struct stat stbuf; in fd_set_acls() local
1127 if (fstat(fd, &stbuf) < 0) in fd_set_acls()
1129 st = &stbuf; in fd_set_acls()
1270 struct stat stbuf; in fd_set_attribute() local
1282 if (fstat(fd, &stbuf) < 0) in fd_set_attribute()
1284 st = &stbuf; in fd_set_attribute()
1378 struct stat stbuf, *st = NULL; in create_file() local
1418 if (fstat(fd, &stbuf) < 0) in create_file()
1421 if (!S_ISREG(stbuf.st_mode)) in create_file()
1426 st = &stbuf; in create_file()
1445 struct stat stbuf, *st = NULL; in truncate_file() local
1496 if (fstat(fd, &stbuf) < 0) in truncate_file()
1499 if (!S_ISREG(stbuf.st_mode)) in truncate_file()
1504 if (stbuf.st_size > 0) { in truncate_file()
1510 st = &stbuf; in truncate_file()