Searched refs:st_fd (Results 1 – 1 of 1) sorted by relevance
133 struct stat st_fd; in sd_is_fifo() local137 if (fstat(fd, &st_fd) < 0) in sd_is_fifo()140 if (!S_ISFIFO(st_fd.st_mode)) in sd_is_fifo()154 return stat_inode_same(&st_path, &st_fd); in sd_is_fifo()161 struct stat st_fd; in sd_is_special() local165 if (fstat(fd, &st_fd) < 0) in sd_is_special()168 if (!S_ISREG(st_fd.st_mode) && !S_ISCHR(st_fd.st_mode)) in sd_is_special()182 if (S_ISREG(st_fd.st_mode) && S_ISREG(st_path.st_mode)) in sd_is_special()183 return stat_inode_same(&st_path, &st_fd); in sd_is_special()184 else if (S_ISCHR(st_fd.st_mode) && S_ISCHR(st_path.st_mode)) in sd_is_special()[all …]