Home
last modified time | relevance | path

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

/third_party/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 …]
/third_party/python/Lib/test/test_importlib/import_/
Dtest_packages.py92 subname = name + '.b'
94 sys.modules[subname] = 'total bunk'
100 submodule = self.__import__(subname)
102 import_helper.unload(subname)
/third_party/python/Lib/
Dpkgutil.py173 subname = inspect.getmodulename(fn)
174 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:
/third_party/python/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.py361 subname = 'ham'
363 fullname, _ = test_util.submodule(name, subname, pkg_dir)
/third_party/boost/tools/build/src/tools/
Dpackage.py132 …for subname in ["bin", "lib", "headers", "lib-shared", "lib-static", "lib-shared-universe", "lib-s…
133 pt.mark_targets_as_explicit([name + "-" + subname])
/third_party/libwebsockets/lib/roles/http/server/
Dlws-spa.c79 uint8_t subname:1; member
341 s->subname = 0; in lws_urldecode_s_process()
362 s->subname = 1; in lws_urldecode_s_process()
373 if (s->subname) { in lws_urldecode_s_process()
376 s->subname = 0; in lws_urldecode_s_process()
/third_party/alsa-lib/src/pcm/
Dpcm_null.c76 snd_strlcpy((char *)info->subname, pcm->name, sizeof(info->subname)); in snd_pcm_null_info()
Dpcm_ioplug.c99 snd_strlcpy((char *)info->subname, pcm->name, sizeof(info->subname)); in snd_pcm_ioplug_info()
Dpcm_direct.c777 snd_strlcpy((char *)info->subname, pcm->name, sizeof(info->subname));
Dpcm.c7106 return (const char *)obj->subname; in snd_pcm_info_get_subdevice_name()
/third_party/alsa-lib/include/sound/uapi/
Dasound.h348 unsigned char subname[32]; /* subdevice name */ member
725 unsigned char subname[32]; /* name of active or selected subdevice */ member
/third_party/e2fsprogs/e2fsck/
Dproblem.c2585 profile_get_boolean(profile_t profile, const char *name, const char *subname, in profile_get_boolean() argument
2592 profile_get_integer(profile_t profile, const char *name, const char *subname, in profile_get_integer() argument
2616 profile_get_string(profile_t profile, const char *name, const char *subname, in profile_get_string() argument
/third_party/alsa-lib/src/rawmidi/
Drawmidi_virt.c94 strcpy((char *)info->subname, "Virtual RawMIDI"); in snd_rawmidi_virtual_info()
Drawmidi.c616 return (const char *)info->subname; in snd_rawmidi_info_get_subdevice_name()
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fClipControlTests.cpp999 ClipControlDepthModeTest(Context& context, const char* name, const char* subname) in ClipControlDepthModeTest() argument
1000 : ClipControlRenderBaseTest(context, name, subname) in ClipControlDepthModeTest()