Home
last modified time | relevance | path

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

/linux/tools/include/nolibc/
A Dtypes.h127 int __fd = (fd); \
128 if (__fd >= 0) \
129 __set->fds[__fd / FD_SETIDXMASK] &= \
130 ~(1U << (__fd & FX_SETBITMASK)); \
135 int __fd = (fd); \
136 if (__fd >= 0) \
137 __set->fds[__fd / FD_SETIDXMASK] |= \
138 1 << (__fd & FD_SETBITMASK); \
143 int __fd = (fd); \
145 if (__fd >= 0) \
[all …]
/linux/tools/testing/selftests/bpf/prog_tests/
A 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, \

Completed in 6 milliseconds