Lines Matching defs:queue
149 "tcflush($module, fd, queue, /)\n"
154 "The queue selector specifies which queue: termios.TCIFLUSH for the input\n"
155 "queue, termios.TCOFLUSH for the output queue, or termios.TCIOFLUSH for\n"
162 termios_tcflush_impl(PyObject *module, int fd, int queue);
169 int queue;
177 queue = _PyLong_AsInt(args[1]);
178 if (queue == -1 && PyErr_Occurred()) {
181 return_value = termios_tcflush_impl(module, fd, queue);