HomeSort by relevance Sort by last modified time
    Searched defs:modname (Results 1 - 7 of 7) sorted by null

  /system/core/toolbox/
rmmod.c 14 char *modname, *dot; local
25 modname = strrchr(argv[1], '/');
26 if (!modname)
27 modname = argv[1];
28 else modname++;
38 for (i = 0; modname[i] != '\0'; i++) {
39 if (modname[i] == '-')
40 modname[i] = '_';
44 ret = delete_module(modname, O_NONBLOCK | O_EXCL);
47 modname, errno)
    [all...]
  /external/elfutils/tests/
line2addr.c 53 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL, local
57 printf ("%s(%s)+%#" PRIx64, modname, secname, address);
59 printf ("%s+%#" PRIx64, modname, address);
78 const char *modname, Dwarf_Addr base __attribute__ ((unused)),
99 if (modname[0] != '\0')
100 printf (" (%s:", modname);
102 printf (" %s%s:%d", modname[0] != '\0' ? "" : "(",
106 if (modname[0] != '\0'
funcscopes.c 137 const char *modname = dwfl_module_info (dwfl_cumodule (a->cu), NULL, local
141 if (modname == NULL)
143 if (modname[0] == '\0')
144 modname = fname;
145 printf ("%s: %#" PRIx64 " .. %#" PRIx64 "\n", modname, start, end);
  /external/libppp/src/
netgraph.c 469 char modname[NG_TYPESIZ + 3]; local
558 snprintf(modname, sizeof modname, "ng_%s", nodetype);
560 p->link.name, modname);
561 loadmodules(LOAD_QUIETLY, modname, NULL);
624 snprintf(modname, sizeof modname, "ng_%s", nodetype);
626 p->link.name, modname);
627 loadmodules(LOAD_QUIETLY, modname, NULL);
  /external/oprofile/daemon/liblegacy/
opd_kernel.c 155 char * modname; local
202 modname = xmalloc((size_t)((cp2-cp) + 1));
203 strncpy(modname, cp, (size_t)((cp2-cp)));
204 modname[cp2-cp] = '\0';
206 mod = opd_find_module_by_name(modname);
208 free(modname);
  /external/elfutils/libdwfl/
linux-kernel-modules.c 717 const char *modname, Dwarf_Addr base __attribute__ ((unused)),
723 if (asprintf (&sysfile, SECADDRDIRFMT "%s", modname, secname) < 0)
758 modname, &secname[1]) < 0)
773 modname, secname);
827 char modname[128]; local
835 modname, &modsz, &modaddr) == 3)
837 Dwfl_Module *mod = INTUSE(dwfl_report_module) (dwfl, modname,
  /external/elfutils/src/
unstrip.c 1987 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL, local
2006 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL, local
2025 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL, local
    [all...]

Completed in 246 milliseconds