Lines Matching refs:_pfx
123 #define CONFIGFS_ATTR(_pfx, _name) \ argument
124 static struct configfs_attribute _pfx##attr_##_name = { \
128 .show = _pfx##_name##_show, \
129 .store = _pfx##_name##_store, \
132 #define CONFIGFS_ATTR_RO(_pfx, _name) \ argument
133 static struct configfs_attribute _pfx##attr_##_name = { \
137 .show = _pfx##_name##_show, \
140 #define CONFIGFS_ATTR_WO(_pfx, _name) \ argument
141 static struct configfs_attribute _pfx##attr_##_name = { \
145 .store = _pfx##_name##_store, \
159 #define CONFIGFS_BIN_ATTR(_pfx, _name, _priv, _maxsz) \ argument
160 static struct configfs_bin_attribute _pfx##attr_##_name = { \
168 .read = _pfx##_name##_read, \
169 .write = _pfx##_name##_write, \
172 #define CONFIGFS_BIN_ATTR_RO(_pfx, _name, _priv, _maxsz) \ argument
173 static struct configfs_bin_attribute _pfx##attr_##_name = { \
181 .read = _pfx##_name##_read, \
184 #define CONFIGFS_BIN_ATTR_WO(_pfx, _name, _priv, _maxsz) \ argument
185 static struct configfs_bin_attribute _pfx##attr_##_name = { \
193 .write = _pfx##_name##_write, \