Lines Matching refs:type
170 int profile_event_register(enum profile_type type, struct notifier_block *n) in profile_event_register() argument
174 switch (type) { in profile_event_register()
189 int profile_event_unregister(enum profile_type type, struct notifier_block *n) in profile_event_unregister() argument
193 switch (type) { in profile_event_unregister()
285 static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) in do_profile_hits() argument
386 static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) in do_profile_hits() argument
394 void profile_hits(int type, void *__pc, unsigned int nr_hits) in profile_hits() argument
396 if (prof_on != type || !prof_buffer) in profile_hits()
398 do_profile_hits(type, __pc, nr_hits); in profile_hits()
402 void profile_tick(int type) in profile_tick() argument
408 profile_hit(type, (void *)profile_pc(regs)); in profile_tick()