Lines Matching defs:list

109 /* add new verbs to end of list */
145 /* add new devices to end of list */
179 /* add new modifiers to end of list */
206 * \brief Free a string list
207 * \param list The string list to free
211 int snd_use_case_free_list(const char *list[], int items);
214 * \brief Obtain a list of entries
215 * \param uc_mgr Use case manager (may be NULL - card list)
216 * \param identifier (may be NULL - card list)
217 * \param list Returned allocated list
218 * \return Number of list entries if success, otherwise a negative error code
221 * - NULL - get card list
223 * - _verbs - get verb list
225 * - _devices[/{verb}] - get list of supported devices
227 * - _modifiers[/{verb}] - get list of supported modifiers
229 * - TQ[/{verb}] - get list of TQ identifiers
230 * - _enadevs - get list of enabled devices
231 * - _enamods - get list of enabled modifiers
233 * - _identifiers/{modifier}|{device}[/{verb}] - list of value identifiers
234 * - _supporteddevs/{modifier}|{device}[/{verb}] - list of supported devices
235 * - _conflictingdevs/{modifier}|{device}[/{verb}] - list of conflicting devices
243 const char **list[]);
398 * value is a space-separated list of device names. If the device
514 * \brief Obtain a list of cards
515 * \param list Returned allocated list
516 * \return Number of list entries if success, otherwise a negative error code
518 static __inline__ int snd_use_case_card_list(const char **list[])
520 return snd_use_case_get_list(NULL, NULL, list);
524 * \brief Obtain a list of verbs
526 * \param list Returned list of verbs
527 * \return Number of list entries if success, otherwise a negative error code
530 const char **list[])
532 return snd_use_case_get_list(uc_mgr, "_verbs", list);