Home
last modified time | relevance | path

Searched refs:_read (Results 1 – 25 of 79) sorted by relevance

1234

/linux/include/linux/
H A Dcounter.h416 #define COUNTER_COMP_DEVICE_U8(_name, _read, _write) \ argument
420 .device_u8_read = (_read), \
423 #define COUNTER_COMP_COUNT_U8(_name, _read, _write) \ argument
427 .count_u8_read = (_read), \
430 #define COUNTER_COMP_SIGNAL_U8(_name, _read, _write) \ argument
434 .signal_u8_read = (_read), \
438 #define COUNTER_COMP_DEVICE_U64(_name, _read, _write) \ argument
442 .device_u64_read = (_read), \
445 #define COUNTER_COMP_COUNT_U64(_name, _read, _write) \ argument
449 .count_u64_read = (_read), \
452 COUNTER_COMP_SIGNAL_U64(_name,_read,_write) global() argument
460 COUNTER_COMP_DEVICE_BOOL(_name,_read,_write) global() argument
467 COUNTER_COMP_COUNT_BOOL(_name,_read,_write) global() argument
474 COUNTER_COMP_SIGNAL_BOOL(_name,_read,_write) global() argument
552 COUNTER_COMP_DEVICE_ARRAY_U64(_name,_read,_write,_array) global() argument
560 COUNTER_COMP_COUNT_ARRAY_U64(_name,_read,_write,_array) global() argument
568 COUNTER_COMP_SIGNAL_ARRAY_U64(_name,_read,_write,_array) global() argument
577 COUNTER_COMP_CAPTURE(_read,_write) global() argument
580 COUNTER_COMP_CEILING(_read,_write) global() argument
583 COUNTER_COMP_COMPARE(_read,_write) global() argument
586 COUNTER_COMP_COUNT_MODE(_read,_write,_available) global() argument
595 COUNTER_COMP_DIRECTION(_read) global() argument
602 COUNTER_COMP_ENABLE(_read,_write) global() argument
605 COUNTER_COMP_FLOOR(_read,_write) global() argument
608 COUNTER_COMP_FREQUENCY(_read) global() argument
611 COUNTER_COMP_POLARITY(_read,_write,_available) global() argument
620 COUNTER_COMP_PRESET(_read,_write) global() argument
623 COUNTER_COMP_PRESET_ENABLE(_read,_write) global() argument
626 COUNTER_COMP_ARRAY_CAPTURE(_read,_write,_array) global() argument
629 COUNTER_COMP_ARRAY_POLARITY(_read,_write,_array) global() argument
[all...]
H A Dsysfs.h336 #define __BIN_ATTR(_name, _mode, _read, _write, _size) { \ argument
338 .read = _read, \
344 __BIN_ATTR(_name, 0444, _name##_read, NULL, _size)
350 __BIN_ATTR(_name, 0644, _name##_read, _name##_write, _size)
354 #define BIN_ATTR(_name, _mode, _read, _write, _size) \ argument
355 struct bin_attribute bin_attr_##_name = __BIN_ATTR(_name, _mode, _read, \
369 __BIN_ATTR(_name, 0400, _name##_read, NULL, _size)
372 __BIN_ATTR(_name, 0600, _name##_read, _name##_write, _size)
H A Dconfigfs.h172 .read = _pfx##_name##_read, \
185 .read = _pfx##_name##_read, \
H A Daverage.h45 ewma_##name##_read(struct ewma_##name *e) \
/linux/drivers/net/wireless/ti/wlcore/
H A Ddebugfs.h26 static ssize_t name## _read(struct file *file, char __user *userbuf, \
35 .read = name## _read, \
54 static ssize_t sub## _ ##name## _read(struct file *file, \
68 .read = sub## _ ##name## _read, \
74 static ssize_t sub## _ ##name## _read(struct file *file, \
94 .read = sub## _ ##name## _read, \
/linux/drivers/net/wireless/intel/iwlwifi/mld/
H A Ddebugfs.h35 static ssize_t _iwl_dbgfs_##name##_read(struct file *file, \
43 data->rlen = iwl_dbgfs_##name##_read(data->arg, \
64 .read = _iwl_dbgfs_##name##_read, \
131 return iwl_dbgfs_##name##_read(mld, buf, count); \
162 static ssize_t __iwl_dbgfs_##name##_read(struct file *file, \
188 .read = __iwl_dbgfs_##name##_read, \
210 .read = __iwl_dbgfs_##name##_read, \
240 .read = _iwl_dbgfs_##name##_read, \
/linux/lib/
H A Datomic64_test.c26 WARN(atomic##bit##_read(&v) != r, "%Lx != %Lx\n", \
27 (unsigned long long)atomic##bit##_read(&v), \
50 BUG_ON(atomic##bit##_read(&v) != r); \
59 BUG_ON(atomic##bit##_read(&v) != r); \
76 BUG_ON(atomic##bit##_read(&v) != expect); \
/linux/drivers/net/wireless/intel/iwlwifi/mvm/
H A Ddebugfs.h9 .read = iwl_dbgfs_##name##_read, \
33 .read = iwl_dbgfs_##name##_read, \
/linux/drivers/net/wireless/ath/carl9170/
H A Ddebug.c170 #define __DEBUGFS_DECLARE_FILE(name, _read, _write, _read_bufsize, \ argument
174 .read = _read, \
180 #define DEBUGFS_DECLARE_FILE(name, _read, _write, _read_bufsize, _attr) \ argument
181 __DEBUGFS_DECLARE_FILE(name, _read, _write, _read_bufsize, \
185 DEBUGFS_DECLARE_FILE(name, carl9170_debugfs_##name ##_read, \
193 DEBUGFS_DECLARE_FILE(name, carl9170_debugfs_##name ##_read, \
198 __DEBUGFS_DECLARE_FILE(name, carl9170_debugfs_##name ##_read, \
203 static char *carl9170_debugfs_ ##name ## _read(struct ar9170 *ar, \
370 static char *carl9170_debugfs_##q ##_##qi ##_read(struct ar9170 *ar, \
483 static char *carl9170_debugfs_##name ## _read(struc
[all...]
/linux/scripts/atomic/fallbacks/
H A Dread_acquire7 ret = raw_${atomic}_read(v);
H A Ddec_unless_positive2 ${int} c = raw_${atomic}_read(v);
H A Dinc_unless_negative2 ${int} c = raw_${atomic}_read(v);
H A Dfetch_add_unless2 ${int} c = raw_${atomic}_read(v);
H A Ddec_if_positive2 ${int} dec, c = raw_${atomic}_read(v);
/linux/drivers/net/wireless/intel/iwlwifi/fw/
H A Ddebugfs.c36 static ssize_t _iwl_dbgfs_##name##_read(struct file *file, \
44 data->rlen = iwl_dbgfs_##name##_read(data->arg, \
66 .read = _iwl_dbgfs_##name##_read, \
94 .read = _iwl_dbgfs_##name##_read, \
/linux/net/mac80211/
H A Ddebugfs_key.c18 static ssize_t key_##name##_read(struct file *file, \
30 .read = key_##name##_read, \
36 .read = key_##name##_read, \
51 .read = key_conf_##name##_read, \
H A Ddebugfs.c35 static ssize_t name## _read(struct file *file, char __user *userbuf, \
46 .read = name## _read, \
647 static ssize_t stats_ ##name## _read(struct file *file, \
659 .read = stats_ ##name## _read, \
/linux/scripts/
H A Dtest_doc_build.py188 async def _read(self, stream, verbose, is_info): member in AsyncCommands
225 self._read(proc.stdout, verbose, True),
226 self._read(proc.stderr, verbose, False),
/linux/drivers/net/wireless/ti/wl1251/
H A Ddebugfs.c23 static ssize_t name## _read(struct file *file, char __user *userbuf, \
35 .read = name## _read, \
51 static ssize_t sub## _ ##name## _read(struct file *file, \
67 .read = sub## _ ##name## _read, \
/linux/net/wireless/
H A Ddebugfs.c15 static ssize_t name## _read(struct file *file, char __user *userbuf, \
27 .read = name## _read, \
/linux/drivers/mtd/chips/
H A Dmap_absent.c60 mtd->_read = map_absent_read; in map_absent_probe()
/linux/drivers/net/ethernet/sfc/siena/
H A Dmtd.c73 part->mtd._read = efx->type->mtd_read; in efx_siena_mtd_add()
/linux/drivers/net/ethernet/sfc/falcon/
H A Dmtd.c70 part->mtd._read = efx->type->mtd_read; in ef4_mtd_add()
/linux/drivers/net/ethernet/sfc/
H A Dmtd.c73 part->mtd._read = efx->type->mtd_read; in efx_mtd_add()
/linux/tools/memory-model/Documentation/
H A Dcheatsheet.txt23 as atomic_inc(), or one of the atomic*_read() and

1234