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

1 2 3

  /external/toybox/toys/other/
rmmod.c 28 char * mod_name; local
32 mod_name = basename(*toys.optargs);
35 len = strlen(mod_name);
36 if (len > 3 && !strcmp(&mod_name[len-3], ".ko" )) mod_name[len-3] = 0;
41 if (delete_module(mod_name, flags))
42 perror_exit("failed to unload %s", mod_name);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
runpy.py 26 def __init__(self, mod_name):
27 self.mod_name = mod_name
28 self.module = imp.new_module(mod_name)
32 mod_name = self.mod_name
34 self._saved_module.append(sys.modules[mod_name])
37 sys.modules[mod_name] = self.module
42 sys.modules[self.mod_name] = self._saved_module[0]
44 del sys.modules[self.mod_name]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
runpy.py 26 def __init__(self, mod_name):
27 self.mod_name = mod_name
28 self.module = imp.new_module(mod_name)
32 mod_name = self.mod_name
34 self._saved_module.append(sys.modules[mod_name])
37 sys.modules[mod_name] = self.module
42 sys.modules[self.mod_name] = self._saved_module[0]
44 del sys.modules[self.mod_name]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
runpy.py 26 def __init__(self, mod_name):
27 self.mod_name = mod_name
28 self.module = imp.new_module(mod_name)
32 mod_name = self.mod_name
34 self._saved_module.append(sys.modules[mod_name])
37 sys.modules[mod_name] = self.module
42 sys.modules[self.mod_name] = self._saved_module[0]
44 del sys.modules[self.mod_name]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
runpy.py 26 def __init__(self, mod_name):
27 self.mod_name = mod_name
28 self.module = imp.new_module(mod_name)
32 mod_name = self.mod_name
34 self._saved_module.append(sys.modules[mod_name])
37 sys.modules[mod_name] = self.module
42 sys.modules[self.mod_name] = self._saved_module[0]
44 del sys.modules[self.mod_name]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_runpy.py 39 "nested = runpy._run_module_code('x=1\\n', mod_name='<run>')\n"
86 def expect_import_error(self, mod_name):
88 run_module(mod_name)
92 self.fail("Expected import error for " + mod_name)
133 mod_name = (pkg_name+".")*depth + mod_base
134 return pkg_dir, mod_fname, mod_name
136 def _del_pkg(self, top, depth, mod_name):
162 pkg_dir, mod_fname, mod_name = (
164 forget(mod_name)
166 if verbose: print "Running from source:", mod_name
    [all...]
test_zipimport_support.py 111 mod_name = mod.__name__.split(".")[-1]
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
113 sample_sources[mod_name] = src
121 for mod_name, src in sample_sources.items():
122 z.writestr(mod_name + ".py", src)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_runpy.py 39 "nested = runpy._run_module_code('x=1\\n', mod_name='<run>')\n"
86 def expect_import_error(self, mod_name):
88 run_module(mod_name)
92 self.fail("Expected import error for " + mod_name)
133 mod_name = (pkg_name+".")*depth + mod_base
134 return pkg_dir, mod_fname, mod_name
136 def _del_pkg(self, top, depth, mod_name):
162 pkg_dir, mod_fname, mod_name = (
164 forget(mod_name)
166 if verbose: print "Running from source:", mod_name
    [all...]
test_zipimport_support.py 111 mod_name = mod.__name__.split(".")[-1]
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
113 sample_sources[mod_name] = src
121 for mod_name, src in sample_sources.items():
122 z.writestr(mod_name + ".py", src)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_runpy.py 39 "nested = runpy._run_module_code('x=1\\n', mod_name='<run>')\n"
86 def expect_import_error(self, mod_name):
88 run_module(mod_name)
92 self.fail("Expected import error for " + mod_name)
133 mod_name = (pkg_name+".")*depth + mod_base
134 return pkg_dir, mod_fname, mod_name
136 def _del_pkg(self, top, depth, mod_name):
162 pkg_dir, mod_fname, mod_name = (
164 forget(mod_name)
166 if verbose: print "Running from source:", mod_name
    [all...]
test_zipimport_support.py 111 mod_name = mod.__name__.split(".")[-1]
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
113 sample_sources[mod_name] = src
121 for mod_name, src in sample_sources.items():
122 z.writestr(mod_name + ".py", src)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_runpy.py 39 "nested = runpy._run_module_code('x=1\\n', mod_name='<run>')\n"
86 def expect_import_error(self, mod_name):
88 run_module(mod_name)
92 self.fail("Expected import error for " + mod_name)
133 mod_name = (pkg_name+".")*depth + mod_base
134 return pkg_dir, mod_fname, mod_name
136 def _del_pkg(self, top, depth, mod_name):
162 pkg_dir, mod_fname, mod_name = (
164 forget(mod_name)
166 if verbose: print "Running from source:", mod_name
    [all...]
test_zipimport_support.py 111 mod_name = mod.__name__.split(".")[-1]
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
113 sample_sources[mod_name] = src
121 for mod_name, src in sample_sources.items():
122 z.writestr(mod_name + ".py", src)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_renames.py 63 mod_name = results.get("module_name")
68 if mod_name and attr_name:
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
fix_imports.py 125 mod_name = import_mod.value
126 new_name = unicode(self.mapping[mod_name])
131 self.replace[mod_name] = new_name
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_renames.py 63 mod_name = results.get("module_name")
68 if mod_name and attr_name:
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
fix_imports.py 125 mod_name = import_mod.value
126 new_name = unicode(self.mapping[mod_name])
131 self.replace[mod_name] = new_name
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_renames.py 63 mod_name = results.get("module_name")
68 if mod_name and attr_name:
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
fix_imports.py 125 mod_name = import_mod.value
126 new_name = unicode(self.mapping[mod_name])
131 self.replace[mod_name] = new_name
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_renames.py 63 mod_name = results.get("module_name")
68 if mod_name and attr_name:
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
fix_imports.py 125 mod_name = import_mod.value
126 new_name = unicode(self.mapping[mod_name])
131 self.replace[mod_name] = new_name
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/
startup.py 39 mod_name = script[0:pos]
41 cls = find_class(mod_name, cls_name)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.cc 36 void AddressInfo::FillModuleInfo(const char *mod_name, uptr mod_offset) {
37 module = internal_strdup(mod_name);
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
PathBrowser.py 80 mod_name = name[:i]
81 if mod_name not in modules:
82 modules[mod_name] = None
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
PathBrowser.py 80 mod_name = name[:i]
81 if mod_name not in modules:
82 modules[mod_name] = None

Completed in 492 milliseconds

1 2 3