Symbol: hw_breakpoint_slots
arch/arm/include/asm/hw_breakpoint.h
139
int hw_breakpoint_slots(int type);
arch/arm/kernel/ptrace.c
399
num_brps = hw_breakpoint_slots(TYPE_INST);
arch/arm/kernel/ptrace.c
400
num_wrps = hw_breakpoint_slots(TYPE_DATA);
arch/arm64/include/asm/hw_breakpoint.h
124
extern int hw_breakpoint_slots(int type);
arch/arm64/kernel/ptrace.c
2131
num_brps = hw_breakpoint_slots(TYPE_INST);
arch/arm64/kernel/ptrace.c
2132
num_wrps = hw_breakpoint_slots(TYPE_DATA);
arch/arm64/kernel/ptrace.c
367
num = hw_breakpoint_slots(TYPE_INST);
arch/arm64/kernel/ptrace.c
370
num = hw_breakpoint_slots(TYPE_DATA);
arch/loongarch/include/asm/hw_breakpoint.h
116
extern int hw_breakpoint_slots(int type);
arch/loongarch/kernel/ptrace.c
516
num = hw_breakpoint_slots(TYPE_INST);
arch/loongarch/kernel/ptrace.c
519
num = hw_breakpoint_slots(TYPE_DATA);
arch/powerpc/include/asm/hw_breakpoint.h
77
extern int hw_breakpoint_slots(int type);
arch/xtensa/include/asm/hw_breakpoint.h
38
int hw_breakpoint_slots(int type);
kernel/events/hw_breakpoint.c
167
#ifdef hw_breakpoint_slots
kernel/events/hw_breakpoint.c
171
static_assert(hw_breakpoint_slots(TYPE_INST) == hw_breakpoint_slots(TYPE_DATA));
kernel/events/hw_breakpoint.c
172
static inline int hw_breakpoint_slots_cached(int type) { return hw_breakpoint_slots(type); }
kernel/events/hw_breakpoint.c
203
__nr_bp_slots[i] = hw_breakpoint_slots(i);
kernel/events/hw_breakpoint.c
43
#ifdef hw_breakpoint_slots
kernel/events/hw_breakpoint.c
44
atomic_t count[hw_breakpoint_slots(0)];
kernel/events/hw_breakpoint_test.c
60
slots = hw_breakpoint_slots(TYPE_DATA);