Searched refs:txtname (Results 1 – 2 of 2) sorted by relevance
/linux-4.4.14/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 | 352 is_mcounted_section_name(char const *const txtname) in is_mcounted_section_name() argument 354 return strcmp(".text", txtname) == 0 || in is_mcounted_section_name() 355 strcmp(".ref.text", txtname) == 0 || in is_mcounted_section_name() 356 strcmp(".sched.text", txtname) == 0 || in is_mcounted_section_name() 357 strcmp(".spinlock.text", txtname) == 0 || in is_mcounted_section_name() 358 strcmp(".irqentry.text", txtname) == 0 || in is_mcounted_section_name() 359 strcmp(".kprobes.text", txtname) == 0 || in is_mcounted_section_name() 360 strcmp(".text.unlikely", txtname) == 0; in is_mcounted_section_name()
|