Home
last modified time | relevance | path

Searched refs:supported_formats (Results 1 – 4 of 4) sorted by relevance

/qemu/tests/qemu-iotests/
H A Diotests.py1440 usf_list = list(set(required_formats) - set(supported_formats()))
1544 def supported_formats(read_only=False): function
1548 if not hasattr(supported_formats, "formats"):
1549 supported_formats.formats = {}
1551 if read_only not in supported_formats.formats:
1554 supported_formats.formats[read_only] = \
1557 return supported_formats.formats[read_only]
1570 usf_list = list(set(fmts) - set(supported_formats(read_only)))
H A D136348 if 'null-co' not in iotests.supported_formats():
H A D093420 if 'null-co' not in iotests.supported_formats():
/qemu/hw/audio/
H A Dvirtio-snd.c40 static uint32_t supported_formats = BIT(VIRTIO_SND_PCM_FMT_S8) variable
260 if (params->format >= sizeof(supported_formats) * BITS_PER_BYTE || in virtio_snd_set_pcm_params()
261 !(supported_formats & BIT(params->format))) { in virtio_snd_set_pcm_params()
451 stream->info.formats = supported_formats; in virtio_snd_pcm_prepare()