Lines Matching defs:nonblock
263 static int snd_pcm_hw_nonblock(snd_pcm_t *pcm, int nonblock)
274 if (nonblock)
1532 .nonblock = snd_pcm_hw_nonblock,
1834 The nonblock option specifies whether the device is opened in a non-blocking
1847 [nonblock BOOL] # Force non-blocking open mode
1889 int nonblock = 1; /* non-block per default */
1893 /* look for defaults.pcm.nonblock definition */
1894 if (snd_config_search(root, "defaults.pcm.nonblock", &n) >= 0) {
1897 nonblock = err;
1936 if (strcmp(id, "nonblock") == 0) {
1940 nonblock = err;
2052 mode | (nonblock ? SND_PCM_NONBLOCK : 0),
2056 if (nonblock && ! (mode & SND_PCM_NONBLOCK)) {