Lines Matching refs:__name
280 #define DEFINE_INSN_CACHE_OPS(__name) \
281 extern struct kprobe_insn_cache kprobe_##__name##_slots; \
283 static inline kprobe_opcode_t *get_##__name##_slot(void) \
285 return __get_insn_slot(&kprobe_##__name##_slots); \
288 static inline void free_##__name##_slot(kprobe_opcode_t *slot, int dirty)\
290 __free_insn_slot(&kprobe_##__name##_slots, slot, dirty); \
293 static inline bool is_kprobe_##__name##_slot(unsigned long addr) \
295 return __is_insn_slot_addr(&kprobe_##__name##_slots, addr); \
302 #define DEFINE_INSN_CACHE_OPS(__name) \
303 static inline bool is_kprobe_##__name##_slot(unsigned long addr) \