/third_party/openssl/crypto/ |
H A D | param_build_set.c | 97 const char *names[], in ossl_param_build_set_multi_key_bn() 105 for (i = 0; i < sz && names[i] != NULL; ++i) { in ossl_param_build_set_multi_key_bn() 106 if (!OSSL_PARAM_BLD_push_BN(bld, names[i], in ossl_param_build_set_multi_key_bn() 113 for (i = 0; i < sz && names[i] != NULL; ++i) { in ossl_param_build_set_multi_key_bn() 114 p = OSSL_PARAM_locate(params, names[i]); in ossl_param_build_set_multi_key_bn() 96 ossl_param_build_set_multi_key_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *params, const char *names[], STACK_OF(BIGNUM_const) *stk) ossl_param_build_set_multi_key_bn() argument
|
H A D | core_namemap.c | 117 const char **names; member 124 data->names[data->found++] = namenum->name; in do_name() 130 * Call the callback for all names in the namemap with the given number. 131 * A return value 1 means that the callback was called for all names. A 132 * return value of 0 means that the callback was not called for any names. 146 * We collect all the names first under a read lock. Subsequently we call in ossl_namemap_doall_names() 158 cbdata.names = OPENSSL_malloc(sizeof(*cbdata.names) * num_names); in ossl_namemap_doall_names() 159 if (cbdata.names == NULL) { in ossl_namemap_doall_names() 168 fn(cbdata.names[ in ossl_namemap_doall_names() 300 ossl_namemap_add_names(OSSL_NAMEMAP *namemap, int number, const char *names, const char separator) ossl_namemap_add_names() argument [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | exceptions.py | 79 If a name in the list of names is :class:`Undefined`, a message 85 def __init__(self, names=(), message=None): 91 for name in names: 100 TemplateNotFound.__init__(self, names and names[-1] or None, message) 101 self.templates = list(names)
|
/kernel/linux/linux-5.10/drivers/pci/hotplug/ |
H A D | rpaphp_core.c | 161 const __be32 *indexes, *names, *types, *domains; in get_children_props() local 164 names = of_get_property(dn, "ibm,drc-names", NULL); in get_children_props() 168 if (!indexes || !names || !types || !domains) { in get_children_props() 175 /* &drc_names[1] contains NULL terminated slot names */ in get_children_props() 176 *drc_names = names; in get_children_props() 197 const __be32 *indexes, *names; in rpaphp_check_drc_props_v1() local 201 rc = get_children_props(dn->parent, &indexes, &names, &types, &domains); in rpaphp_check_drc_props_v1() 206 name_tmp = (char *) &names[1]; in rpaphp_check_drc_props_v1() 305 * @names 314 is_php_dn(struct device_node *dn, const __be32 **indexes, const __be32 **names, const __be32 **types, const __be32 **power_domains) is_php_dn() argument 378 const __be32 *indexes, *names, *types, *power_domains; rpaphp_drc_add_slot() local [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | pm_opp.h | 69 * @clk_names: Clk names, NULL terminated array. 75 * @regulator_names: Array of pointers to the names of the regulator, NULL terminated. 76 * @genpd_names: Null terminated array of pointers containing names of genpd to 524 const char * const names[]) in dev_pm_opp_set_regulators() 527 .regulator_names = names, in dev_pm_opp_set_regulators() 539 const char * const names[]) in devm_pm_opp_set_regulators() 542 .regulator_names = names, in devm_pm_opp_set_regulators() 581 const char *names[] = { name, NULL }; in dev_pm_opp_set_clkname() local 583 .clk_names = names, in dev_pm_opp_set_clkname() 596 const char *names[] in devm_pm_opp_set_clkname() local 523 dev_pm_opp_set_regulators(struct device *dev, const char * const names[]) dev_pm_opp_set_regulators() argument 538 devm_pm_opp_set_regulators(struct device *dev, const char * const names[]) devm_pm_opp_set_regulators() argument 621 dev_pm_opp_attach_genpd(struct device *dev, const char * const *names, struct device ***virt_devs) dev_pm_opp_attach_genpd() argument 638 devm_pm_opp_attach_genpd(struct device *dev, const char * const *names, struct device ***virt_devs) devm_pm_opp_attach_genpd() argument [all...] |
/kernel/linux/linux-6.6/drivers/pci/hotplug/ |
H A D | rpaphp_core.c | 163 const __be32 *indexes, *names, *types, *domains; in get_children_props() local 166 names = of_get_property(dn, "ibm,drc-names", NULL); in get_children_props() 170 if (!indexes || !names || !types || !domains) { in get_children_props() 177 /* &drc_names[1] contains NULL terminated slot names */ in get_children_props() 178 *drc_names = names; in get_children_props() 199 const __be32 *indexes, *names; in rpaphp_check_drc_props_v1() local 203 rc = get_children_props(dn->parent, &indexes, &names, &types, &domains); in rpaphp_check_drc_props_v1() 208 name_tmp = (char *) &names[1]; in rpaphp_check_drc_props_v1() 307 * @names 316 is_php_dn(struct device_node *dn, const __be32 **indexes, const __be32 **names, const __be32 **types, const __be32 **power_domains) is_php_dn() argument 380 const __be32 *indexes, *names, *types, *power_domains; rpaphp_drc_add_slot() local [all...] |
/third_party/openssl/test/ |
H A D | ssl_test.c | 26 /* Currently the section names are of the form test-<number>, e.g. test-15. */ 234 static void print_ca_names(STACK_OF(X509_NAME) *names) in STACK_OF() 238 if (names == NULL || sk_X509_NAME_num(names) == 0) { in STACK_OF() 242 for (i = 0; i < sk_X509_NAME_num(names); i++) { in STACK_OF() 243 X509_NAME_print_ex(bio_err, sk_X509_NAME_value(names, i), 4, in STACK_OF() 251 STACK_OF(X509_NAME) *names) in check_ca_names() 257 if (names == NULL || sk_X509_NAME_num(names) == 0) { in check_ca_names() 262 if (sk_X509_NAME_num(names) ! in check_ca_names() 249 check_ca_names(const char *name, STACK_OF(X509_NAME) *expected_names, STACK_OF(X509_NAME) *names) check_ca_names() argument [all...] |
/kernel/linux/linux-5.10/arch/arm/oprofile/ |
H A D | common.c | 49 struct op_perf_name names; in op_name_from_perf_id() local 53 names = op_perf_name_map[i]; in op_name_from_perf_id() 54 if (!strcmp(names.perf_name, perf_name)) in op_name_from_perf_id() 55 return names.op_name; in op_name_from_perf_id()
|
/third_party/ffmpeg/libavutil/ |
H A D | vulkan_loader.h | 92 const char *names[3]; in ff_vk_load_functions() member 109 for (int j = 0; j < FF_ARRAY_ELEMS(load->names); j++) { in ff_vk_load_functions() 110 const char *name = load->names[j]; in ff_vk_load_functions() 125 "as supported, but got NULL function pointer!\n", load->names[0]); in ff_vk_load_functions()
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | SetProperties.cpp | 82 CRecordVector<const wchar_t *> names;
in SetProperties() local 84 names.Add((const wchar_t *)realNames[i]);
in SetProperties() 86 return setProperties->SetProperties(&names.Front(), values.values, names.Size());
in SetProperties()
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_exitfunc.py | 59 names = self.sys_import.children[1] 60 if names.type == syms.dotted_as_names: 61 names.append_child(Comma()) 62 names.append_child(Name("atexit", " "))
|
/third_party/toybox/toys/posix/ |
H A D | logger.c | 31 // find str in names[], accepting unambiguous short matches 33 int arrayfind(char *str, char *names[], int len) in arrayfind() argument 42 if (!names[try][i]) return try; in arrayfind() 45 if (!names[try][i]) break; in arrayfind() 46 if (toupper(str[i]) != toupper(names[try][i])) break; in arrayfind()
|
/kernel/linux/linux-5.10/kernel/ |
H A D | seccomp.c | 1871 /* Human readable action names for friendly sysctl interaction */ 1908 static bool seccomp_names_from_actions_logged(char *names, size_t size, in seccomp_names_from_actions_logged() argument 1922 ret = strscpy(names, sep, size); in seccomp_names_from_actions_logged() 1926 names += ret; in seccomp_names_from_actions_logged() 1931 ret = strscpy(names, cur->name, size); in seccomp_names_from_actions_logged() 1935 names += ret; in seccomp_names_from_actions_logged() 1957 static bool seccomp_actions_logged_from_names(u32 *actions_logged, char *names) in seccomp_actions_logged_from_names() argument 1962 while ((name = strsep(&names, " ")) && *name) { in seccomp_actions_logged_from_names() 1977 char names[sizeof(seccomp_actions_avail)]; in read_actions_logged() local 1980 memset(names, in read_actions_logged() 1995 char names[sizeof(seccomp_actions_avail)]; write_actions_logged() local 2024 char names[sizeof(seccomp_actions_avail)]; audit_actions_logged() local [all...] |
/third_party/python/Lib/test/test_importlib/ |
H A D | test_metadata_api.py | 53 names = 'pkg.dot', 'pkg_dot', 'pkg-dot', 'pkg..dot', 'Pkg.Dot' 54 for name in names: 80 assert 'main' in entries.names 118 assert 'ns:sub' not in entries.names 306 names = 'pkg.dot', 'pkg_dot', 'pkg-dot', 'pkg..dot', 'Pkg.Dot' 307 for name in names: 312 names = 'pkg.lot', 'pkg_lot', 'pkg-lot', 'pkg..lot', 'Pkg.Lot' 313 for name in names:
|
H A D | test_resource.py | 40 def names(traversable): function 49 self.assertEqual(names(resources.files(package)), {'A', 'B', 'C'}) 105 names(resources.files(submodule)), {'__init__.py', 'binary.file'} 110 names(resources.files('ziptestdata.subdirectory')), 124 names(resources.files('ziptestdata.one')), 128 names(resources.files('ziptestdata.two')), 235 contents = names(resources.files(import_module('namespacedata01'))) 243 contents = names(resources.files('namespacedata01'))
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | core_namemap.c | 117 const char **names; member 124 data->names[data->found++] = namenum->name; in do_name() 130 * Call the callback for all names in the namemap with the given number. 131 * A return value 1 means that the callback was called for all names. A 132 * return value of 0 means that the callback was not called for any names. 149 * We collect all the names first under a read lock. Subsequently we call in ossl_namemap_doall_names() 161 cbdata.names = OPENSSL_malloc(sizeof(*cbdata.names) * num_names); in ossl_namemap_doall_names() 162 if (cbdata.names == NULL) { in ossl_namemap_doall_names() 171 fn(cbdata.names[ in ossl_namemap_doall_names() 303 ossl_namemap_add_names(OSSL_NAMEMAP *namemap, int number, const char *names, const char separator) ossl_namemap_add_names() argument [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | tznames_impl.cpp | 49 static const UChar NO_NAME[] = { 0 }; // for empty no-fallback time zone names 616 // A meta zone names instance never has an exemplar location string. 619 ZNames(const UChar* names[], const UChar* locationName) in ZNames() argument 621 uprv_memcpy(fNames, names, sizeof(fNames)); in ZNames() 640 static void* createMetaZoneAndPutInCache(UHashtable* cache, const UChar* names[], in createMetaZoneAndPutInCache() argument 643 U_ASSERT(names != NULL); in createMetaZoneAndPutInCache() 650 if (uprv_memcmp(names, EMPTY_NAMES, sizeof(EMPTY_NAMES)) == 0) { in createMetaZoneAndPutInCache() 653 value = (void*) (new ZNames(names, NULL)); in createMetaZoneAndPutInCache() 663 static void* createTimeZoneAndPutInCache(UHashtable* cache, const UChar* names[], in createTimeZoneAndPutInCache() argument 666 U_ASSERT(names ! in createTimeZoneAndPutInCache() 742 const UChar *names[UTZNM_INDEX_COUNT]; global() member 1749 TZDBNames(const UChar** names, char** regions, int32_t numRegions) TZDBNames() argument 1776 const UChar **names = NULL; createInstance() local 2083 const TZDBNames *names = TZDBTimeZoneNames::getMetaZoneNames(*mzID, status); prepareFind() local [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | tznames_impl.cpp | 49 static const char16_t NO_NAME[] = { 0 }; // for empty no-fallback time zone names 616 // A meta zone names instance never has an exemplar location string. 619 ZNames(const char16_t* names[], const char16_t* locationName) in ZNames() argument 621 uprv_memcpy(fNames, names, sizeof(fNames)); in ZNames() 640 static void* createMetaZoneAndPutInCache(UHashtable* cache, const char16_t* names[], in createMetaZoneAndPutInCache() argument 643 U_ASSERT(names != nullptr); in createMetaZoneAndPutInCache() 650 if (uprv_memcmp(names, EMPTY_NAMES, sizeof(EMPTY_NAMES)) == 0) { in createMetaZoneAndPutInCache() 653 value = (void*) (new ZNames(names, nullptr)); in createMetaZoneAndPutInCache() 663 static void* createTimeZoneAndPutInCache(UHashtable* cache, const char16_t* names[], in createTimeZoneAndPutInCache() argument 666 U_ASSERT(names ! in createTimeZoneAndPutInCache() 742 const char16_t *names[UTZNM_INDEX_COUNT]; global() member 1734 TZDBNames(const char16_t** names, char** regions, int32_t numRegions) TZDBNames() argument 1761 const char16_t **names = nullptr; createInstance() local 2068 const TZDBNames *names = TZDBTimeZoneNames::getMetaZoneNames(*mzID, status); prepareFind() local [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | tznames_impl.cpp | 49 static const UChar NO_NAME[] = { 0 }; // for empty no-fallback time zone names 608 // A meta zone names instance never has an exemplar location string. 611 ZNames(const UChar* names[], const UChar* locationName) in ZNames() argument 613 uprv_memcpy(fNames, names, sizeof(fNames)); in ZNames() 632 static void* createMetaZoneAndPutInCache(UHashtable* cache, const UChar* names[], in createMetaZoneAndPutInCache() argument 635 U_ASSERT(names != NULL); in createMetaZoneAndPutInCache() 642 if (uprv_memcmp(names, EMPTY_NAMES, sizeof(EMPTY_NAMES)) == 0) { in createMetaZoneAndPutInCache() 645 value = (void*) (new ZNames(names, NULL)); in createMetaZoneAndPutInCache() 655 static void* createTimeZoneAndPutInCache(UHashtable* cache, const UChar* names[], in createTimeZoneAndPutInCache() argument 658 U_ASSERT(names ! in createTimeZoneAndPutInCache() 734 const UChar *names[UTZNM_INDEX_COUNT]; global() member 1733 TZDBNames(const UChar** names, char** regions, int32_t numRegions) TZDBNames() argument 1760 const UChar **names = NULL; createInstance() local 2067 const TZDBNames *names = TZDBTimeZoneNames::getMetaZoneNames(*mzID, status); prepareFind() local [all...] |
/third_party/python/Tools/scripts/ |
H A D | findlinksto.py | 27 def visit(prog, dirname, names): 29 names[:] = [] 33 for name in names:
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/fst/ |
H A D | fst_ctrl_aux.c | 44 const char * fst_get_str_name(unsigned index, const char *names[], in fst_get_str_name() argument 47 if (index >= names_size || !names[index]) in fst_get_str_name() 49 return names[index]; in fst_get_str_name()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/fst/ |
H A D | fst_ctrl_aux.c | 44 const char * fst_get_str_name(unsigned index, const char *names[], in fst_get_str_name() argument 47 if (index >= names_size || !names[index]) in fst_get_str_name() 49 return names[index]; in fst_get_str_name()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | driver_ndis.c | 2120 char *names, *pos, *pos2; in wpa_driver_ndis_get_names() 2153 names = (char *) _names; in wpa_driver_ndis_get_names() 2154 if (names[0] && names[1] == '\0' && names[2] && names[3] == '\0') { in wpa_driver_ndis_get_names() 2155 wpa_printf(MSG_DEBUG, "NDIS: Looks like adapter names are in " in wpa_driver_ndis_get_names() 2158 pos2 = pos = names; in wpa_driver_ndis_get_names() 2159 while (pos2 < names + len) { in wpa_driver_ndis_get_names() 2168 os_memcpy(pos + 2, names, po in wpa_driver_ndis_get_names() 3047 char *names, *pos, *pos2; wpa_driver_ndis_get_interfaces() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | driver_ndis.c | 2132 char *names, *pos, *pos2; in wpa_driver_ndis_get_names() 2165 names = (char *) _names; in wpa_driver_ndis_get_names() 2166 if (names[0] && names[1] == '\0' && names[2] && names[3] == '\0') { in wpa_driver_ndis_get_names() 2167 wpa_printf(MSG_DEBUG, "NDIS: Looks like adapter names are in " in wpa_driver_ndis_get_names() 2170 pos2 = pos = names; in wpa_driver_ndis_get_names() 2171 while (pos2 < names + len) { in wpa_driver_ndis_get_names() 2180 os_memcpy(pos + 2, names, po in wpa_driver_ndis_get_names() 3065 char *names, *pos, *pos2; wpa_driver_ndis_get_interfaces() local [all...] |
/kernel/linux/linux-5.10/drivers/usb/common/ |
H A D | common.c | 45 static const char *const names[] = { in usb_otg_state_string() local 61 if (state < 0 || state >= ARRAY_SIZE(names)) in usb_otg_state_string() 64 return names[state]; in usb_otg_state_string() 156 static const char *const names[] = { in usb_state_string() local 168 if (state < 0 || state >= ARRAY_SIZE(names)) in usb_state_string() 171 return names[state]; in usb_state_string()
|