Searched refs:FETCH_FUNC_NAME (Results 1 – 4 of 4) sorted by relevance
| /Linux-v4.19/kernel/trace/ |
| D | trace_probe.c | 69 (((FETCH_FUNC_NAME(method, u8) == fn) || \ 70 (FETCH_FUNC_NAME(method, u16) == fn) || \ 71 (FETCH_FUNC_NAME(method, u32) == fn) || \ 72 (FETCH_FUNC_NAME(method, u64) == fn) || \ 73 (FETCH_FUNC_NAME(method, string) == fn) || \ 74 (FETCH_FUNC_NAME(method, string_size) == fn)) \ 79 void FETCH_FUNC_NAME(reg, type)(struct pt_regs *regs, void *offset, void *dest) \ 84 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(reg, type)); 91 void FETCH_FUNC_NAME(retval, type)(struct pt_regs *regs, \ 96 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(retval, type)); [all …]
|
| D | trace_probe.h | 146 #define FETCH_FUNC_NAME(method, type) fetch_##method##_##type macro 150 extern void FETCH_FUNC_NAME(method, type)(struct pt_regs *regs, \ 204 [FETCH_MTD_##method] = FETCH_FUNC_NAME(method, type)
|
| D | trace_kprobe.c | 172 static void FETCH_FUNC_NAME(stack, type)(struct pt_regs *regs, \ 178 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(stack, type)); 186 static void FETCH_FUNC_NAME(memory, type)(struct pt_regs *regs, \ 195 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, type)); 202 static void FETCH_FUNC_NAME(memory, string)(struct pt_regs *regs, in DEFINE_BASIC_FETCH_FUNCS() 225 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string)); 228 static void FETCH_FUNC_NAME(memory, string_size)(struct pt_regs *regs, in FETCH_FUNC_NAME() function 252 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string_size)); 255 void FETCH_FUNC_NAME(symbol, type)(struct pt_regs *regs, void *data, void *dest)\ 263 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(symbol, type));
|
| D | trace_uprobe.c | 102 static void FETCH_FUNC_NAME(stack, type)(struct pt_regs *regs, \ 114 static void FETCH_FUNC_NAME(memory, type)(struct pt_regs *regs, \ 130 static void FETCH_FUNC_NAME(memory, string)(struct pt_regs *regs, in DEFINE_BASIC_FETCH_FUNCS() 154 static void FETCH_FUNC_NAME(memory, string_size)(struct pt_regs *regs, in FETCH_FUNC_NAME() function 180 static void FETCH_FUNC_NAME(file_offset, type)(struct pt_regs *regs, \ 185 FETCH_FUNC_NAME(memory, type)(regs, vaddr, dest); \
|