Home | History | Annotate | Download | only in fd_interposing

Lines Matching defs:socketpair

690 // socketpair() interpose function
693 socketpair$__interposed__ (int domain, int type, int protocol, int fds[2])
701 const int err = socketpair (domain, type, protocol, fds);
703 StringSP description_sp(new String ("pid=%i: socketpair (domain=%i, type=%i, protocol=%i, {fd=%i, fd=%i}) -> err=%i", pid, domain, type, protocol, fds[0], fds[1], err));
714 return socketpair (domain, type, protocol, fds);
1144 DYLD_INTERPOSE(socketpair$__interposed__, socketpair);