Lines Matching refs:dst
1007 * \param dst pointer to destination
1010 void snd_mixer_selem_id_copy(snd_mixer_selem_id_t *dst, const snd_mixer_selem_id_t *src)
1012 assert(dst && src);
1013 *dst = *src;
1063 * \param dst Parsed simple mixer element identifier
1066 int snd_mixer_selem_id_parse(snd_mixer_selem_id_t *dst, const char *str)
1072 memset(dst, 0, sizeof(*dst));
1108 dst->index = atoi(str);
1110 snd_strlcpy(dst->name, buf, sizeof(dst->name));