Lines Matching defs:args
59 termios_tcsetattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
69 if (!_PyLong_FileDescriptor_Converter(args[0], &fd)) {
72 when = _PyLong_AsInt(args[1]);
76 term = args[2];
99 termios_tcsendbreak(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
108 if (!_PyLong_FileDescriptor_Converter(args[0], &fd)) {
111 duration = _PyLong_AsInt(args[1]);
165 termios_tcflush(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
174 if (!_PyLong_FileDescriptor_Converter(args[0], &fd)) {
177 queue = _PyLong_AsInt(args[1]);
204 termios_tcflow(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
213 if (!_PyLong_FileDescriptor_Converter(args[0], &fd)) {
216 action = _PyLong_AsInt(args[1]);
271 termios_tcsetwinsize(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
280 if (!_PyLong_FileDescriptor_Converter(args[0], &fd)) {
283 winsz = args[1];