Lines Matching refs:c_cflag
123 options.c_cflag &= (uint32_t) ~CSIZE; // character size mask in jerryx_debugger_serial_configure_attributes()
124 options.c_cflag |= (CLOCAL | CREAD); // ignore modem control lines and enable the receiver in jerryx_debugger_serial_configure_attributes()
130 options.c_cflag |= CS5; // set character size mask to 5-bit chars in jerryx_debugger_serial_configure_attributes()
135 options.c_cflag |= CS6; // set character size mask to 6-bit chars in jerryx_debugger_serial_configure_attributes()
140 options.c_cflag |= CS7; // set character size mask to 7-bit chars in jerryx_debugger_serial_configure_attributes()
145 options.c_cflag |= CS8; // set character size mask to 8-bit chars in jerryx_debugger_serial_configure_attributes()
159 options.c_cflag &= (unsigned int) ~(PARENB | PARODD); in jerryx_debugger_serial_configure_attributes()
164 options.c_cflag |= PARENB; in jerryx_debugger_serial_configure_attributes()
165 options.c_cflag |= PARODD; in jerryx_debugger_serial_configure_attributes()
170 options.c_cflag |= PARENB; in jerryx_debugger_serial_configure_attributes()
171 options.c_cflag |= PARODD; in jerryx_debugger_serial_configure_attributes()
185 options.c_cflag &= (uint32_t) ~CSTOPB; // set 1 stop bits in jerryx_debugger_serial_configure_attributes()
190 options.c_cflag |= CSTOPB; // set 2 stop bits in jerryx_debugger_serial_configure_attributes()