| H A D | socketpair.c | 19 static int _uds_socketpair(int type, int protocol, int sv[2]); 25 __socketpair(int domain, int type, int protocol, int sv[2]) in __socketpair() argument 32 m.m_lc_vfs_socket.protocol = protocol; in __socketpair() 43 socketpair(int domain, int type, int protocol, int sv[2]) in socketpair() argument 47 r = __socketpair(domain, type, protocol, sv); in socketpair() 53 domain, type, protocol); in socketpair() 57 return _uds_socketpair(type, protocol, sv); in socketpair() 63 static int _uds_socketpair(int type, int protocol, int sv[2]) in _uds_socketpair() argument 74 if (protocol != 0) in _uds_socketpair() 77 fprintf(stderr, "socketpair(uds): bad protocol %d\n", protocol); in _uds_socketpair()
|