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