/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/qemu/distrib/sdl-1.2.15/src/video/x11/ |
SDL_x11dyn.h | 81 #define SDL_X11_MODULE(modname) extern int SDL_X11_HAVE_##modname;
|
SDL_x11dyn.c | 92 #define SDL_X11_MODULE(modname) 108 #define SDL_X11_MODULE(modname) int SDL_X11_HAVE_##modname = 1; 141 #define SDL_X11_MODULE(modname) SDL_X11_HAVE_##modname = 1; 178 #define SDL_X11_MODULE(modname) thismod = &SDL_X11_HAVE_##modname;
|
/hardware/ti/omap3/dspbridge/inc/ |
dbg_zones.h | 30 * Need to call DBG_INSTANTIATE_ZONES(initialZones, modname ,opt1, opt2) 34 * - modname is a string such as "DDSP driver" 74 #define DBG_INSTANTIATE_ZONES(initialZones,modname,opt1,opt2) \ 77 TEXT(modname), \
|
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
dbg_zones.h | 30 * Need to call DBG_INSTANTIATE_ZONES(initialZones, modname ,opt1, opt2) 34 * - modname is a string such as "DDSP driver" 74 #define DBG_INSTANTIATE_ZONES(initialZones,modname,opt1,opt2) \ 77 TEXT(modname), \
|
/external/iproute2/include/ |
xt-internal.h | 50 extern int xtables_insmod(const char *modname, const char *modprobe, int quiet);
|
iptables_common.h | 30 extern int iptables_insmod(const char *modname, const char *modprobe);
|
ip6tables.h | 139 extern int ip6tables_insmod(const char *modname, const char *modprobe);
|
/external/chromium-trace/trace-viewer/third_party/python_gflags/ |
gflags2man.py | 276 modname = None # name of current module 286 modname = mobj.group(1) 290 self.module_list.append(modname) 291 self.modules.setdefault(modname, []) 292 modlist = self.modules[modname] 325 modname = None # name of current module 338 modname = mobj.group(1) 342 self.module_list.append(modname) 343 self.modules.setdefault(modname, []) 344 modlist = self.modules[modname] [all...] |
/external/llvm/lib/Linker/ |
Linker.cpp | 23 Linker::Linker(StringRef progname, StringRef modname, 26 Composite(new Module(modname, C)),
|
/external/elfutils/libdwfl/ |
dwfl_build_id_find_debuginfo.c | 57 const char *modname __attribute__ ((unused)),
|
libdwfl.h | 69 const char *modname, Dwarf_Addr base, 73 const char *modname, Dwarf_Addr base, 84 const char *modname, Dwarf_Addr base,
|
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,
|
dwfl_build_id_find_elf.c | 147 const char *modname __attribute__ ((unused)),
|
find-debuginfo.c | 257 const char *modname __attribute__ ((unused)),
|
/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);
|
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/ |
ManualActivity.java | 60 String modname = ""; 62 modname = modname.concat(s + "."); 65 Log.d(LOG_TAG, "error for " + modname + " is " + error);
|
/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/chromium-trace/trace-viewer/build/ |
parse_deps.py | 337 modname = os.path.splitext(os.path.basename(rel_filename))[0] 339 name = dirname.replace('/', '.') + '.' + modname 341 name = modname
|
/hardware/ti/wlan/mac80211/ti-utils/uim_rfkill/ |
uim.c | 164 static int rmmod(const char *modname) 175 ret = delete_module(modname, O_NONBLOCK | O_EXCL); 187 modname, strerror(errno));
|
/hardware/ti/wpan/ti_st/uim-sysfs/ |
uim.c | 108 static int rmmod(const char *modname) 119 ret = delete_module(modname, O_NONBLOCK | O_EXCL); 130 modname, strerror(errno));
|
/external/kernel-headers/original/linux/ |
module.h | 458 char **modname); 529 char **modname)
|
/hardware/libhardware_legacy/wifi/ |
wifi.c | 150 static int rmmod(const char *modname) 156 ret = delete_module(modname, O_NONBLOCK | O_EXCL); 165 modname, strerror(errno));
|