Lines Matching refs:on

19  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
74 @discussion Accepts an incoming connection on a socket. See 'man 2
77 @param so The listening socket you'd like to accept a connection on.
87 occurs on the socket. This may be NULL.
91 @result 0 on success otherwise the errno error.
102 @result 0 on success otherwise the errno error.
108 @discussion Initiates a connection on the socket. See 'man 2
117 @result 0 on success, EINPROGRESS for a non-blocking connect that
133 @discussion Allows a caller to wait on a socket connect.
136 @result 0 on success otherwise the errno error. EINPROGRESS will be
150 @result 0 on success otherwise the errno error.
162 @result 0 on success otherwise the errno error.
175 @result 0 on success otherwise the errno error.
182 @discussion Performs an ioctl operation on a socket. See 'man 2 ioctl'.
186 @result 0 on success otherwise the errno error.
198 @result 0 on success otherwise the errno error.
216 @result 0 on success otherwise the errno error.
222 set on a stream.
231 @result 0 on success otherwise the errno error.
252 @result 0 on success otherwise the errno error.
265 @result 0 on success, EWOULDBLOCK if non-blocking and operation
286 @result 0 on success, EWOULDBLOCK if non-blocking and operation
294 @discussion Send data on a socket. Similar to sendmsg. See 'man 2
301 @result 0 on success, EWOULDBLOCK if non-blocking and operation
309 @discussion Send data in an mbuf on a socket. Similar to sock_send
317 @result 0 on success, EWOULDBLOCK if non-blocking and operation
332 @result 0 on success otherwise the errno error.
345 occurs on the socket. This may be NULL.
348 @result 0 on success otherwise the errno error.
367 @param so The socket to close. Increment a retain count on the
381 on a socket acquired with sock_retain. When the last retain
391 @param so The socket on which to modify the SS_PRIV flag.
392 @param on Indicate whether or not the SS_PRIV flag should be set.
393 @result 0 on success otherwise the errno error.
395 extern errno_t sock_setpriv(socket_t so, int on);
409 perform operations on a socket will not wait for completion.
428 @result 0 on success otherwise the errno error.
435 @discussion Disables interrupt on socket buffers (sets SB_NOINTR on
438 @param on Indicate whether or not the SB_NOINTR flag should be set.
439 @result 0 on success otherwise the errno error.
441 extern errno_t sock_nointerrupt(socket_t so, int on);
475 @result 0 on success otherwise the errno error.
490 occurs on the socket. This may be set to NULL to disable
493 Note: When this function is used on a socket passed from userspace
494 it is crucial to call sock_retain() on the socket otherwise a callback
495 could be dispatched on a closed socket and cause a crash.