Lines Matching defs:feature
59 * <feature> : ro
60 * <feature_list> : \(<feature>(:<feature>)*\)
275 * feature parts separately.
1741 * Return value of the specified feature.
1744 dasd_get_feature(struct ccw_device *cdev, int feature)
1752 return ((devmap->features & feature) != 0);
1756 * Set / reset given feature.
1757 * Flag indicates whether to set (!=0) or the reset (=0) the feature.
1760 dasd_set_feature(struct ccw_device *cdev, int feature, int flag)
1770 devmap->features |= feature;
1772 devmap->features &= ~feature;