Symbol: _mode
lib/libc/posix1e/acl_strip.c
41
void acl_nfs4_sync_mode_from_acl(mode_t *_mode, const struct acl *aclp);
lib/libpmc/pmc.h
74
int pmc_allocate(const char *_ctrspec, enum pmc_mode _mode, uint32_t _flags,
lib/libpmcstat/libpmcstat.h
380
int pmcstat_open_log(const char *_p, int _mode);
lib/libsysdecode/sysdecode.h
42
bool sysdecode_access_mode(FILE *_fp, int _mode, int *_rem);
lib/libsysdecode/sysdecode.h
57
bool sysdecode_filemode(FILE *_fp, int _mode, int *_rem);
lib/libsysdecode/sysdecode.h
60
const char *sysdecode_getfsstat_mode(int _mode);
lib/libsysdecode/sysdecode.h
73
const char *sysdecode_lio_listio_mode(int _mode);
lib/libutil/libutil.h
132
pidfile_open(const char *_path, mode_t _mode, pid_t *_pidptr);
sys/compat/linuxkpi/common/include/linux/device.h
149
#define CLASS_ATTR(_name, _mode, _show, _store) \
sys/compat/linuxkpi/common/include/linux/device.h
151
{ { #_name, NULL, _mode }, _show, _store }
sys/compat/linuxkpi/common/include/linux/device.h
162
#define DEVICE_ATTR(_name, _mode, _show, _store) \
sys/compat/linuxkpi/common/include/linux/device.h
164
__ATTR(_name, _mode, _show, _store)
sys/compat/linuxkpi/common/include/linux/device.h
188
#define _CLASS_ATTR_STRING(_name, _mode, _str) \
sys/compat/linuxkpi/common/include/linux/device.h
189
{ __ATTR(_name, _mode, show_class_attr_string, NULL), _str }
sys/compat/linuxkpi/common/include/linux/device.h
190
#define CLASS_ATTR_STRING(_name, _mode, _str) \
sys/compat/linuxkpi/common/include/linux/device.h
192
_CLASS_ATTR_STRING(_name, _mode, _str)
sys/compat/linuxkpi/common/include/linux/sysfs.h
102
#define BIN_ATTR(_name, _mode, _read, _write, _size) \
sys/compat/linuxkpi/common/include/linux/sysfs.h
104
__BIN_ATTR(_name, _mode, _read, _write, _size);
sys/compat/linuxkpi/common/include/linux/sysfs.h
63
#define __ATTR(_name, _mode, _show, _store) { \
sys/compat/linuxkpi/common/include/linux/sysfs.h
64
.attr = { .name = __stringify(_name), .mode = _mode }, \
sys/compat/linuxkpi/common/include/linux/sysfs.h
85
#define __BIN_ATTR(_name, _mode, _read, _write, _size) { \
sys/compat/linuxkpi/common/include/linux/sysfs.h
86
.attr = { .name = __stringify(_name), .mode = _mode }, \
sys/dev/ath/if_athvar.h
1064
#define ath_hal_getratetable(_ah, _mode) \
sys/dev/ath/if_athvar.h
1065
((*(_ah)->ah_getRateTable)((_ah), (_mode)))
sys/dev/ath/if_athvar.h
1084
#define ath_hal_setpower(_ah, _mode) \
sys/dev/ath/if_athvar.h
1085
((*(_ah)->ah_setPowerMode)((_ah), (_mode), AH_TRUE))
sys/dev/ath/if_athvar.h
1086
#define ath_hal_setselfgenpower(_ah, _mode) \
sys/dev/ath/if_athvar.h
1087
((*(_ah)->ah_setPowerMode)((_ah), (_mode), AH_FALSE))
sys/dev/axgbe/xgbe.h
364
#define XGBE_SET_SUP(_phy, _mode) \
sys/dev/axgbe/xgbe.h
365
((_phy)->supported |= SUPPORTED_##_mode)
sys/dev/axgbe/xgbe.h
367
#define XGBE_CLR_SUP(_phy, _mode) \
sys/dev/axgbe/xgbe.h
368
((_phy)->supported &= ~SUPPORTED_##_mode)
sys/dev/axgbe/xgbe.h
370
#define XGBE_IS_SUP(_phy, _mode) \
sys/dev/axgbe/xgbe.h
371
((_phy)->supported & SUPPORTED_##_mode)
sys/dev/axgbe/xgbe.h
376
#define XGBE_SET_ADV(_phy, _mode) \
sys/dev/axgbe/xgbe.h
377
((_phy)->advertising |= ADVERTISED_##_mode)
sys/dev/axgbe/xgbe.h
379
#define XGBE_CLR_ADV(_phy, _mode) \
sys/dev/axgbe/xgbe.h
380
((_phy)->advertising &= ~ADVERTISED_##_mode)
sys/dev/axgbe/xgbe.h
382
#define XGBE_ADV(_phy, _mode) \
sys/dev/axgbe/xgbe.h
383
((_phy)->advertising & ADVERTISED_##_mode)
sys/dev/axgbe/xgbe.h
388
#define XGBE_SET_LP_ADV(_phy, _mode) \
sys/dev/axgbe/xgbe.h
389
((_phy)->lp_advertising |= ADVERTISED_##_mode)
sys/dev/axgbe/xgbe.h
391
#define XGBE_CLR_LP_ADV(_phy, _mode) \
sys/dev/axgbe/xgbe.h
392
((_phy)->lp_advertising &= ~ADVERTISED_##_mode)
sys/dev/axgbe/xgbe.h
394
#define XGBE_LP_ADV(_phy, _mode) \
sys/dev/axgbe/xgbe.h
395
((_phy)->lp_advertising & ADVERTISED_##_mode)
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
1759
#define EN_PORT_ATTR(_name, _mode, _show, _store) \
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
1760
struct en_port_attribute en_port_attr_##_name = __ATTR(_name, _mode, _show, _store)
sys/kern/subr_acl_nfs4.c
717
acl_nfs4_sync_mode_from_acl(mode_t *_mode, const struct acl *aclp)
sys/kern/subr_acl_nfs4.c
720
mode_t old_mode = *_mode, mode = 0, seen = 0;
sys/kern/subr_acl_nfs4.c
835
*_mode = mode | (old_mode & ACL_PRESERVE_MASK);
sys/ofed/drivers/infiniband/core/ib_sysfs.c
77
#define PORT_ATTR(_name, _mode, _show, _store) \
sys/ofed/drivers/infiniband/core/ib_sysfs.c
78
struct port_attribute port_attr_##_name = __ATTR(_name, _mode, _show, _store)
sys/sys/acl.h
387
acl_t acl_from_mode_np(const mode_t _mode);
sys/sys/conf.h
297
struct ucred *_cr, uid_t _uid, gid_t _gid, int _mode,
sys/sys/conf.h
300
struct ucred *_cr, uid_t _uid, gid_t _gid, int _mode,
sys/ufs/ufs/inode.h
171
int _mode = (mode); \
sys/ufs/ufs/inode.h
174
atomic_store_short(&(_ip)->i_mode, _mode); \