Home
last modified time | relevance | path

Searched refs:__fd (Results 1 – 2 of 2) sorted by relevance

/linux-6.6.21/tools/include/nolibc/
Dtypes.h128 int __fd = (fd); \
129 if (__fd >= 0) \
130 __set->fds[__fd / FD_SETIDXMASK] &= \
131 ~(1U << (__fd & FX_SETBITMASK)); \
136 int __fd = (fd); \
137 if (__fd >= 0) \
138 __set->fds[__fd / FD_SETIDXMASK] |= \
139 1 << (__fd & FD_SETBITMASK); \
144 int __fd = (fd); \
146 if (__fd >= 0) \
[all …]
/linux-6.6.21/tools/testing/selftests/bpf/prog_tests/
Dtc_bpf.c11 #define TEST_DECLARE_OPTS(__fd) \ argument
14 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_f, .prog_fd = __fd); \
16 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_hf, .handle = 1, .prog_fd = __fd); \
17 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_pf, .priority = 1, .prog_fd = __fd); \
18 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_hpf, .handle = 1, .priority = 1, .prog_fd = __fd); \
22 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts_hpfi, .handle = 1, .priority = 1, .prog_fd = __fd, \