/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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
__init__.py | 13 modname = "unittest.test." + fn[:-3] 14 __import__(modname) 15 module = sys.modules[modname]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
__init__.py | 13 modname = "unittest.test." + fn[:-3] 14 __import__(modname) 15 module = sys.modules[modname]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test___all__.py | 24 def check_all(self, modname): 29 exec "import %s" % modname in names 34 raise FailedImport(modname) 35 if not hasattr(sys.modules[modname], "__all__"): 36 raise NoAll(modname) 39 exec "from %s import *" % modname in names 43 modname, e.__class__.__name__, e)) 47 all = set(sys.modules[modname].__all__) 89 for path, modname in self.walk_modules(lib_dir, ""): 90 m = modname [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test___all__.py | 24 def check_all(self, modname): 29 exec "import %s" % modname in names 34 raise FailedImport(modname) 35 if not hasattr(sys.modules[modname], "__all__"): 36 raise NoAll(modname) 39 exec "from %s import *" % modname in names 43 modname, e.__class__.__name__, e)) 47 all = set(sys.modules[modname].__all__) 89 for path, modname in self.walk_modules(lib_dir, ""): 90 m = modname [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
wrap_yasm.py | 20 def mk_tao(CPPFLAGS = "", CPP = "gcc -E", modname = '_yasm', oname = None, YASM_DIR = ".", **options): 22 oname = modname+'.pyx' 36 unit = WorkUnit(files,modname,oname,False,mark_cb=cb,extradefs=extradefs,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
__init__.py | 28 modname = "distutils.tests." + fn[:-3] 29 __import__(modname) 30 module = sys.modules[modname]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
macresource.py | 15 def need(restype, resid, filename=None, modname=None): 19 (default: modname with .rsrc appended) either in the same folder as 20 where modname was loaded from, or otherwise across sys.path. 24 if modname is None and filename is None: 25 raise ArgumentError, "Either filename or modname argument (or both) must be given" 44 if '.' in modname: 45 filename = modname.split('.')[-1] + '.rsrc' 47 filename = modname + '.rsrc' 51 if modname == '__main__': 54 if modname in sys.modules [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
__init__.py | 28 modname = "distutils.tests." + fn[:-3] 29 __import__(modname) 30 module = sys.modules[modname]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
codeunit.py | 60 n = modname = morf.__name__ 70 modname = None 72 self.modname = modname 97 if self.modname: 98 return self.modname.replace('.', '_')
|
/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/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'
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
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;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/ |
__init__.py | 52 modname = "json.tests." + fn[:-3] 53 __import__(modname) 54 module = sys.modules[modname]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/ |
__init__.py | 52 modname = "json.tests." + fn[:-3] 53 __import__(modname) 54 module = sys.modules[modname]
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/ |
__init__.py | 97 modname = "%s.%s.%s" % ( __name__, package, py_file[:-3] ) 99 if modname in sys.modules: 101 reload(__import__(modname)) 103 __import__(modname)
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/ |
__init__.py | 97 modname = "%s.%s.%s" % ( __name__, package, py_file[:-3] ) 99 if modname in sys.modules: 101 reload(__import__(modname)) 103 __import__(modname)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
StackViewer.py | 65 modname = frame.f_globals["__name__"] 67 modname = "?" 74 item = "%s, line %d: %s" % (modname, lineno, sourceline) 76 item = "%s.%s(...), line %d: %s" % (modname, funcname,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
StackViewer.py | 65 modname = frame.f_globals["__name__"] 67 modname = "?" 74 item = "%s, line %d: %s" % (modname, lineno, sourceline) 76 item = "%s.%s(...), line %d: %s" % (modname, funcname,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
future.py | 11 if stmt.modname == "__future__": 53 if node.modname != "__future__":
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
future.py | 11 if stmt.modname == "__future__": 53 if node.modname != "__future__":
|
/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/chromium_org/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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 57 for modname in find_package_modules(package, mask): 58 if modname.split(".")[-1] in exclude: 59 skipped.append(modname) 61 print >> sys.stderr, "Skipped %s: excluded" % modname 64 mod = __import__(modname, globals(), locals(), ['*']) 66 skipped.append(modname) 68 print >> sys.stderr, "Skipped %s: %s" % (modname, detail)
|