Lines Matching defs:hints
4 * \brief Give device name hints
9 * Give device name hints - main file
558 * \brief Get a set of device name hints
561 * \param hints Result - array of device name hints
564 * hints will receive a NULL-terminated array of device name hints,
566 * values. When no longer needed, hints should be passed to
569 * User-defined hints are gathered from namehint.IFACE tree like:
583 int snd_device_name_hint(int card, const char *iface, void ***hints)
593 if (hints == NULL)
668 *hints = (void **)list.list;
680 * \brief Free a list of device name hints.
681 * \param hints List to free
684 int snd_device_name_free_hint(void **hints)
688 if (hints == NULL)
690 h = (char **)hints;
695 free(hints);