Lines Matching defs:asyncline
141 struct asyncline { struct
142 int async_flags; /* random flags */
143 kcondvar_t async_flags_cv; /* condition variable for flags */
144 dev_t async_dev; /* device major/minor numbers */
145 mblk_t *async_xmitblk; /* transmit: active msg block */
146 struct xencons *async_common; /* device common data */
147 tty_common_t async_ttycommon; /* tty driver common data */
148 bufcall_id_t async_wbufcid; /* id for pending write-side bufcall */
149 timeout_id_t async_polltid; /* softint poll timeout id */
150 timeout_id_t async_dtrtid; /* delaying DTR turn on */
151 timeout_id_t async_utbrktid; /* hold minimum untimed break time id */
158 uchar_t *async_optr; /* output pointer */
159 int async_ocnt; /* output count */
160 ushort_t async_rput; /* producing pointer for input */
161 ushort_t async_rget; /* consuming pointer for input */
162 int async_inflow_source; /* input flow control type */
164 union {
170 } async_uover;
197 /* definitions for async_inflow_source field in struct asyncline */ argument