Lines Matching refs:name

114 						   &fakemod.debug.name);
120 0, &fakemod.debug.name);
122 if (fakemod.debug.name != NULL)
125 *fname = fakemod.debug.name;
328 if (!m->gc && m->e_type != ET_REL && !strcmp (m->name, "kernel"))
388 /* Do "find /lib/modules/RELEASE -name *.ko". */
425 /* See if this file name matches "*.ko". */
431 replace all ',' or '-' with '_' in the file name and
432 call that the module name. Modules could well be
435 __this_module.name contents in the module's text. */
437 char *name = strndup (f->fts_name, f->fts_namelen - suffix);
438 if (unlikely (name == NULL))
445 if (name[i] == '-' || name[i] == ',')
446 name[i] = '_';
451 int want = (*predicate) (name, f->fts_path);
455 free (name);
460 free (name);
465 if (dwfl_report_offline (dwfl, name, f->fts_path, -1) == NULL)
467 free (name);
471 free (name);
602 unsigned char *name = p;
606 the name and type. */
609 && name + nhdr->n_namesz < &buf.data[n]
610 && !memcmp (name, "GNU", sizeof "GNU"))
634 && !memcmp (name, "GNU", sizeof "GNU"))
640 (mod, NULL, mod->name, 0, secname, 0, NULL, &vaddr) != 0
666 if (asprintf (&dirs[0], MODNOTESFMT, mod->name) < 0)
725 if (!strcmp (m->name, KERNEL_MODNAME))
797 /* Do "find /lib/modules/`uname -r` -name MODULE_NAME.ko". */
813 the name of the .ko file installed and the module name the kernel
815 name comes from the name embedded in the object's magic
820 two files when either a '_' or '-' appears in a module name, one using
852 /* See if this file name is "MODULE_NAME.ko". */
936 The file name for ".init*" may actually look like "_init*". */