Home
last modified time | relevance | path

Searched refs:ossaudiodev (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_ossaudiodev.py6 ossaudiodev = test_support.import_module('ossaudiodev') variable
18 from ossaudiodev import AFMT_S16_NE
21 AFMT_S16_NE = ossaudiodev.AFMT_S16_LE
23 AFMT_S16_NE = ossaudiodev.AFMT_S16_BE
46 dsp = ossaudiodev.open('w')
97 config1 = (ossaudiodev.AFMT_U8, 1, 8000)
140 except ossaudiodev.OSSAudioError, err:
150 dsp = ossaudiodev.open("w")
164 dsp = ossaudiodev.open('w')
165 except (ossaudiodev.error, IOError), msg:
/external/python/cpython2/Doc/library/
Dossaudiodev.rst2 :mod:`ossaudiodev` --- Access to OSS-compatible audio devices
5 .. module:: ossaudiodev
19 is active to use ossaudiodev, but you're gonna need it for the vast
53 :mod:`ossaudiodev` defines the following variables and functions:
61 (If :mod:`ossaudiodev` receives an error from a system call such as
63 Errors detected directly by :mod:`ossaudiodev` result in :exc:`OSSAudioError`.)
66 ``ossaudiodev.error``.)
91 older :mod:`linuxaudiodev` module which :mod:`ossaudiodev` supersedes.
365 mixer=ossaudiodev.openmixer()
366 if mixer.controls() & (1 << ossaudiodev.SOUND_MIXER_PCM):
[all …]
Dmm.rst24 ossaudiodev.rst
Dundoc.rst53 :mod:`ossaudiodev` module. Removed in Python 3.x.
/external/python/cpython2/Misc/
Dmaintainers.rst163 ossaudiodev
DNEWS4488 - Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by
4509 - Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is
DHISTORY5388 ossaudiodev. The interface has been extended to cover a lot more of
/external/python/cpython2/Doc/whatsnew/
D2.3.rst1395 and a new version named :mod:`ossaudiodev` has been added. The module was