Searched refs:txtname (Results 1 – 2 of 2) sorted by relevance
/scripts/ |
D | recordmcount.h | 453 const char *const txtname) in nop_mcount() argument 480 txtname); in nop_mcount() 517 char const *const txtname, in find_secsym_ndx() argument 548 txtndx, txtname); in find_secsym_ndx() 560 char const *const txtname = &shstrtab[w(txthdr->sh_name)]; in __has_rel_mcount() local 562 if (strcmp("__mcount_loc", txtname) == 0) { in __has_rel_mcount() 570 return txtname; in __has_rel_mcount() 591 char const *txtname; in tot_relsize() local 594 txtname = has_rel_mcount(shdrp, shdr0, shstrtab, fname); in tot_relsize() 595 if (txtname == already_has_rel_mcount) { in tot_relsize() [all …]
|
D | recordmcount.c | 411 static int is_mcounted_section_name(char const *const txtname) in is_mcounted_section_name() argument 413 return strncmp(".text", txtname, 5) == 0 || in is_mcounted_section_name() 414 strcmp(".init.text", txtname) == 0 || in is_mcounted_section_name() 415 strcmp(".ref.text", txtname) == 0 || in is_mcounted_section_name() 416 strcmp(".sched.text", txtname) == 0 || in is_mcounted_section_name() 417 strcmp(".spinlock.text", txtname) == 0 || in is_mcounted_section_name() 418 strcmp(".irqentry.text", txtname) == 0 || in is_mcounted_section_name() 419 strcmp(".softirqentry.text", txtname) == 0 || in is_mcounted_section_name() 420 strcmp(".kprobes.text", txtname) == 0 || in is_mcounted_section_name() 421 strcmp(".cpuidle.text", txtname) == 0; in is_mcounted_section_name()
|