Lines Matching defs:slave
530 The default device is equal to plug plugin with hw plugin as slave. The defaults are
565 The plughw device description uses the plug plugin and hw plugin as slave. The arguments
581 The plug device uses the plug plugin. The one SLAVE argument specifies the slave plugin.
606 The tee device stores contents of a stream to given file plus transfers it to given slave plugin.
607 The three arguments (in order: SLAVE,FILE,FORMAT) specify slave plugin, filename and file format.
617 The file device is file plugin with null plugin as slave. The arguments (in order: FILE,FORMAT)
7802 SNDERR("Invalid slave definition");
7808 SNDERR("Invalid slave definition");
7938 snd_pcm_t *slave, snd_pcm_rbptr_t *slave_rbptr)
7958 pcm_rbptr->master = slave_rbptr->master ? slave_rbptr->master : slave;
7964 pcm_rbptr->changed(pcm, slave);
7968 snd_pcm_t *slave, snd_pcm_rbptr_t *slave_rbptr)
7989 pcm_rbptr->changed(pcm, slave);
7992 void snd_pcm_link_hw_ptr(snd_pcm_t *pcm, snd_pcm_t *slave)
7995 assert(slave);
7996 snd_pcm_link_ptr(pcm, &pcm->hw, slave, &slave->hw);
7999 void snd_pcm_link_appl_ptr(snd_pcm_t *pcm, snd_pcm_t *slave)
8002 assert(slave);
8003 snd_pcm_link_ptr(pcm, &pcm->appl, slave, &slave->appl);
8006 void snd_pcm_unlink_hw_ptr(snd_pcm_t *pcm, snd_pcm_t *slave)
8009 assert(slave);
8010 snd_pcm_unlink_ptr(pcm, &pcm->hw, slave, &slave->hw);
8013 void snd_pcm_unlink_appl_ptr(snd_pcm_t *pcm, snd_pcm_t *slave)
8016 assert(slave);
8017 snd_pcm_unlink_ptr(pcm, &pcm->appl, slave, &slave->appl);