Searched refs:fildes (Results 1 - 22 of 22) sorted by relevance

/macosx-10.10.1/Libc-1044.1.2/emulated/
H A Dtcgetsid.c32 tcgetsid(int fildes) argument
36 if (ioctl(fildes, TIOCGSID, (char *)&sid) < 0)
H A Dstatvfs.c60 fstatvfs(int fildes, struct statvfs *buf) argument
65 if ((rv = fstatfs(fildes, &cvt)) == 0)
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/unix03/
H A Dmmap.c34 void *__mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off);
43 mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off) argument
61 void *ptr = __mmap(addr, len, prot, flags, fildes, off);
66 stackLoggingFlags |= (fildes & VM_FLAGS_ALIAS_MASK);
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dfopen_unlocked.c48 @deftypefn Extension {FILE *} fdopen_unlocked (int @var{fildes}, const char * @var{mode})
113 fdopen_unlocked (int fildes, const char *mode) argument
115 FILE *const fp = fdopen (fildes, mode);
/macosx-10.10.1/swig-12/Lib/tcl/
H A Dmactkinit.c36 char * __ttyname _ANSI_ARGS_((long fildes));
221 __ttyname(long fildes) argument
225 if (fildes >= 0 && fildes <= 2) {
/macosx-10.10.1/tcsh-65/tcsh/
H A Dsh.misc.c529 xclose(int fildes) argument
531 if (fildes < 0)
533 while (close(fildes) == -1 && errno == EINTR)
556 xdup2(int fildes, int fildes2) argument
560 while ((res = dup2(fildes, fildes2)) == -1 && errno == EINTR)
630 xread(int fildes, void *buf, size_t nbyte) argument
638 while ((res = read(fildes, buf, nbyte)) == -1 && errno == EINTR);
644 xtcsetattr(int fildes, int optional_actions, const struct termios *termios_p) argument
648 while ((res = tcsetattr(fildes, optional_actions, termios_p)) == -1 &&
656 xwrite(int fildes, cons argument
[all...]
H A Dsh.lex.c1537 wide_read(int fildes, Char *buf, size_t nchars, int use_fclens) argument
1557 r = xread(fildes, cbuf + partial, len);
1592 lseek(fildes, -(off_t)partial, L_INCR);
/macosx-10.10.1/dyld-353.2.1/src/
H A DdyldSyscallInterface.h50 int (*fcntl)(int fildes, int cmd, void* result);
51 int (*ioctl)(int fildes, unsigned long request, void* result);
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Drltty.c775 int fildes = fileno (rl_outstream);
778 ioctl (&fildes, TIOCSTART, 0);
780 ioctl (fildes, TIOCSTART, 0);
789 tcflow (fildes, TCOON);
792 tcflow (fildes, TCOON); /* Simulate a ^Q. */
796 ioctl (fildes, TCXONC, TCOON);
813 int fildes = fileno (rl_instream);
817 ioctl (&fildes, TIOCSTOP, 0);
819 ioctl (fildes, TIOCSTOP, 0);
826 tcflow (fildes, TCOOF
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Dunistd.h58 extern int pipe _ANSI_ARGS_((int *fildes));
/macosx-10.10.1/tcl-105/tcl84/tcl/compat/
H A Dunistd.h58 extern int pipe _ANSI_ARGS_((int *fildes));
/macosx-10.10.1/tcl-105/tk/tk/compat/
H A Dunistd.h58 extern int pipe _ANSI_ARGS_((int *fildes));
/macosx-10.10.1/tcl-105/tk84/tk/compat/
H A Dunistd.h58 extern int pipe _ANSI_ARGS_((int *fildes));
/macosx-10.10.1/emacs-93/emacs/src/
H A Dsysdep.c3361 emacs_read (fildes, buf, nbyte)
3362 int fildes;
3368 while ((rtnval = read (fildes, buf, nbyte)) == -1
3375 emacs_write (fildes, buf, nbyte)
3376 int fildes;
3386 rtnval = write (fildes, buf, nbyte);
4305 sys_read (fildes, buf, nbyte)
4306 int fildes;
4310 return read (fildes, buf, (nbyte < MAXIOSIZE ? nbyte : MAXIOSIZE));
4315 sys_write (fildes, bu
[all...]
H A Dmac.c2058 whether two fildes point to different i-nodes to prevent copying
2063 fstat (int fildes, struct stat *buf)
2066 buf->st_ino = fildes;
2333 sys_read (int fildes, char *buf, int count)
2335 if (fildes == 0) /* this should not be used for console input */
2339 return _read (fildes, buf, count);
2341 return read (fildes, buf, count);
2348 sys_write (int fildes, const char *buf, int count)
2350 if (fildes == DEV_NULL_FD)
2354 return _write (fildes, bu
2059 fstat(int fildes, struct stat *buf) argument
2329 sys_read(int fildes, char *buf, int count) argument
2344 sys_write(int fildes, const char *buf, int count) argument
3321 isatty(int fildes) argument
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dexecute_cmd.c1395 int prev, fildes[2], new_bitmap_size, dummyfd, ignore_return, exec_result; local
1413 if (pipe (fildes) < 0)
1429 code, the read end of the pipe (fildes[0]) stays open
1432 that it should close fildes[0] after forking, so it
1439 /* We need fd_bitmap to be at least as big as fildes[0].
1440 If fildes[0] is less than fds_to_close->size, then
1442 new_bitmap_size = (fildes[0] < fds_to_close->size)
1444 : fildes[0] + 8;
1452 fd_bitmap->bitmap[fildes[0]] = 1;
1463 dummyfd = fildes[
[all...]
/macosx-10.10.1/procmail-14/procmail/src/
H A Dincludes.h460 #define ftruncate(fildes,length) (-1)
/macosx-10.10.1/libclosure-65/objectTests/
H A Dtest.pl142 ssize_t hacked_write(int fildes, const void *buf, size_t nbyte)
148 return write(fildes, buf, nbyte);
/macosx-10.10.1/objc4-646/test/
H A Dtest.pl143 ssize_t hacked_write(int fildes, const void *buf, size_t nbyte)
149 return write(fildes, buf, nbyte);
/macosx-10.10.1/ruby-106/ruby/
H A Dio.c271 rb_cloexec_pipe(int fildes[2]) argument
278 ret = pipe2(fildes, O_CLOEXEC);
284 ret = pipe(fildes);
288 ret = pipe(fildes);
291 ret = pipe(fildes);
295 if (ret == 0 && fildes[1] == -1) {
296 close(fildes[0]);
297 fildes[0] = -1;
302 rb_maygvl_fd_fix_cloexec(fildes[0]);
303 rb_maygvl_fd_fix_cloexec(fildes[
[all...]
/macosx-10.10.1/ruby-106/ruby/include/ruby/
H A Dintern.h519 int rb_cloexec_pipe(int fildes[2]);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/
H A Dconfigure25477 static int fildes[2];
25491 FD_SET(fildes[0], &rfds);
25511 if(pipe(&fildes[0])) {
[all...]

Completed in 466 milliseconds