HomeSort by relevance Sort by last modified time
    Searched refs:modname (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /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/lldb/examples/customization/import-python/
importcmd.py 10 def do_import(debugger,modname):
11 if (len(modname) > 4 and modname[-4:] == '.pyc'):
12 modname = modname[:-4]
13 if (len(modname) > 3 and modname[-3:] == '.py'):
14 modname = modname[:-3]
15 debugger.HandleCommand("script import " + modname)
    [all...]
  /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/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/distutils/tests/
__init__.py 28 modname = "distutils.tests." + fn[:-3]
29 __import__(modname)
30 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...]
  /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...]
  /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('.', '_')
  /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;
  /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), \
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/
__init__.py 99 modname = "%s.%s.%s" % ( __name__, package, py_file[:-3] )
101 if modname in sys.modules:
103 reload(__import__(modname))
105 __import__(modname)
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
__init__.py 99 modname = "%s.%s.%s" % ( __name__, package, py_file[:-3] )
101 if modname in sys.modules:
103 reload(__import__(modname))
105 __import__(modname)
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/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/darwin-x86/arm/arm-linux-androideabi-4.8/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/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
__init__.py 99 modname = "%s.%s.%s" % ( __name__, package, py_file[:-3] )
101 if modname in sys.modules:
103 reload(__import__(modname))
105 __import__(modname)
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.8/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/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/
__init__.py 99 modname = "%s.%s.%s" % ( __name__, package, py_file[:-3] )
101 if modname in sys.modules:
103 reload(__import__(modname))
105 __import__(modname)
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
__init__.py 99 modname = "%s.%s.%s" % ( __name__, package, py_file[:-3] )
101 if modname in sys.modules:
103 reload(__import__(modname))
105 __import__(modname)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/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.8/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/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
__init__.py 99 modname = "%s.%s.%s" % ( __name__, package, py_file[:-3] )
101 if modname in sys.modules:
103 reload(__import__(modname))
105 __import__(modname)
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.8/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)

Completed in 860 milliseconds

1 2 3 4 5