Lines Matching refs:HELPER
20 local BPF, HELPER = ffi.typeof('struct bpf'), ffi.typeof('struct bpf_func_id')
162 e.emit(BPF.JMP + BPF.CALL, 0, 0, 0, HELPER.probe_read)
233 e.emit(BPF.JMP + BPF.CALL, 0, 0, 0, HELPER.probe_read)
277 e.emit(BPF.JMP + BPF.CALL, 0, 0, 0, HELPER.trace_printk)
303 e.emit(BPF.JMP + BPF.CALL, 0, 0, 0, HELPER.perf_event_output)
324 e.emit(BPF.JMP + BPF.CALL, 0, 0, 0, HELPER.skb_load_bytes)
346 e.emit(BPF.JMP + BPF.CALL, 0, 0, 0, HELPER.get_stackid)
371 e.emit(BPF.JMP + BPF.CALL, 0, 0, 0, HELPER.get_current_comm)
445 builtins[cpu] = function (e, dst) return call_helper(e, dst, HELPER.get_smp_processor_id) end
446 builtins[rand] = function (e, dst) return call_helper(e, dst, HELPER.get_prandom_u32, ffi.typeof('u…
447 builtins[time] = function (e, dst) return call_helper(e, dst, HELPER.ktime_get_ns) end
448 builtins[pid_tgid] = function (e, dst) return call_helper(e, dst, HELPER.get_current_pid_tgid) end
449 builtins[uid_gid] = function (e, dst) return call_helper(e, dst, HELPER.get_current_uid_gid) end