Home
last modified time | relevance | path

Searched refs:sname (Results 51 - 75 of 379) sorted by relevance

12345678910>>...16

/kernel/linux/linux-6.6/sound/soc/tegra/
H A Dtegra210_mvc.c617 #define MVC_ROUTES(sname) \
618 { "RX XBAR-" sname, NULL, "XBAR-TX" }, \
619 { "RX-CIF-" sname, NULL, "RX XBAR-" sname }, \
620 { "RX", NULL, "RX-CIF-" sname }, \
621 { "TX-CIF-" sname, NULL, "TX" }, \
622 { "TX XBAR-" sname, NULL, "TX-CIF-" sname }, \
623 { "XBAR-RX", NULL, "TX XBAR-" sname }
/third_party/elfutils/tests/
H A Demptyfile.c248 const char *sname = elf_strptr (elf, shstrndx, shdr->sh_name); in check_elf() local
249 if (sname == NULL || strcmp (sname, ".strtab") != 0) in check_elf()
251 printf ("Bad section name: %s\n", sname); in check_elf()
H A Delfstrmerge.c317 const char *sname = elf_strptr (elf, shdrstrndx, shdr->sh_name); in main() local
318 if (sname == NULL) in main()
320 if ((scnstrents[scnnum] = dwelf_strtab_add (strings, sname)) == NULL) in main()
351 const char *sname = elf_strptr (elf, strtabndx, sym->st_name); in main() local
352 if (sname == NULL) in main()
354 if ((symstrents[i] = dwelf_strtab_add (strings, sname)) == NULL) in main()
/third_party/python/Lib/idlelib/
H A Dbrowser.py56 sname = sup
58 sname = sup.name
60 sname = f'{sup.module}.{sname}'
61 supers.append(sname)
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dv3_purp.c124 int X509_PURPOSE_get_by_sname(const char *sname) in X509_PURPOSE_get_by_sname() argument
130 if (strcmp(xptmp->sname, sname) == 0) in X509_PURPOSE_get_by_sname()
155 const char *name, const char *sname, void *arg) in X509_PURPOSE_add()
179 OPENSSL_free(ptmp->sname); in X509_PURPOSE_add()
183 ptmp->sname = OPENSSL_strdup(sname); in X509_PURPOSE_add()
184 if (ptmp->name == NULL|| ptmp->sname == NULL) { in X509_PURPOSE_add()
214 OPENSSL_free(ptmp->sname); in X509_PURPOSE_add()
227 OPENSSL_free(p->sname); in xptable_free()
153 X509_PURPOSE_add(int id, int trust, int flags, int (*ck) (const X509_PURPOSE *, const X509 *, int), const char *name, const char *sname, void *arg) X509_PURPOSE_add() argument
[all...]
/third_party/openssl/crypto/x509/
H A Dv3_purp.c124 int X509_PURPOSE_get_by_sname(const char *sname) in X509_PURPOSE_get_by_sname() argument
130 if (strcmp(xptmp->sname, sname) == 0) in X509_PURPOSE_get_by_sname()
155 const char *name, const char *sname, void *arg) in X509_PURPOSE_add()
179 OPENSSL_free(ptmp->sname); in X509_PURPOSE_add()
183 ptmp->sname = OPENSSL_strdup(sname); in X509_PURPOSE_add()
184 if (ptmp->name == NULL|| ptmp->sname == NULL) { in X509_PURPOSE_add()
214 OPENSSL_free(ptmp->sname); in X509_PURPOSE_add()
227 OPENSSL_free(p->sname); in xptable_free()
153 X509_PURPOSE_add(int id, int trust, int flags, int (*ck) (const X509_PURPOSE *, const X509 *, int), const char *name, const char *sname, void *arg) X509_PURPOSE_add() argument
[all...]
/third_party/musl/porting/linux/user/ldso/
H A Dns_config.c377 static kvlist *config_get_kvs(const char *sname) in config_get_kvs() argument
381 if (!strcmp(g_configor.sections->names[i], sname)) { in config_get_kvs()
501 char * sname = NULL; in config_parse() local
509 if (j<paths->num) sname = dirkvs->key[i]; in config_parse()
512 if (sname) break; in config_parse()
514 if (!sname) { in config_parse()
516 sname = ATTR_NS_ACQUIESCENCE; in config_parse()
519 if (!(g_configor.kvs = config_get_kvs(sname))) { in config_parse()
/third_party/musl/ldso/linux/
H A Dns_config.c377 static kvlist *config_get_kvs(const char *sname) in config_get_kvs() argument
381 if (!strcmp(g_configor.sections->names[i], sname)) { in config_get_kvs()
501 char * sname = NULL; in config_parse() local
509 if (j < paths->num) sname = dirkvs->key[i]; in config_parse()
512 if (sname) break; in config_parse()
514 if (!sname) { in config_parse()
516 sname = ATTR_NS_ACQUIESCENCE; in config_parse()
519 if (!(g_configor.kvs = config_get_kvs(sname))) { in config_parse()
/kernel/linux/linux-5.10/sound/pci/hda/
H A Dhda_tegra.c262 const char *sname, *drv_name = "tegra-hda"; in hda_tegra_first_init() local
366 sname = of_get_property(np, "nvidia,model", NULL); in hda_tegra_first_init()
367 if (!sname) in hda_tegra_first_init()
368 sname = drv_name; in hda_tegra_first_init()
369 if (strlen(sname) > sizeof(card->shortname)) in hda_tegra_first_init()
371 strncpy(card->shortname, sname, sizeof(card->shortname)); in hda_tegra_first_init()
/kernel/linux/linux-6.6/sound/pci/hda/
H A Dhda_tegra.c268 const char *sname, *drv_name = "tegra-hda"; in hda_tegra_first_init() local
384 sname = of_get_property(np, "nvidia,model", NULL); in hda_tegra_first_init()
385 if (!sname) in hda_tegra_first_init()
386 sname = drv_name; in hda_tegra_first_init()
387 if (strlen(sname) > sizeof(card->shortname)) in hda_tegra_first_init()
389 strscpy(card->shortname, sname, sizeof(card->shortname)); in hda_tegra_first_init()
/third_party/node/deps/openssl/openssl/crypto/cmp/
H A Dcmp_vfy.c453 char *sname = NULL; in check_msg_find_cert() local
502 sname = X509_NAME_oneline(sender->d.directoryName, NULL, 0); in check_msg_find_cert()
507 if (sname != NULL) in check_msg_find_cert()
508 ossl_cmp_log1(INFO, ctx, "matches msg sender = %s", sname); in check_msg_find_cert()
519 if (sname != NULL) { in check_msg_find_cert()
521 ERR_add_error_txt(NULL, sname); in check_msg_find_cert()
529 OPENSSL_free(sname); in check_msg_find_cert()
/third_party/openssl/crypto/cmp/
H A Dcmp_vfy.c453 char *sname = NULL; in check_msg_find_cert() local
502 sname = X509_NAME_oneline(sender->d.directoryName, NULL, 0); in check_msg_find_cert()
507 if (sname != NULL) in check_msg_find_cert()
508 ossl_cmp_log1(INFO, ctx, "matches msg sender = %s", sname); in check_msg_find_cert()
519 if (sname != NULL) { in check_msg_find_cert()
521 ERR_add_error_txt(NULL, sname); in check_msg_find_cert()
529 OPENSSL_free(sname); in check_msg_find_cert()
/kernel/linux/linux-5.10/fs/udf/
H A Dunicode.c379 int udf_get_filename(struct super_block *sb, const uint8_t *sname, int slen, in udf_get_filename() argument
390 ret = udf_name_from_CS0(sb, dname, dlen, sname, slen, 1); in udf_get_filename()
397 int udf_put_filename(struct super_block *sb, const uint8_t *sname, int slen, in udf_put_filename() argument
400 return udf_name_to_CS0(sb, dname, dlen, sname, slen); in udf_put_filename()
/kernel/linux/linux-6.6/fs/udf/
H A Dunicode.c375 int udf_get_filename(struct super_block *sb, const uint8_t *sname, int slen, in udf_get_filename() argument
386 ret = udf_name_from_CS0(sb, dname, dlen, sname, slen, 1); in udf_get_filename()
393 int udf_put_filename(struct super_block *sb, const uint8_t *sname, int slen, in udf_put_filename() argument
396 return udf_name_to_CS0(sb, dname, dlen, sname, slen); in udf_put_filename()
/third_party/node/deps/openssl/openssl/apps/
H A Decparam.c80 const char *sname = OBJ_nid2sn(curves[n].nid); in list_builtin_curves() local
84 if (sname == NULL) in list_builtin_curves()
85 sname = ""; in list_builtin_curves()
87 BIO_printf(out, " %-10s: ", sname); in list_builtin_curves()
/third_party/openssl/apps/
H A Decparam.c80 const char *sname = OBJ_nid2sn(curves[n].nid); in list_builtin_curves() local
84 if (sname == NULL) in list_builtin_curves()
85 sname = ""; in list_builtin_curves()
87 BIO_printf(out, " %-10s: ", sname); in list_builtin_curves()
/kernel/linux/linux-5.10/include/sound/
H A Dsoc-dapm.h221 { .id = snd_soc_dapm_aif_in, .name = wname, .sname = stname, \
225 { .id = snd_soc_dapm_aif_in, .name = wname, .sname = stname, \
229 { .id = snd_soc_dapm_aif_out, .name = wname, .sname = stname, \
233 { .id = snd_soc_dapm_aif_out, .name = wname, .sname = stname, \
237 { .id = snd_soc_dapm_dac, .name = wname, .sname = stname, \
241 { .id = snd_soc_dapm_dac, .name = wname, .sname = stname, \
246 { .id = snd_soc_dapm_adc, .name = wname, .sname = stname, \
250 { .id = snd_soc_dapm_adc, .name = wname, .sname = stname, \
620 const char *sname; /* stream name */ member
/kernel/linux/linux-6.6/include/sound/
H A Dsoc-dapm.h255 .id = snd_soc_dapm_aif_in, .name = wname, .sname = stname, \
260 .id = snd_soc_dapm_aif_in, .name = wname, .sname = stname, \
265 .id = snd_soc_dapm_aif_out, .name = wname, .sname = stname, \
270 .id = snd_soc_dapm_aif_out, .name = wname, .sname = stname, \
275 .id = snd_soc_dapm_dac, .name = wname, .sname = stname, \
280 .id = snd_soc_dapm_dac, .name = wname, .sname = stname, \
286 .id = snd_soc_dapm_adc, .name = wname, .sname = stname, \
291 .id = snd_soc_dapm_adc, .name = wname, .sname = stname, \
630 const char *sname; /* stream name */ member
/third_party/alsa-lib/src/topology/
H A Ddapm.c562 snd_strlcpy(widget->sname, val, in tplg_parse_dapm_widget()
702 if (err >= 0 && widget->sname[0]) in tplg_save_dapm_widget()
704 widget->sname); in tplg_save_dapm_widget()
799 if (wt->sname) in tplg_add_widget_object()
800 snd_strlcpy(w->sname, wt->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN); in tplg_add_widget_object()
923 wt->sname = w->sname; in tplg_decode_dapm_widget()
933 tplg_log(tplg, 'D', pos, "dapm widget: name '%s' sname '%s'", in tplg_decode_dapm_widget()
934 wt->name, wt->sname); in tplg_decode_dapm_widget()
[all...]
/third_party/curl/lib/
H A Dsocks_sspi.c164 TCHAR *sname; in Curl_SOCKS5_gssapi_negotiate() local
166 sname = curlx_convert_UTF8_to_tchar(service_name); in Curl_SOCKS5_gssapi_negotiate()
167 if(!sname) in Curl_SOCKS5_gssapi_negotiate()
172 sname, in Curl_SOCKS5_gssapi_negotiate()
186 curlx_unicodefree(sname); in Curl_SOCKS5_gssapi_negotiate()
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/
H A Ddfx_map.h75 inline bool operator==(const std::string &sname) const in operator ==()
77 return this->name == sname; in operator ==()
/third_party/elfutils/libdwfl/
H A Drelocate.c236 const char *sname = elf_strptr (symtab->symelf, symtab->symshstrndx, in resolve_symbol() local
238 if (sname == NULL) in resolve_symbol()
242 if (startswith (sname, ".zdebug")) in resolve_symbol()
540 const char *sname = elf_strptr (relocated, shstrndx, shdr->sh_name); in relocate_section() local
541 if (sname == NULL) in relocate_section()
544 if (startswith (sname, ".zdebug")) in relocate_section()
/third_party/elfutils/src/
H A Dstack.c276 const char* sname; in print_frame() local
278 sname = NULL; in print_frame()
289 sname = dwarf_filesrc (files, val, NULL, NULL); in print_frame()
305 sname = dwfl_lineinfo (lineobj, NULL, &line, &col, NULL, NULL); in print_frame()
308 if (sname != NULL) in print_frame()
310 printf ("\n %s", sname); in print_frame()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/
H A DRBBIMonkeyTest.java139 String sname = fSetRefsMatcher.group(/*"ClassName"*/ 1); in addCharClass()
140 CharClass snameClass = fCharClasses.get(sname); in addCharClass()
141 String expansionForName = snameClass != null ? snameClass.fExpandedDef : sname; in addCharClass()
200 String sname = fSetRefsMatcher.group(/*"ClassName"*/ 1); in addRule()
201 CharClass nameClass = fCharClasses.get(sname); in addRule()
203 System.err.printf("char class \"%s\" unrecognized in rule \"%s\"\n", sname, definition); in addRule()
205 String expansionForName = nameClass != null ? nameClass.fExpandedDef : sname; in addRule()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DRBBIMonkeyTest.java136 String sname = fSetRefsMatcher.group(/*"ClassName"*/ 1); in addCharClass()
137 CharClass snameClass = fCharClasses.get(sname); in addCharClass()
138 String expansionForName = snameClass != null ? snameClass.fExpandedDef : sname; in addCharClass()
197 String sname = fSetRefsMatcher.group(/*"ClassName"*/ 1); in addRule()
198 CharClass nameClass = fCharClasses.get(sname); in addRule()
200 System.err.printf("char class \"%s\" unrecognized in rule \"%s\"\n", sname, definition); in addRule()
202 String expansionForName = nameClass != null ? nameClass.fExpandedDef : sname; in addRule()

Completed in 24 milliseconds

12345678910>>...16