Searched refs:magic_value (Results 1 - 2 of 2) sorted by relevance

/systemd/src/basic/
H A Dstat-util.h58 bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) _pure_;
59 int fd_check_fstype(int fd, statfs_f_type_t magic_value);
60 int path_check_fstype(const char *path, statfs_f_type_t magic_value);
H A Dstat-util.c180 bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) { argument
184 return F_TYPE_EQUAL(s->f_type, magic_value);
187 int fd_check_fstype(int fd, statfs_f_type_t magic_value) { argument
193 return is_fs_type(&s, magic_value);
196 int path_check_fstype(const char *path, statfs_f_type_t magic_value) { argument
203 return fd_check_fstype(fd, magic_value);

Completed in 965 milliseconds