Searched refs:fflags (Results 1 – 7 of 7) sorted by relevance
| /components/lwp/terminal/freebsd/ |
| A D | tty_compat.c | 335 #define IOCTL(cmd, data, fflags, td) \ argument 336 bsd_ttydev_methods.d_ioctl(tp, cmd, data, fflags, td) 340 long fflags = FFLAGS(oflags); in lwp_tty_ioctl_adapter() local 349 error = IOCTL(TIOCGETA, (rt_caddr_t)&tios, fflags, td); in lwp_tty_ioctl_adapter() 361 error = (IOCTL(TIOCSETA, (rt_caddr_t)&tios, fflags, td)); in lwp_tty_ioctl_adapter() 368 error = (IOCTL(TIOCSETAW, (rt_caddr_t)&tios, fflags, td)); in lwp_tty_ioctl_adapter() 375 error = (IOCTL(TIOCSETAF, (rt_caddr_t)&tios, fflags, td)); in lwp_tty_ioctl_adapter() 379 error = IOCTL(TIOCGETA, (rt_caddr_t)&tios, fflags, td); in lwp_tty_ioctl_adapter() 391 error = (IOCTL(TIOCSETA, (rt_caddr_t)&tios, fflags, td)); in lwp_tty_ioctl_adapter() 520 error = IOCTL(cmd, (rt_caddr_t)args, fflags, td); in lwp_tty_ioctl_adapter() [all …]
|
| A D | tty_pts.c | 243 struct ucred *active_cred, int fflags, in ptsdev_ioctl() argument 370 error = tty_ioctl(tp, cmd, data, fflags, td); in ptsdev_ioctl() 730 int pts_alloc(int fflags, struct rt_thread *td, struct dfs_file *ptm_file) in pts_alloc() argument
|
| /components/dfs/dfs_v2/include/ |
| A D | dfs.h | 98 rt_inline int dfs_oflags(int fflags) in dfs_oflags() argument 100 int rw = fflags & (DFS_F_FREAD | DFS_F_FWRITE); in dfs_oflags() 102 fflags &= ~(DFS_F_FREAD | DFS_F_FWRITE); in dfs_oflags() 103 return (rw - 1) | fflags; in dfs_oflags()
|
| /components/lwp/terminal/ |
| A D | bsd_porting.h | 664 #define OFLAGS(fflags) \ argument 665 (((fflags) & (O_EXEC | O_PATH)) != 0 ? (fflags) : (fflags)-1) 673 struct ucred *active_cred, int fflags, struct rt_thread *td);
|
| A D | tty_internal.h | 43 int pts_alloc(int fflags, struct rt_thread *td, struct dfs_file *ptm_file);
|
| A D | tty_device.c | 80 int fflags = FFLAGS(file->flags); in tty_fops_close() local 93 rc = bsd_ttydev_methods.d_close(tp, fflags, devtype, rt_thread_self()); in tty_fops_close()
|
| /components/dfs/dfs_v2/src/ |
| A D | dfs_file.c | 570 int fflags = dfs_fflags(oflags); in dfs_file_open() local 632 if (fflags & (DFS_F_FWRITE)) in dfs_file_open() 707 if (fflags & DFS_F_FWRITE) in dfs_file_open() 715 if (fflags & DFS_F_FREAD) in dfs_file_open() 780 if (!(fflags & DFS_F_FWRITE) || file->vnode->type == FT_DIRECTORY) in dfs_file_open()
|
Completed in 18 milliseconds