Home
last modified time | relevance | path

Searched refs:txtname (Results 1 – 2 of 2) sorted by relevance

/scripts/
Drecordmcount.h356 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 …]
Drecordmcount.c359 is_mcounted_section_name(char const *const txtname) in is_mcounted_section_name() argument
361 return strcmp(".text", txtname) == 0 || in is_mcounted_section_name()
362 strcmp(".ref.text", txtname) == 0 || in is_mcounted_section_name()
363 strcmp(".sched.text", txtname) == 0 || in is_mcounted_section_name()
364 strcmp(".spinlock.text", txtname) == 0 || in is_mcounted_section_name()
365 strcmp(".irqentry.text", txtname) == 0 || in is_mcounted_section_name()
366 strcmp(".softirqentry.text", txtname) == 0 || in is_mcounted_section_name()
367 strcmp(".kprobes.text", txtname) == 0 || in is_mcounted_section_name()
368 strcmp(".cpuidle.text", txtname) == 0 || in is_mcounted_section_name()
369 (strncmp(".text.", txtname, 6) == 0 && in is_mcounted_section_name()
[all …]