Searched refs:txtname (Results 1 – 2 of 2) sorted by relevance
/linux-4.1.27/scripts/ |
D | recordmcount.h | 356 const char *const txtname) in nop_mcount() argument 383 txtname); in nop_mcount() 418 char const *const txtname, in find_secsym_ndx() argument 445 txtndx, txtname); in find_secsym_ndx() 459 char const *const txtname = &shstrtab[w(txthdr->sh_name)]; in __has_rel_mcount() local 461 if (strcmp("__mcount_loc", txtname) == 0) { in __has_rel_mcount() 469 return txtname; in __has_rel_mcount() 490 char const *txtname; in tot_relsize() local 493 txtname = has_rel_mcount(shdrp, shdr0, shstrtab, fname); in tot_relsize() 494 if (txtname && is_mcounted_section_name(txtname)) in tot_relsize() [all …]
|
D | recordmcount.c | 266 is_mcounted_section_name(char const *const txtname) in is_mcounted_section_name() argument 268 return strcmp(".text", txtname) == 0 || in is_mcounted_section_name() 269 strcmp(".ref.text", txtname) == 0 || in is_mcounted_section_name() 270 strcmp(".sched.text", txtname) == 0 || in is_mcounted_section_name() 271 strcmp(".spinlock.text", txtname) == 0 || in is_mcounted_section_name() 272 strcmp(".irqentry.text", txtname) == 0 || in is_mcounted_section_name() 273 strcmp(".kprobes.text", txtname) == 0 || in is_mcounted_section_name() 274 strcmp(".text.unlikely", txtname) == 0; in is_mcounted_section_name()
|