Home
last modified time | relevance | path

Searched refs:subname (Results 1 – 25 of 33) sorted by relevance

12

/external/e2fsprogs/lib/support/
Dprofile.h68 (profile_t profile, const char *name, const char *subname,
72 (profile_t profile, const char *name, const char *subname,
77 (profile_t profile, const char *name, const char *subname,
82 (profile_t profile, const char *name, const char *subname,
87 (profile_t profile, const char *name, const char *subname,
Dprofile.c214 const char *subname, const char *subsubname,
1470 const char *subname, const char *subsubname, in profile_get_value() argument
1479 names[1] = subname; in profile_get_value()
1502 profile_get_string(profile_t profile, const char *name, const char *subname, in profile_get_string() argument
1510 retval = profile_get_value(profile, name, subname, in profile_get_string()
1530 profile_get_integer(profile_t profile, const char *name, const char *subname, in profile_get_integer() argument
1542 retval = profile_get_value(profile, name, subname, subsubname, &value); in profile_get_integer()
1571 profile_get_uint(profile_t profile, const char *name, const char *subname, in profile_get_uint() argument
1584 retval = profile_get_value(profile, name, subname, subsubname, &value); in profile_get_uint()
1612 profile_get_double(profile_t profile, const char *name, const char *subname, in profile_get_double() argument
[all …]
/external/selinux/libsemanage/src/
Dboolean_record.c95 char *subname = NULL; in hidden_def() local
123 subname = selinux_boolean_sub(name); in hidden_def()
124 if (!subname) { in hidden_def()
135 rc = sepol_bool_set_name(handle->sepolh, boolean, subname); in hidden_def()
137 free(subname); in hidden_def()
/external/python/cpython3/Lib/test/test_importlib/import_/
Dtest_packages.py91 subname = name + '.b'
93 sys.modules[subname] = 'total bunk'
99 submodule = self.__import__(subname)
101 support.unload(subname)
/external/python/cpython2/Modules/
Dzipimport.c213 char *subname = strrchr(fullname, '.'); in get_subname() local
214 if (subname == NULL) in get_subname()
215 subname = fullname; in get_subname()
217 subname++; in get_subname()
218 return subname; in get_subname()
260 char *subname, path[MAXPATHLEN + 1]; in get_module_info() local
264 subname = get_subname(fullname); in get_module_info()
266 len = make_filename(PyString_AsString(self->prefix), subname, path); in get_module_info()
340 char *subname = get_subname(fullname); in zipimporter_load_module() local
347 subname); in zipimporter_load_module()
[all …]
/external/python/cpython3/Lib/
Dpkgutil.py174 subname = inspect.getmodulename(fn)
175 if subname=='__init__':
215 subname = fullname.split(".")[-1]
216 if subname != fullname and self.path is None:
223 file, filename, etc = imp.find_module(subname, path)
257 subname = inspect.getmodulename(fn)
258 if subname=='__init__':
Dmodulefinder.py267 subname = "%s.%s" % (m.__name__, sub)
268 submod = self.import_module(sub, subname, m)
270 raise ImportError("No module named " + subname)
570 subname = name[i+1:]
578 elif subname in pkg.globalnames:
/external/emma/ant/ant14/com/vladium/emma/
DemmaTask.java104 protected String getNestedTaskName (final String subname) in getNestedTaskName() argument
106 return getTaskName ().concat (".").concat (subname); in getNestedTaskName()
/external/python/cpython2/Lib/
Dmhlib.py166 for subname in subnames:
167 fullsubname = os.path.join(fullname, subname)
169 name_subname = os.path.join(name, subname)
193 for subname in subnames:
194 if subname[0] == ',' or isnumeric(subname): continue
195 fullsubname = os.path.join(fullname, subname)
197 name_subname = os.path.join(name, subname)
228 for subname in os.listdir(fullname):
229 fullsubname = os.path.join(fullname, subname)
Dpkgutil.py175 subname = fullname.split(".")[-1]
176 if subname != fullname and self.path is None:
183 file, filename, etc = imp.find_module(subname, path)
217 subname = inspect.getmodulename(fn)
218 if subname=='__init__':
Dmodulefinder.py239 subname = "%s.%s" % (m.__name__, sub)
240 submod = self.import_module(sub, subname, m)
242 raise ImportError, "No module named " + subname
560 subname = name[i+1:]
568 elif subname in pkg.globalnames:
Dimputil.py346 subname = "%s.%s" % (package.__name__, sub)
347 submod = self._import_one(package, sub, subname)
349 raise ImportError, "cannot import name " + subname
Dihooks.py505 subname = "%s.%s" % (m.__name__, sub)
506 submod = self.import_it(sub, subname, m)
508 raise ImportError, "No module named '%s'" % subname
/external/python/cpython2/Python/
Dimport.c1336 find_module(char *fullname, char *subname, PyObject *path, char *buf, in find_module() argument
1357 if (strlen(subname) > MAXPATHLEN) { in find_module()
1367 strcpy(name, subname); in find_module()
1576 if (strlen(subname) > 8) { in find_module()
1589 len -= strlen(subname) - namelen; in find_module()
2641 char *subname = PyString_AS_STRING(item); in ensure_fromlist() local
2644 if (buflen + strlen(subname) >= MAXPATHLEN) { in ensure_fromlist()
2652 strcpy(p, subname); in ensure_fromlist()
2653 submod = import_submodule(mod, subname, buf); in ensure_fromlist()
2667 add_submodule(PyObject *mod, PyObject *submod, char *fullname, char *subname, in add_submodule() argument
[all …]
/external/python/cpython3/Lib/test/test_importlib/
Dtest_util.py476 subname = 'ham'
478 fullname, _ = util.submodule(name, subname, pkg_dir)
489 subname = 'ham'
492 fullname, _ = util.submodule(name, subname, pkg_dir)
503 subname = 'ham'
505 fullname, _ = util.submodule(name, subname, pkg_dir)
506 relname = '.' + subname
517 subname = 'ham'
519 fullname, _ = util.submodule(name, subname, pkg_dir)
520 relname = '.' + subname
Dtest_api.py357 subname = 'ham'
359 fullname, _ = test_util.submodule(name, subname, pkg_dir)
/external/python/cpython2/Lib/test/
Dtest_importhooks.py110 subname = fullname.split(".")[-1]
111 if subname != fullname and self.path is None:
118 file, filename, stuff = imp.find_module(subname, path)
/external/cldr/tools/java/org/unicode/cldr/tool/
DVerifyAttributeValues.java166 final String subname = subfile.getName(); in findAttributeValues() local
168 && !"en.xml".equals(subname) in findAttributeValues()
169 && !"root.xml".equals(subname)) { in findAttributeValues()
/external/libwebsockets/lib/roles/http/server/
Dlws-spa.c79 uint8_t subname:1; member
338 s->subname = 0; in lws_urldecode_s_process()
359 s->subname = 1; in lws_urldecode_s_process()
370 if (s->subname) { in lws_urldecode_s_process()
373 s->subname = 0; in lws_urldecode_s_process()
/external/python/cpython2/Doc/library/
Dimputil.rst189 subname = "%s.%s" % (m.__name__, sub)
190 submod = import_module(sub, subname, m)
192 raise ImportError("No module named " + subname)
/external/libchrome/mojo/public/tools/chrome_ipc/
Dgenerate_mojom.py192 subname = '::'.join(name_components[i:])
193 extra_names = name_components[:i] + [subname]
201 if _git_grep(r'enum[A-Z_ ]* %s {' % subname, includes):
/external/toolchain-utils/toolchain_utils_githooks/
Dcheck-presubmit.py421 for subname, (ok, output, autofix) in check_results:
423 message = ['*** %s.%s %s' % (check_name, subname, status)]
Dcheck-presubmit421 for subname, (ok, output, autofix) in check_results:
423 message = ['*** %s.%s %s' % (check_name, subname, status)]
/external/autotest/frontend/afe/
Drpc_interface.py2386 testpath, subname = os.path.split(control_file_path)
2388 subname = subname.split('.')[1:]
2389 if subname:
2390 testname = '%s:%s' % (testname, ':'.join(subname))
/external/tinyalsa_new/src/
Dpcm_plugin.c158 strncpy((char *)info->subname, name, sizeof(info->subname)); in pcm_plug_info()

12