Lines Matching defs:update
4490 * \param[in,out] _update Address of a pointer to private update information.
4499 * update information holds information about all used configuration
4521 snd_config_update_t *update;
4526 update = *_update;
4586 if (!update)
4588 if (local->count != update->count)
4592 struct finfo *uf = &update->finfo[k];
4607 if (update) {
4608 snd_config_update_free(update);
4619 if (update) {
4620 snd_config_update_free(update);
4621 update = NULL;
4754 * \brief Frees a private update structure.
4755 * \param[in] update The private update structure to free.
4758 int snd_config_update_free(snd_config_update_t *update)
4762 assert(update);
4763 for (k = 0; k < update->count; k++)
4764 free(update->finfo[k].name);
4765 free(update->finfo);
4766 free(update);