Searched refs:FETCH_FUNC_NAME (Results 1 – 4 of 4) sorted by relevance
/linux-4.1.27/kernel/trace/ |
D | trace_probe.c | 76 (((FETCH_FUNC_NAME(method, u8) == fn) || \ 77 (FETCH_FUNC_NAME(method, u16) == fn) || \ 78 (FETCH_FUNC_NAME(method, u32) == fn) || \ 79 (FETCH_FUNC_NAME(method, u64) == fn) || \ 80 (FETCH_FUNC_NAME(method, string) == fn) || \ 81 (FETCH_FUNC_NAME(method, string_size) == fn)) \ 86 void FETCH_FUNC_NAME(reg, type)(struct pt_regs *regs, void *offset, void *dest) \ 91 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(reg, type)); 98 void FETCH_FUNC_NAME(retval, type)(struct pt_regs *regs, \ 103 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(retval, type)); [all …]
|
D | trace_probe.h | 153 #define FETCH_FUNC_NAME(method, type) fetch_##method##_##type macro 157 extern void FETCH_FUNC_NAME(method, type)(struct pt_regs *regs, \ 203 [FETCH_MTD_##method] = FETCH_FUNC_NAME(method, type)
|
D | trace_kprobe.c | 135 static void FETCH_FUNC_NAME(stack, type)(struct pt_regs *regs, \ 141 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(stack, type)); 149 static void FETCH_FUNC_NAME(memory, type)(struct pt_regs *regs, \ 158 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, type)); 165 static void FETCH_FUNC_NAME(memory, string)(struct pt_regs *regs, in DEFINE_BASIC_FETCH_FUNCS() 200 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string)); 203 static void FETCH_FUNC_NAME(memory, string_size)(struct pt_regs *regs, in FETCH_FUNC_NAME() function 227 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string_size)); 230 void FETCH_FUNC_NAME(symbol, type)(struct pt_regs *regs, void *data, void *dest)\ 238 NOKPROBE_SYMBOL(FETCH_FUNC_NAME(symbol, type));
|
D | trace_uprobe.c | 111 static void FETCH_FUNC_NAME(stack, type)(struct pt_regs *regs, \ 123 static void FETCH_FUNC_NAME(memory, type)(struct pt_regs *regs, \ 139 static void FETCH_FUNC_NAME(memory, string)(struct pt_regs *regs, in DEFINE_BASIC_FETCH_FUNCS() 161 static void FETCH_FUNC_NAME(memory, string_size)(struct pt_regs *regs, in FETCH_FUNC_NAME() function 187 static void FETCH_FUNC_NAME(file_offset, type)(struct pt_regs *regs, \ 192 FETCH_FUNC_NAME(memory, type)(regs, vaddr, dest); \
|