/hardware/libhardware_legacy/wifi/ |
wifi.c | 134 static int rmmod(const char *modname) 140 ret = delete_module(modname, O_NONBLOCK | O_EXCL); 149 modname, strerror(errno));
|
/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));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 531 def __init__(self, modname, names, level, lineno=None): 532 self.modname = modname 538 return self.modname, self.names, self.level 544 return "From(%s, %s, %s)" % (repr(self.modname), repr(self.names), repr(self.level)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 531 def __init__(self, modname, names, level, lineno=None): 532 self.modname = modname 538 return self.modname, self.names, self.level 544 return "From(%s, %s, %s)" % (repr(self.modname), repr(self.names), repr(self.level)) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sax.py | 858 for modname in sys.modules.keys(): 859 if modname.startswith("xml."): 860 del sys.modules[modname]
|
regrtest.py | 691 modname, ext = os.path.splitext(name) 692 if modname[:5] == "test_" and ext == ".py" and modname not in others: 693 tests.append(modname) [all...] |
test_io.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sax.py | 858 for modname in sys.modules.keys(): 859 if modname.startswith("xml."): 860 del sys.modules[modname]
|
regrtest.py | 691 modname, ext = os.path.splitext(name) 692 if modname[:5] == "test_" and ext == ".py" and modname not in others: 693 tests.append(modname) [all...] |
/external/elfutils/libdwfl/ |
find-debuginfo.c | 257 const char *modname __attribute__ ((unused)),
|
offline.c | 62 const char *modname __attribute__ ((unused)),
|
/external/linux-tools-perf/Documentation/ |
perf-probe.txt | 37 --module=MODNAME::
|
/external/linux-tools-perf/ |
builtin-probe.c | 245 "modname", "target module name"),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
inspect.py | 490 for modname, module in sys.modules.items(): 493 if f == _filesbymodname.get(modname, None): 496 _filesbymodname[modname] = f [all...] |
optparse.py | 884 def read_module(self, modname, mode="careful"): 885 __import__(modname) 886 mod = sys.modules[modname] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
inspect.py | 490 for modname, module in sys.modules.items(): 493 if f == _filesbymodname.get(modname, None): 496 _filesbymodname[modname] = f [all...] |
optparse.py | 884 def read_module(self, modname, mode="careful"): 885 __import__(modname) 886 mod = sys.modules[modname] [all...] |
/external/clang/lib/Frontend/ |
ASTUnit.cpp | 890 std::string ModName = Mod->getFullModuleName(); 891 Hash = llvm::HashString(ModName, Hash); [all...] |
/external/iptables/iptables/ |
xtables.c | 329 int xtables_insmod(const char *modname, const char *modprobe, bool quiet) 352 argv[1] = (char *)modname; [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 757 std::string ModName = GenerateUniqueName("mcjit_module_"); 758 Module *M = new Module(ModName, Context); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy.cpp | 767 std::string ModName = GenerateUniqueName("mcjit_module_"); 768 Module *M = new Module(ModName, Context); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy.cpp | 856 std::string ModName = GenerateUniqueName("mcjit_module_"); 857 Module *M = new Module(ModName, Context); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 1019 std::string ModName = GenerateUniqueName("mcjit_module_"); 1020 Module *M = new Module(ModName, Context); [all...] |
/external/clang/include/clang/Frontend/ |
ASTUnit.h | 271 void TranslateStoredDiagnostics(ASTReader *MMan, StringRef ModName, [all...] |