/hardware/libhardware_legacy/wifi/ |
wifi.c | 152 static int rmmod(const char *modname) 158 ret = delete_module(modname, O_NONBLOCK | O_EXCL); 167 modname, strerror(errno));
|
/external/chromium_org/third_party/cython/src/Cython/Utility/ |
ObjectHandling.c | 785 PyObject *qualname, PyObject *modname); /*proto*/ 792 PyObject *qualname, PyObject *modname) { 796 if (PyDict_SetItem(dict, PYIDENT("__module__"), modname) < 0) 823 PyObject *mkw, PyObject *modname, PyObject *doc); /*proto*/ 832 PyObject *qualname, PyObject *mkw, PyObject *modname, PyObject *doc) { 859 if (unlikely(PyObject_SetItem(ns, PYIDENT("__module__"), modname) < 0)) goto bad; [all...] |
ModuleSetupCode.c | 538 static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); /*proto*/ 592 static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { 595 m = PyImport_ImportModule((char *)modname);
|
/external/elfutils/0.153/libdwfl/ |
find-debuginfo.c | 274 const char *modname __attribute__ ((unused)),
|
offline.c | 62 const char *modname __attribute__ ((unused)),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
Debugger.py | 343 modname = frame.f_globals["__name__"] 345 modname = "?" 354 item = "%s, line %d: %s" % (modname, lineno, sourceline) 356 item = "%s.%s(), line %d: %s" % (modname, funcname,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
trace.py | 186 def modname(path): function 318 modulename = modname(filename) 533 modulename = modname(filename) 600 # XXX modname() doesn't work right for packages, so 602 modulename = modname(filename)
|
inspect.py | 490 for modname, module in sys.modules.items(): 493 if f == _filesbymodname.get(modname, None): 496 _filesbymodname[modname] = f [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
Debugger.py | 343 modname = frame.f_globals["__name__"] 345 modname = "?" 354 item = "%s, line %d: %s" % (modname, lineno, sourceline) 356 item = "%s.%s(), line %d: %s" % (modname, funcname,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
trace.py | 186 def modname(path): function 318 modulename = modname(filename) 533 modulename = modname(filename) 600 # XXX modname() doesn't work right for packages, so 602 modulename = modname(filename)
|
inspect.py | 490 for modname, module in sys.modules.items(): 493 if f == _filesbymodname.get(modname, None): 496 _filesbymodname[modname] = f [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
genpyx.py | 385 def pyxsym(self, ostream, names=None, tag_lookup=None, cprefix="", modname=None, cobjects=None): 394 #ostream.putln( '%s.%s = %s' % (modname,self.name, self.name) ) 492 def pyx_decls(self, filenames, modname, macros = {}, names = {}, func_cb=None, cprefix="", **kw):
|
/external/elfutils/0.153/src/ |
unstrip.c | 1998 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL, local 2017 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL, local 2036 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL, local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
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_sax.py | 858 for modname in sys.modules.keys(): 859 if modname.startswith("xml."): 860 del sys.modules[modname]
|
test_io.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
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_sax.py | 858 for modname in sys.modules.keys(): 859 if modname.startswith("xml."): 860 del sys.modules[modname]
|
test_io.py | [all...] |
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
MemoryView.py | 869 for modname in modnames: 870 mod = scope.lookup(modname) 873 node.pos, "undeclared name not builtin: %s" % modname) [all...] |
/external/ltrace/ |
output.c | 592 const char *modname = NULL; local 597 modname = dwfl_module_info(mod, NULL, NULL, NULL, NULL, 605 modname, symname, off, pc);
|
/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...] |
/external/chromium_org/third_party/cython/src/Cython/Debugger/ |
libpython.py | [all...] |
/external/iptables/libxtables/ |
xtables.c | 337 int xtables_insmod(const char *modname, const char *modprobe, bool quiet) 360 argv[1] = (char *)modname; [all...] |