/freebsd/contrib/kyua/utils/process/ |
H A D | systembuf.cpp | 45 int _fd; member 61 _fd(fd), in impl() 88 ::close(_pimpl->_fd); in ~systembuf() 101 ssize_t cnt = ::read(_pimpl->_fd, _pimpl->_read_buf.get(), in underflow() 147 ok = ::write(_pimpl->_fd, pbase(), cnt) == cnt; in sync()
|
/freebsd/sys/dev/ath/ath_hal/ah_regdomain/ |
H A D | ah_rd_domains.h | 39 #define BM4(_fa, _fb, _fc, _fd) \ argument 40 { W0(_fa) | W0(_fb) | W0(_fc) | W0(_fd), \ 41 W1(_fa) | W1(_fb) | W1(_fc) | W1(_fd) } 42 #define BM5(_fa, _fb, _fc, _fd, _fe) \ argument 43 { W0(_fa) | W0(_fb) | W0(_fc) | W0(_fd) | W0(_fe), \ 44 W1(_fa) | W1(_fb) | W1(_fc) | W1(_fd) | W1(_fe) } 45 #define BM6(_fa, _fb, _fc, _fd, _fe, _ff) \ argument 46 { W0(_fa) | W0(_fb) | W0(_fc) | W0(_fd) | W0(_fe) | W0(_ff), \ 47 W1(_fa) | W1(_fb) | W1(_fc) | W1(_fd) | W1(_fe) | W1(_ff) } 48 #define BM7(_fa, _fb, _fc, _fd, _fe, _ff, _fg) \ argument [all …]
|
/freebsd/sys/sys/ |
H A D | extattr.h | 79 int extattr_delete_fd(int _fd, int _attrnamespace, const char *_attrname); 84 ssize_t extattr_get_fd(int _fd, int _attrnamespace, const char *_attrname, 90 ssize_t extattr_list_fd(int _fd, int _attrnamespace, void *_data, 96 ssize_t extattr_set_fd(int _fd, int _attrnamespace, const char *_attrname,
|
H A D | mac.h | 103 int mac_get_fd(int _fd, mac_t _label); 106 int mac_get_peer(int _fd, mac_t _label);
|
H A D | acl.h | 391 acl_t acl_get_fd(int _fd); 403 int acl_set_fd(int _fd, acl_t _acl); 404 int acl_set_fd_np(int _fd, acl_t _acl, acl_type_t _type); 416 int acl_valid_fd_np(int _fd, acl_type_t _type, acl_t _acl);
|
/freebsd/tests/sys/netpfil/pf/ |
H A D | sctp.py | 156 self._fd = self._libc.socket(family, socket.SOCK_STREAM, 158 if self._fd == -1: 164 ret = self._libc.bind(self._fd, ctypes.pointer(addr), ctypes.sizeof(addr)) 170 ret = self._libc.connect(self._fd, ctypes.pointer(addr), ctypes.sizeof(addr)) 177 ret = self._libc.setsockopt(self._fd, socket.IPPROTO_SCTP, 191 ret = self._libc.setsockopt(self._fd, socket.IPPROTO_SCTP, 210 ret = self._libc.setsockopt(self._fd, socket.IPPROTO_SCTP, 225 ret = self._libc.sctp_bindx(self._fd, ctypes.pointer(addr), 1, flag) 237 ret = self._libc.sctp_sendmsg(self._fd, ctypes.c_char_p(buf), len(buf), 243 self._libc.close(self._fd) [all...] |
/freebsd/sys/compat/linux/ |
H A D | linux_siginfo.h | 200 l_int _fd; member 231 #define lsi_fd _sifields._sigpoll._fd
|
/freebsd/sys/net/route/ |
H A D | fib_algo.h | 113 #define FIB_PRINTF(_l, _fd, _fmt, ...) fib_printf(_l, _fd, __func__, _fmt, ##__VA_ARGS__) argument
|
H A D | fib_algo.c | 252 #define FD_PRINTF(_l, _fd, _fmt, ...) FD_PRINTF_##_l(_l, _fd, _fmt, ## __VA_ARGS__) argument 253 #define _FD_PRINTF(_l, _fd, _fmt, ...) if (_PASS_MSG(_l)) { \ argument 254 _ALGO_PRINTF(_fd->fd_fibnum, _fd->fd_family, _fd->fd_flm->flm_name, \ 255 _fd->fd_gen, __func__, _fmt, ## __VA_ARGS__); \ 260 #define FD_PRINTF_LOG_DEBUG2(_l, _fd, _fmt, ...) argument
|
/freebsd/lib/libdpv/ |
H A D | dprompt.h | 44 void dprompt_dprint(int _fd, const char *_prefix, const char *_append,
|
/freebsd/lib/libutil/ |
H A D | libutil.h | 118 int login_tty(int _fd); 131 properties_read(int _fd);
|
/freebsd/contrib/elftoolchain/libelf/ |
H A D | _libelf.h | 212 Elf *_libelf_ar_open_member(int _fd, Elf_Cmd _c, Elf *_ar); 233 Elf *_libelf_open_object(int _fd, Elf_Cmd _c, int _reporterror);
|
H A D | libelf.h | 185 Elf *elf_begin(int _fd, Elf_Cmd _cmd, Elf *_elf); 220 Elf *elf_open(int _fd);
|
/freebsd/contrib/capsicum-test/ |
H A D | openat.cc | 15 int _fd = f; \ 16 EXPECT_OK(_fd); \ 17 close(_fd); \
|
/freebsd/lib/libpmc/ |
H A D | pmc.h | 78 int pmc_configure_logfile(int _fd);
|
H A D | pmclog.h | 225 void *pmclog_open(int _fd);
|
/freebsd/lib/libsysdecode/ |
H A D | sysdecode.h | 44 const char *sysdecode_atfd(int _fd);
|
/freebsd/contrib/elftoolchain/elfcopy/ |
H A D | elfcopy.h | 302 void create_tempfile(const char *_src, char **_fn, int *_fd);
|
/freebsd/sys/dev/iscsi/ |
H A D | icl_conn_if.m | 114 int _fd;
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive.h | 550 __LA_DECL int archive_read_open_fd(struct archive *, int _fd, 838 __LA_DECL int archive_write_open_fd(struct archive *, int _fd);
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | zfs_context.h | 719 intptr_t _fd;
|
/freebsd/sys/ofed/drivers/infiniband/core/ |
H A D | ib_uverbs_cmd.c | 210 #define ib_uverbs_lookup_comp_file(_fd, _ufile) ({ \ argument 211 CTASSERT(sizeof(_fd) == sizeof(s32)); \ 212 _ib_uverbs_lookup_comp_file(_fd, _ufile); \
|