Lines Matching refs:dst
44 #define __CORE_BITFIELD_PROBE_READ(dst, src, fld) \ argument
46 (void *)dst, \
54 #define __CORE_BITFIELD_PROBE_READ(dst, src, fld) \ argument
56 (void *)dst + (8 - __CORE_RELO(src, fld, BYTE_SIZE)), \
205 #define bpf_core_read(dst, sz, src) \ argument
206 bpf_probe_read_kernel(dst, sz, \
214 #define bpf_core_read_str(dst, sz, src) \ argument
215 bpf_probe_read_kernel_str(dst, sz, \
271 #define ___read(read_fn, dst, src_type, src, accessor) \ argument
272 read_fn((void *)(dst), sizeof(*(dst)), &((src_type)(src))->accessor)
291 #define ___core_read0(fn, dst, src, a) \ argument
292 ___read(fn, dst, ___type(src), src, a);
293 #define ___core_readN(fn, dst, src, ...) \ argument
295 ___read(fn, dst, ___type(src, ___nolast(__VA_ARGS__)), __t, \
297 #define ___core_read(fn, dst, src, a, ...) \ argument
298 ___apply(___core_read, ___empty(__VA_ARGS__))(fn, dst, \
306 #define BPF_CORE_READ_INTO(dst, src, a, ...) \ argument
308 ___core_read(bpf_core_read, dst, (src), a, ##__VA_ARGS__) \
316 #define BPF_CORE_READ_STR_INTO(dst, src, a, ...) \ argument
318 ___core_read(bpf_core_read_str, dst, (src), a, ##__VA_ARGS__)\