Lines Matching refs:fstype
362 bool fstype_is_network(const char *fstype) { in fstype_is_network() argument
365 x = startswith(fstype, "fuse."); in fstype_is_network()
367 fstype = x; in fstype_is_network()
369 if (nulstr_contains(filesystem_sets[FILESYSTEM_SET_NETWORK].value, fstype)) in fstype_is_network()
373 return STR_IN_SET(fstype, in fstype_is_network()
380 bool fstype_is_api_vfs(const char *fstype) { in fstype_is_api_vfs() argument
388 if (nulstr_contains(fs->value, fstype)) in fstype_is_api_vfs()
392 return STR_IN_SET(fstype, in fstype_is_api_vfs()
398 bool fstype_is_blockdev_backed(const char *fstype) { in fstype_is_blockdev_backed() argument
401 x = startswith(fstype, "fuse."); in fstype_is_blockdev_backed()
403 fstype = x; in fstype_is_blockdev_backed()
405 return !streq(fstype, "9p") && !fstype_is_network(fstype) && !fstype_is_api_vfs(fstype); in fstype_is_blockdev_backed()
408 bool fstype_is_ro(const char *fstype) { in fstype_is_ro() argument
410 return STR_IN_SET(fstype, in fstype_is_ro()
418 bool fstype_can_discard(const char *fstype) { in fstype_can_discard() argument
419 return STR_IN_SET(fstype, in fstype_can_discard()
427 bool fstype_can_uid_gid(const char *fstype) { in fstype_can_uid_gid() argument
432 return STR_IN_SET(fstype, in fstype_can_uid_gid()