Home
last modified time | relevance | path

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

/linux/scripts/
H A Drecordmcount.h453 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 …]
H A Drecordmcount.c419 static int is_mcounted_section_name(char const *const txtname) in is_mcounted_section_name() argument
421 return strncmp(".text", txtname, 5) == 0 || in is_mcounted_section_name()
422 strcmp(".init.text", txtname) == 0 || in is_mcounted_section_name()
423 strcmp(".ref.text", txtname) == 0 || in is_mcounted_section_name()
424 strcmp(".sched.text", txtname) == 0 || in is_mcounted_section_name()
425 strcmp(".spinlock.text", txtname) == 0 || in is_mcounted_section_name()
426 strcmp(".irqentry.text", txtname) == 0 || in is_mcounted_section_name()
427 strcmp(".softirqentry.text", txtname) == 0 || in is_mcounted_section_name()
428 strcmp(".kprobes.text", txtname) == 0 || in is_mcounted_section_name()
429 strcmp(".cpuidle.text", txtname) == 0; in is_mcounted_section_name()
/linux/arch/arm/kernel/
H A Dmodule.c428 const char *txtname; in module_finalize() local
436 txtname = ".text"; in module_finalize()
438 txtname = secname + strlen(".ARM.exidx"); in module_finalize()
439 txt_sec = find_mod_section(hdr, sechdrs, txtname); in module_finalize()