/system/core/toolbox/ |
rmmod.c | 14 char *modname, *dot; local 25 modname = strrchr(argv[1], '/'); 26 if (!modname) 27 modname = argv[1]; 33 ret = delete_module(modname, O_NONBLOCK | O_EXCL); 36 modname, errno);
|
/system/core/nexus/ |
TiwlanWifiController.h | 31 TiwlanWifiController(PropertyManager *propmngr, IControllerHandler *handlers, char *modpath, char *modname, char *modargs);
|
TiwlanWifiController.cpp | 39 char *modpath, char *modname, 41 WifiController(propmngr, handlers, modpath, modname,
|
WifiController.h | 231 WifiController(PropertyManager *propmngr, IControllerHandler *handlers, char *modpath, char *modname, char *modargs);
|
WifiController.cpp | 43 char *modpath, char *modname, char *modargs) : 46 strncpy(mModuleName, modname, sizeof(mModuleName));
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
SDL_x11dyn.c | 89 #define SDL_X11_MODULE(modname) 105 #define SDL_X11_MODULE(modname) int SDL_X11_HAVE_##modname = 1; 123 #define SDL_X11_MODULE(modname) SDL_X11_HAVE_##modname = 1; 160 #define SDL_X11_MODULE(modname) thismod = &SDL_X11_HAVE_##modname;
|
SDL_x11dyn.h | 75 #define SDL_X11_MODULE(modname) extern int 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/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/llvm/lib/Linker/ |
Linker.cpp | 24 Linker::Linker(StringRef progname, StringRef modname, 27 Composite(new Module(modname, C)),
|
/external/kernel-headers/original/linux/ |
module.h | 458 char **modname); 529 char **modname)
|
/hardware/libhardware_legacy/wifi/ |
wifi.c | 120 static int rmmod(const char *modname) 126 ret = delete_module(modname, O_NONBLOCK | O_EXCL); 135 modname, strerror(errno));
|
/external/iptables/iptables/ |
xtables.c | 329 int xtables_insmod(const char *modname, const char *modprobe, bool quiet) 352 argv[1] = (char *)modname; [all...] |