• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/sys/

Lines Matching refs:on

19  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
69 @discussion Accepts an incoming connection on a socket. See 'man 2
72 @param so The listening socket you'd like to accept a connection on.
82 occurs on the socket. This may be NULL.
86 @result 0 on success otherwise the errno error.
97 @result 0 on success otherwise the errno error.
103 @discussion Initiates a connection on the socket. See 'man 2
112 @result 0 on success, EINPROGRESS for a non-blocking connect that
128 @discussion Allows a caller to wait on a socket connect.
131 @result 0 on success otherwise the errno error. EINPROGRESS will be
145 @result 0 on success otherwise the errno error.
157 @result 0 on success otherwise the errno error.
170 @result 0 on success otherwise the errno error.
177 @discussion Performs an ioctl operation on a socket. See 'man 2 ioctl'.
181 @result 0 on success otherwise the errno error.
193 @result 0 on success otherwise the errno error.
204 @result 0 on success otherwise the errno error.
217 @result 0 on success, EWOULDBLOCK if non-blocking and operation
238 @result 0 on success, EWOULDBLOCK if non-blocking and operation
246 @discussion Send data on a socket. Similar to sendmsg. See 'man 2
253 @result 0 on success, EWOULDBLOCK if non-blocking and operation
261 @discussion Send data in an mbuf on a socket. Similar to sock_send
269 @result 0 on success, EWOULDBLOCK if non-blocking and operation
282 @result 0 on success otherwise the errno error.
295 occurs on the socket. This may be NULL.
298 @result 0 on success otherwise the errno error.
317 @param so The socket to close. Increment a retain count on the
331 on a socket acquired with sock_retain. When the last retain
341 @param so The socket on which to modify the SS_PRIV flag.
342 @param on Indicate whether or not the SS_PRIV flag should be set.
343 @result 0 on success otherwise the errno error.
345 errno_t sock_setpriv(socket_t so, int on);
359 perform operations on a socket will not wait for completion.
378 @result 0 on success otherwise the errno error.
385 @discussion Disables interrupt on socket buffers (sets SB_NOINTR on
388 @param on Indicate whether or not the SB_NOINTR flag should be set.
389 @result 0 on success otherwise the errno error.
391 errno_t sock_nointerrupt(socket_t so, int on);
425 @result 0 on success otherwise the errno error.