Lines Matching refs:sv
59 _socketpair(int family, int type, int protocol, int sv[2]) in _socketpair()
61 return (_socketpair_create(family, type, protocol, sv, SOV_DEFAULT)); in _socketpair()
68 _socketpair_bsd(int family, int type, int protocol, int sv[2]) in _socketpair_bsd()
70 return (_socketpair_create(family, type, protocol, sv, SOV_SOCKBSD)); in _socketpair_bsd()
74 _socketpair_svr4(int family, int type, int protocol, int sv[2]) in _socketpair_svr4()
76 return (_socketpair_create(family, type, protocol, sv, in _socketpair_svr4()
81 __xnet_socketpair(int family, int type, int protocol, int sv[2]) in __xnet_socketpair()
83 return (_socketpair_create(family, type, protocol, sv, in __xnet_socketpair()
88 _socketpair_create(int family, int type, int protocol, int sv[2], int version) in _socketpair_create()
108 sv[0] = fd1; in _socketpair_create()
109 sv[1] = fd2; in _socketpair_create()
110 res = _so_socketpair(sv); in _socketpair_create()
125 if (sv[0] != fd1) in _socketpair_create()
127 if (sv[1] != fd2) in _socketpair_create()