| /illumos-gate/usr/src/uts/common/io/ |
| H A D | ttcompat.c | 745 cb->sg_flags = tp->t_curstate.t_flags; in ttcompat_ioctl_ack() 781 ((unsigned)tp->t_curstate.t_flags) >> 16; in ttcompat_ioctl_ack() 815 tp->t_curstate.t_flags = in ttcompat_ioctl_ack() 816 (tp->t_curstate.t_flags & 0xffff0000) | in ttcompat_ioctl_ack() 876 tp->t_curstate.t_flags |= (tp->t_new_lflags << 16); in ttcompat_ioctl_ack() 895 tp->t_curstate.t_flags &= ~(tp->t_new_lflags << 16); in ttcompat_ioctl_ack() 914 tp->t_curstate.t_flags &= 0xffff; in ttcompat_ioctl_ack() 915 tp->t_curstate.t_flags |= (tp->t_new_lflags << 16); in ttcompat_ioctl_ack() 1083 if (csp->t_flags & O_TANDEM) in from_compat() 1085 if (csp->t_flags & O_LCASE) { in from_compat() [all …]
|
| H A D | tty_common.c | 67 tc->t_flags &= ~TS_XCLUDE; in ttycommon_close() 228 tc->t_flags |= TS_XCLUDE; in ttycommon_ioctl() 237 tc->t_flags &= ~TS_XCLUDE; in ttycommon_ioctl() 252 tc->t_flags |= TS_SOFTCAR; in ttycommon_ioctl() 254 tc->t_flags &= ~TS_SOFTCAR; in ttycommon_ioctl() 369 if (tc->t_flags & TS_SOFTCAR) in ttycommon_ioctl()
|
| H A D | asy.c | 2307 } else if ((async->async_ttycommon.t_flags & TS_XCLUDE) && in asyopen() 2345 async->async_ttycommon.t_flags |= TS_SOFTCAR; in asyopen() 2347 async->async_ttycommon.t_flags &= ~TS_SOFTCAR; in asyopen() 2355 (async->async_ttycommon.t_flags & TS_SOFTCAR) ? "set" : "clear", in asyopen() 2371 !(async->async_ttycommon.t_flags & TS_SOFTCAR)) || in asyopen() 3348 asy->asy_msr & ASY_MSR_DCD, tp->t_flags & TS_SOFTCAR); in asy_carrier_check() 3384 if ((tp->t_cflag & CLOCAL) != 0 || (tp->t_flags & TS_SOFTCAR) != 0) in asy_carrier_check()
|
| /illumos-gate/usr/src/uts/common/fs/smbsrv/ |
| H A D | smb2_qinfo_fs.c | 248 if (tree->t_flags & SMB_TREE_UNICODE_ON_DISK) in smb2_qfs_attr() 250 if (tree->t_flags & SMB_TREE_SUPPORTS_ACLS) in smb2_qfs_attr() 252 if ((tree->t_flags & SMB_TREE_CASEINSENSITIVE) == 0) in smb2_qfs_attr() 254 if (tree->t_flags & SMB_TREE_STREAMS) in smb2_qfs_attr() 256 if (tree->t_flags & SMB_TREE_QUOTA) in smb2_qfs_attr() 258 if (tree->t_flags & SMB_TREE_SPARSE) in smb2_qfs_attr()
|
| H A D | smb_fsinfo.c | 292 if (tree->t_flags & SMB_TREE_UNICODE_ON_DISK) in smb_com_trans2_query_fs_information() 295 if (tree->t_flags & SMB_TREE_SUPPORTS_ACLS) in smb_com_trans2_query_fs_information() 298 if ((tree->t_flags & SMB_TREE_CASEINSENSITIVE) == 0) in smb_com_trans2_query_fs_information() 301 if (tree->t_flags & SMB_TREE_STREAMS) in smb_com_trans2_query_fs_information() 304 if (tree->t_flags & SMB_TREE_QUOTA) in smb_com_trans2_query_fs_information() 307 if (tree->t_flags & SMB_TREE_SPARSE) in smb_com_trans2_query_fs_information()
|
| H A D | smb2_tree_connect.c | 138 if ((tree->t_flags & SMB_TREE_DFSROOT) != 0) in smb2_tree_connect() 140 if ((tree->t_flags & SMB_TREE_CA) != 0) in smb2_tree_connect()
|
| H A D | smb_tree.c | 447 return ((tree->t_flags & flags) == flags); in smb_tree_has_feature() 755 if (tree->t_flags & SMB_TREE_SHORTNAMES) in smb_tree_connect_disk() 974 if (tree->t_flags & SMB_TREE_READONLY) in smb_tree_alloc() 1300 tree->t_flags = flags; in smb_tree_get_flags()
|
| H A D | smb2_setinfo_file.c | 306 if ((of->f_tree->t_flags & SMB_TREE_SHORTNAMES) == 0) in smb2_setf_shortname()
|
| /illumos-gate/usr/src/cmd/mdb/common/mdb/ |
| H A D | mdb_target.c | 206 t->t_flags = flags; in mdb_tgt_create() 233 return (t->t_flags); in mdb_tgt_getflags() 397 if (t->t_flags & MDB_TGT_F_ASIO) in mdb_tgt_aread() 419 if (!(t->t_flags & MDB_TGT_F_RDWR)) in mdb_tgt_awrite() 422 if (t->t_flags & MDB_TGT_F_ASIO) in mdb_tgt_awrite() 449 if (t->t_flags & MDB_TGT_F_RDWR) in mdb_tgt_vwrite() 464 if (t->t_flags & MDB_TGT_F_RDWR) in mdb_tgt_pwrite() 479 if (t->t_flags & MDB_TGT_F_RDWR) in mdb_tgt_fwrite() 494 if (t->t_flags & MDB_TGT_F_RDWR) in mdb_tgt_iowrite() 1093 if (t->t_flags & MDB_TGT_F_STEP) in tgt_continue() [all …]
|
| H A D | mdb_rawfile.c | 73 if ((flags ^ t->t_flags) & MDB_TGT_F_RDWR) { in rf_setflags() 74 uint_t otflags = t->t_flags; in rf_setflags() 84 t->t_flags = (t->t_flags & ~MDB_TGT_F_RDWR) | in rf_setflags() 88 t->t_flags = otflags; in rf_setflags() 253 "object file", t->t_flags, func, private) != 0) in rf_mapping_iter() 257 "core file", t->t_flags, func, private) != 0) in rf_mapping_iter() 432 if (t->t_flags & MDB_TGT_F_RDWR) in mdb_rawfile_tgt_create() 447 t->t_flags |= MDB_TGT_F_ASIO; /* do i/o using aread and awrite */ in mdb_rawfile_tgt_create()
|
| H A D | mdb_kvm.c | 311 if (t->t_flags & MDB_TGT_F_PRELOAD) { in kt_load_modules() 323 int iochg = ((flags ^ t->t_flags) & MDB_TGT_F_ALLOWIO) && in kt_setflags() 325 int rwchg = (flags ^ t->t_flags) & MDB_TGT_F_RDWR; in kt_setflags() 367 t->t_flags = (t->t_flags & ~(MDB_TGT_F_RDWR | MDB_TGT_F_ALLOWIO)) | in kt_setflags() 451 t->t_flags, argc, argv)) == NULL) in kt_setcontext() 672 if (t->t_flags & MDB_TGT_F_PRELOAD) { in kt_activate() 680 if (!(t->t_flags & MDB_TGT_F_NOLOAD)) { in kt_activate() 697 if (t->t_flags & MDB_TGT_F_PRELOAD) { in kt_activate() 1459 int oflag = (t->t_flags & MDB_TGT_F_RDWR) ? O_RDWR : O_RDONLY; in mdb_kvm_tgt_create()
|
| H A D | mdb_target_impl.h | 230 uint_t t_flags; /* Mode flags (see <mdb_target.h>) */ member
|
| H A D | mdb_proc.c | 450 t->t_flags |= MDB_TGT_F_RDWR; in pt_post_attach() 975 if ((flags ^ t->t_flags) & MDB_TGT_F_RDWR) { in pt_setflags() 987 t->t_flags = (t->t_flags & ~MDB_TGT_F_RDWR) | in pt_setflags() 996 t->t_flags |= MDB_TGT_F_FORCE; in pt_setflags() 3425 if (t->t_flags & MDB_TGT_F_BUSY) in pt_status() 5377 if (t->t_flags & MDB_TGT_F_RDWR) in mdb_proc_tgt_create() 5382 if (t->t_flags & MDB_TGT_F_FORCE) in mdb_proc_tgt_create() 5384 if (t->t_flags & MDB_TGT_F_NOSTOP) in mdb_proc_tgt_create()
|
| /illumos-gate/usr/src/uts/common/sys/ |
| H A D | tty.h | 38 int t_flags; member
|
| H A D | ttcompat.h | 44 int t_flags; /* flags */ member
|
| /illumos-gate/usr/src/uts/sun/io/ |
| H A D | zs_async.c | 763 za->za_ttycommon.t_flags |= TS_SOFTCAR; in zsa_open() 823 } else if ((za->za_ttycommon.t_flags & TS_XCLUDE) && in zsa_open() 847 if ((za->za_ttycommon.t_flags & TS_SOFTCAR) || in zsa_open() 1085 if (zsasoftdtr && (za->za_ttycommon.t_flags & TS_SOFTCAR)) in zsa_close() 1470 if ((za->za_ttycommon.t_flags & TS_SOFTCAR) || in zsa_wput() 2112 (za->za_ttycommon.t_flags & TS_SOFTCAR)) { in zsa_softint() 2192 (za->za_ttycommon.t_flags & TS_SOFTCAR)) { in zsa_softint() 2777 if (za->za_ttycommon.t_flags & TS_SOFTCAR) in zsa_ioctl() 3353 if (za->za_ttycommon.t_flags & TS_SOFTCAR) printf(" t_fl:TS_SOFTCAR"); in zsa_print_info() 3354 if (za->za_ttycommon.t_flags & TS_XCLUDE) printf(" t_fl:TS_XCLUDE"); in zsa_print_info()
|
| /illumos-gate/usr/src/uts/common/netinet/ |
| H A D | tcp_var.h | 38 uchar_t t_flags; member
|
| /illumos-gate/usr/src/uts/sun4u/sys/ |
| H A D | cheetahasm.h | 724 #define DO_TL1_CPU_LOGOUT(r_val, afar, t_flags, datap, scr1, scr2, scr3) \ argument 730 stxa t_flags, [datap + CH_CLO_FLAGS]%asi; \ 782 #define DO_CPU_LOGOUT(r_val, afar, r_or_s, t_flags, scr1, scr2, scr3, scr4) \ argument 785 DO_TL1_CPU_LOGOUT(r_val, afar, t_flags, scr1, scr2, scr3, scr4) \ 789 mov t_flags, afar; /* depends on afar = %g2 */ \
|
| /illumos-gate/usr/src/cmd/mdb/intel/mdb/ |
| H A D | mdb_bhyve.c | 935 if (((tgt->t_flags ^ flags) & MDB_TGT_F_RDWR) != 0) { in bhyve_setflags() 945 tgt->t_flags = flags; in bhyve_setflags() 1436 if ((tgt->t_flags & MDB_TGT_F_RDWR) == 0) in bhyve_putareg() 1509 boolean_t writable = (tgt->t_flags & MDB_TGT_F_RDWR) != 0; in mdb_bhyve_tgt_create() 1534 tgt->t_flags |= MDB_TGT_F_ASIO; in mdb_bhyve_tgt_create()
|
| /illumos-gate/usr/src/cmd/mdb/common/kmdb/ |
| H A D | kmdb_kvm.c | 95 t->t_flags = (t->t_flags & ~MDB_TGT_F_ALLOWIO) | in kmt_setflags() 242 if (!(t->t_flags & MDB_TGT_F_ALLOWIO) && in kmt_read() 1520 t->t_flags |= MDB_TGT_F_UNLOAD; in kmt_continue() 2541 t->t_flags |= MDB_TGT_F_RDWR; /* kmdb is always r/w */ in kmdb_kvm_create()
|
| /illumos-gate/usr/src/uts/sun4/io/ |
| H A D | su_driver.c | 995 } else if ((async->async_ttycommon.t_flags & TS_XCLUDE) && in asyopen() 1017 async->async_ttycommon.t_flags |= TS_SOFTCAR; in asyopen() 1018 if ((async->async_ttycommon.t_flags & TS_SOFTCAR) || in asyopen() 2126 if ((val & DCD) || (tp->t_flags & TS_SOFTCAR)) { in async_softint() 2913 if (tp->t_flags & TS_SOFTCAR) in async_ioctl()
|
| /illumos-gate/usr/src/cmd/mdb/intel/kmdb/ |
| H A D | kvm_isadep.c | 362 if (!(t->t_flags & MDB_TGT_F_ALLOWIO) && in kmt_write()
|
| /illumos-gate/usr/src/uts/common/io/usb/clients/usbser/ |
| H A D | usbser.c | 1416 if ((pp->port_ttycommon.t_flags & TS_XCLUDE) && in usbser_open_setup() 1662 tp->t_flags |= TS_SOFTCAR; in usbser_open_carrier_check() 1668 if (tp->t_flags & TS_SOFTCAR) { in usbser_open_carrier_check() 2394 if ((status & TIOCM_CD) || (tp->t_flags & TS_SOFTCAR)) { in usbser_status_proc_cb()
|
| /illumos-gate/usr/src/uts/common/xen/io/ |
| H A D | xencons.c | 441 } else if ((async->async_ttycommon.t_flags & TS_XCLUDE) && in xenconsopen() 447 async->async_ttycommon.t_flags |= TS_SOFTCAR; in xenconsopen()
|
| /illumos-gate/usr/src/cmd/mdb/common/modules/mdb_ds/ |
| H A D | mdb_ds.c | 237 mdb_printf("\tt_flags = %-?x\tt_vecnt = 0t%u\n", t.t_flags, t.t_vecnt); in cmd_target()
|