Lines Matching refs:term
151 attributes as term: object
165 termios_tcsetattr_impl(PyObject *module, int fd, int when, PyObject *term)
168 if (!PyList_Check(term) || PyList_Size(term) != 7) {
186 mode.c_iflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 0));
187 mode.c_oflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 1));
188 mode.c_cflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 2));
189 mode.c_lflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 3));
190 speed_t ispeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 4));
191 speed_t ospeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 5));
192 PyObject *cc = PyList_GetItem(term, 6);