Home
last modified time | relevance | path

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

/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/tinyalsa/tinyalsa/
H A D0001-fixed-compilation-error-caused-by-strncpy.patch57 - strncpy((char *)info->subname, name, sizeof(info->subname));
62 + strncpy((char *)info->subname, name, sizeof(info->subname) - 1);
63 + ((char *)info->subname)[sizeof(info->subname) - 1] = '\0';
/openbmc/linux/drivers/pinctrl/mvebu/
H A Dpinctrl-mvebu.h87 const char *subname; member
161 .subname = _subname, \
H A Dpinctrl-mvebu.c220 if (curr->subname) in mvebu_pinconf_group_dbg_show()
221 seq_printf(s, "(%s)", curr->subname); in mvebu_pinconf_group_dbg_show()
246 if (grp->settings[n].subname) in mvebu_pinconf_group_dbg_show()
247 seq_printf(s, "(%s)", grp->settings[n].subname); in mvebu_pinconf_group_dbg_show()
/openbmc/openbmc/poky/meta/recipes-devtools/nasm/nasm/
H A D0002-Add-debug-prefix-map-option.patch307 - my ($subname, $arguments, $files) = ($1, $2, $3);
309 + my ($subname, $arguments, $files, $validate) = ($1, $2, $3, $4);
311 debugprint("$subname | $arguments | $files");
319 + print "Test $testname/$subname validation failed\n";
325 mkpath("$outputdir/$testname/$subname");
/openbmc/qemu/scripts/
H A Dblock-coroutine-wrapper.py81 subsystem, subname = self.name.split('_', 1)
85 subsystem, co_infix, subname = self.name.split('_', 2)
/openbmc/linux/sound/pci/hda/
H A Dhda_cs_dsp_ctl.c175 if (cs_ctl->subname) { in hda_cs_dsp_control_add()
184 " %.*s", cs_ctl->subname_len - skip, cs_ctl->subname + skip); in hda_cs_dsp_control_add()
/openbmc/linux/drivers/firmware/cirrus/
H A Dcs_dsp.c473 ctl->subname_len, ctl->subname, ctl->len, in cs_dsp_debugfs_read_controls_show()
966 kfree(ctl->subname); in cs_dsp_free_ctl_blk()
973 const char *subname, unsigned int subname_len, in cs_dsp_create_control() argument
983 if ((!subname && !ctl->subname) || in cs_dsp_create_control()
984 (subname && (ctl->subname_len == subname_len) && in cs_dsp_create_control()
985 !strncmp(ctl->subname, subname, ctl->subname_len))) { in cs_dsp_create_control()
999 if (subname && dsp->fw_ver >= 2) { in cs_dsp_create_control()
1001 ctl->subname in cs_dsp_create_control()
[all...]
/openbmc/openbmc/poky/bitbake/lib/bb/pysh/
H A Dpyshyacc.py431 subname = sube[0]
432 if subname=='io_redirect':
434 elif subname=='ASSIGNMENT_WORD':
/openbmc/linux/include/linux/firmware/cirrus/
H A Dcs_dsp.h94 const char *subname; member
/openbmc/linux/drivers/mmc/core/
H A Dblock.c2462 const char *subname, in mmc_blk_alloc_req() argument
2538 "mmcblk%u%s", card->host->index, subname ? subname : ""); in mmc_blk_alloc_req()
2614 const char *subname, in mmc_blk_alloc_part() argument
2620 subname, area_type, part_type); in mmc_blk_alloc_part()
2716 const char *subname) in mmc_blk_alloc_rpmb_part() argument
2735 "mmcblk%u%s", card->host->index, subname ? subname : ""); in mmc_blk_alloc_rpmb_part()
/openbmc/linux/tools/include/uapi/sound/
H A Dasound.h343 unsigned char subname[32]; /* subdevice name */ member
736 unsigned char subname[32]; /* name of active or selected subdevice */ member
/openbmc/linux/include/uapi/sound/
H A Dasound.h343 unsigned char subname[32]; /* subdevice name */ member
736 unsigned char subname[32]; /* name of active or selected subdevice */ member
/openbmc/linux/tools/net/ynl/lib/
H A Dynl.py454 for subname, subvalue in value.items():
455 attr_payload += self._add_attr(attr['nested-attributes'], subname, subvalue)
/openbmc/linux/drivers/staging/media/omap4iss/
H A Diss_csi2.c1257 static int csi2_init_entities(struct iss_csi2_device *csi2, const char *subname) in csi2_init_entities() argument
1267 snprintf(name, sizeof(name), "CSI2%s", subname); in csi2_init_entities()
/openbmc/linux/sound/core/seq/
H A Dseq_midi.c354 strcpy(port->name, info->subname); in snd_seq_midisynth_probe()
/openbmc/linux/sound/soc/codecs/
H A Dwm_adsp.c634 if (cs_ctl->subname) { in wm_adsp_control_add()
646 " %.*s", cs_ctl->subname_len - skip, cs_ctl->subname + skip); in wm_adsp_control_add()
/openbmc/linux/sound/core/
H A Dpcm.c358 snd_iprintf(buffer, "subname: %s\n", info->subname); in snd_pcm_proc_info_read()
H A Dpcm_native.c231 strscpy(info->subname, substream->name, sizeof(info->subname)); in snd_pcm_info()
H A Drawmidi.c650 strcpy(info->subname, substream->name); in snd_rawmidi_info()