Home | History | Annotate | Download | only in alsa_utils

Lines Matching full:card

63     profile->card = profile->device = -1;
84 return profile->card >= 0 && profile->device >= 0;
91 bool profile_is_cached_for(alsa_device_profile* profile, int card, int device) {
92 return card == profile->card && device == profile->device;
225 struct pcm * pcm = pcm_open(profile->card, profile->device,
319 * Reads and decodes configuration info from the specified ALSA card/device.
324 profile->card, profile->device, profile->direction);
326 if (profile->card < 0 || profile->device < 0) {
331 pcm_params_get(profile->card, profile->device, profile->direction);
395 struct pcm_params * alsa_hw_params = pcm_params_get(profile->card,
596 /* card/device/direction */
597 dprintf(fd, " card:%d, device:%d - %s\n",
598 profile->card, profile->device, profile->direction == PCM_OUT ? "OUT" : "IN");