/titanic_50/usr/src/cmd/tput/ |
H A D | tput.c | 577 register int filedes; /* File descriptor for ioctl's. */ in initterm() local 604 if ((filedes = 1, GTTYS(filedes, &termmodes) < 0) || in initterm() 605 (filedes = 2, GTTYS(filedes, &termmodes) < 0) || in initterm() 606 (filedes = 0, GTTYS(filedes, &termmodes) < 0) || in initterm() 607 (filedes = open("/dev/tty", O_RDWR), in initterm() 608 GTTYS(filedes, &termmodes) < 0)) { in initterm() 610 if ((filedes = 1, GTTY(filedes, &termmode) == -1) || in initterm() 611 (filedes = 2, GTTY(filedes, &termmode) == -1) || in initterm() 612 (filedes = 0, GTTY(filedes, &termmode) == -1) || in initterm() 613 (filedes = open("/dev/tty", O_RDWR), in initterm() [all …]
|
/titanic_50/usr/src/lib/krb5/ss/ |
H A D | pager.c | 41 int filedes[2]; in ss_pager_create() local 43 if (pipe(filedes) != 0) in ss_pager_create() 53 if (dup2(filedes[0], 0) == -1) in ss_pager_create() 61 (void) close(filedes[0]); in ss_pager_create() 62 return(filedes[1]); in ss_pager_create()
|
/titanic_50/usr/src/lib/libproc/common/ |
H A D | pr_lseek.c | 43 pr_lseek(struct ps_prochandle *Pr, int filedes, off_t offset, int whence) in pr_lseek() argument 54 return (lseek(filedes, offset, whence)); in pr_lseek() 57 adp->arg_value = filedes; in pr_lseek() 118 pr_llseek(struct ps_prochandle *Pr, int filedes, offset_t offset, int whence) in pr_llseek() argument 129 return (llseek(filedes, offset, whence)); in pr_llseek() 132 adp->arg_value = filedes; in pr_llseek()
|
H A D | llib-lproc | 284 int filedes, off_t offset, int whence); 286 int filedes, offset_t offset, int whence);
|
/titanic_50/usr/src/lib/libc/port/sys/ |
H A D | chown.c | 65 fchown(int filedes, uid_t uid, gid_t gid) in fchown() argument 68 return (syscall(SYS_fchown, filedes, uid, gid)); in fchown() 70 return (fchownat(filedes, NULL, uid, gid, 0)); in fchown()
|
/titanic_50/usr/src/lib/brand/solaris10/s10_brand/common/ |
H A D | s10_deleted.c | 72 s10_fstat(sysret_t *rval, int filedes, struct stat *sb) in s10_fstat() argument 75 filedes, NULL, sb, 0)); in s10_fstat() 103 s10_fstat64(sysret_t *rval, int filedes, struct stat64 *sb) in s10_fstat64() argument 106 filedes, NULL, sb, 0)); in s10_fstat64() 215 s10_fchmod(sysret_t *rval, int filedes, mode_t mode) in s10_fchmod() argument 218 filedes, NULL, mode, 0)); in s10_fchmod() 244 s10_fchown(sysret_t *rval, int filedes, uid_t uid, gid_t gid) in s10_fchown() argument 247 filedes, NULL, uid, gid, 0)); in s10_fchown()
|
/titanic_50/usr/src/head/ |
H A D | spawn.h | 96 int filedes, 103 int filedes); 107 int filedes,
|
/titanic_50/usr/src/lib/libc/port/threads/ |
H A D | spawn.c | 567 int filedes, in posix_spawn_file_actions_addopen() argument 574 if (filedes < 0) in posix_spawn_file_actions_addopen() 589 fap->fa_filedes = filedes; in posix_spawn_file_actions_addopen() 598 int filedes) in posix_spawn_file_actions_addclose() argument 602 if (filedes < 0) in posix_spawn_file_actions_addclose() 608 fap->fa_filedes = filedes; in posix_spawn_file_actions_addclose() 617 int filedes, in posix_spawn_file_actions_adddup2() argument 622 if (filedes < 0 || newfiledes < 0) in posix_spawn_file_actions_adddup2() 628 fap->fa_filedes = filedes; in posix_spawn_file_actions_adddup2()
|
/titanic_50/usr/src/lib/libfsmgt/common/ |
H A D | cmd.c | 288 cmd_retrieve_string(int filedes, int *errp) { in cmd_retrieve_string() argument 312 pollfds[0].fd = filedes; in cmd_retrieve_string() 343 returned_value = read(filedes, buffer, in cmd_retrieve_string()
|
H A D | libfsmgt.h | 204 char *cmd_retrieve_string(int filedes, int *errp);
|
/titanic_50/usr/src/cmd/idmap/idmapd/ |
H A D | idmapd.c | 212 int filedes[2]; in daemonize_start() local 221 if (pipe(filedes) < 0) in daemonize_start() 229 (void) close(filedes[1]); in daemonize_start() 230 if (read(filedes[0], &data, 1) == 1) { in daemonize_start() 245 pipe_fd = filedes[1]; in daemonize_start() 246 (void) close(filedes[0]); in daemonize_start()
|
/titanic_50/usr/src/cmd/svc/configd/ |
H A D | configd.c | 461 int filedes[2]; in daemonize_start() local 467 if (pipe(filedes) < 0) in daemonize_start() 485 (void) close(filedes[1]); in daemonize_start() 486 if (read(filedes[0], &data, 1) == 1) { in daemonize_start() 502 pipe_fd = filedes[1]; in daemonize_start() 503 (void) close(filedes[0]); in daemonize_start()
|
/titanic_50/usr/src/cmd/geniconvtbl/ |
H A D | itmcomp.c | 462 int filedes[2]; in cpp_open() local 469 if (pipe(filedes)) { in cpp_open() 476 (void) close(filedes[0]); in cpp_open() 478 (void) dup2(filedes[1], 1); in cpp_open() 484 (void) close(filedes[1]); in cpp_open() 485 return (fdopen(filedes[0], "r")); in cpp_open()
|
/titanic_50/usr/src/cmd/ypcmd/ |
H A D | makedbm.c | 84 close(int filedes) { in close() argument 99 if (inode_dev_valid != 0 && fstat64(filedes, &sb) == 0) { in close() 106 return ((*fptr)(filedes)); in close()
|
/titanic_50/usr/src/common/fs/ |
H A D | pcfs.c | 209 static int filedes = 1; in bpcfs_open() local 220 filep->fi_filedes = filedes++; in bpcfs_open()
|
H A D | hsfs.c | 476 static int filedes = 1; in bhsfs_open() local 487 filep->fi_filedes = filedes++; in bhsfs_open()
|
H A D | ufsops.c | 615 static int filedes = 1; in bufs_open() local 625 filep->fi_filedes = filedes++; in bufs_open()
|
/titanic_50/usr/src/grub/grub-0.97/lib/ |
H A D | device.c | 907 static int _llseek (uint filedes, ulong hi, ulong lo, in write_to_partition() 909 _syscall5 (int, _llseek, uint, filedes, ulong, hi, ulong, lo, in write_to_partition()
|
/titanic_50/usr/src/grub/grub-0.97/grub/ |
H A D | asmstub.c | 946 static int _llseek (uint filedes, ulong hi, ulong lo, in biosdisk() 948 _syscall5 (int, _llseek, uint, filedes, ulong, hi, ulong, lo, in biosdisk()
|
/titanic_50/usr/src/stand/lib/fs/ufs/ |
H A D | ufsops.c | 681 static int filedes = 1; in boot_ufs_open() local 689 filep->fi_filedes = filedes++; in boot_ufs_open()
|
/titanic_50/usr/src/stand/lib/fs/hsfs/ |
H A D | hsfsops.c | 575 static int filedes = 1; in boot_hsfs_open() local 584 filep->fi_filedes = filedes++; in boot_hsfs_open()
|
/titanic_50/usr/src/cmd/vgrind/ |
H A D | vgrindefs.src | 106 else elsedef enddef filedes for function goto if ifdef ifelse\
|
/titanic_50/usr/src/cmd/zonestat/zonestatd/ |
H A D | zonestatd.c | 4689 int filedes[2]; in daemonize_start() local 4695 if (pipe(filedes) < 0) in daemonize_start() 4715 (void) close(filedes[1]); in daemonize_start() 4716 if (read(filedes[0], &data, 1) == 1) { in daemonize_start() 4735 pipe_fd = filedes[1]; in daemonize_start() 4736 (void) close(filedes[0]); in daemonize_start()
|
/titanic_50/usr/src/uts/common/c2/ |
H A D | audit_event.c | 1129 long filedes; in aui_openat() member 1155 long filedes; in aus_openat() member 1174 long filedes; in aui_unlinkat() member 1193 long filedes; in aui_fstatat() member
|
/titanic_50/usr/src/lib/libc/port/ |
H A D | llib-lc | 368 int directio(int filedes, int advice); 432 int flock(int filedes, int operation);
|