Home
last modified time | relevance | path

Searched refs:apr_is_option_set (Results 1 – 3 of 3) sorted by relevance

/freebsd-10-stable/contrib/apr/network_io/unix/
Dsockopt.c87 if (apr_is_option_set(sock, APR_SO_NONBLOCK) != 1) { in apr_socket_timeout_set()
95 if (apr_is_option_set(sock, APR_SO_NONBLOCK) != 0) { in apr_socket_timeout_set()
126 if (on != apr_is_option_set(sock, APR_SO_KEEPALIVE)) { in apr_socket_opt_set()
137 if (on != apr_is_option_set(sock, APR_SO_DEBUG)) { in apr_socket_opt_set()
146 if (on != apr_is_option_set(sock, APR_SO_BROADCAST)) { in apr_socket_opt_set()
157 if (on != apr_is_option_set(sock, APR_SO_REUSEADDR)) { in apr_socket_opt_set()
183 if (apr_is_option_set(sock, APR_SO_NONBLOCK) != on) { in apr_socket_opt_set()
197 if (apr_is_option_set(sock, APR_SO_LINGER) != on) { in apr_socket_opt_set()
212 if (apr_is_option_set(sock, APR_TCP_DEFER_ACCEPT) != on) { in apr_socket_opt_set()
228 if (apr_is_option_set(sock, APR_TCP_NODELAY) != on) { in apr_socket_opt_set()
[all …]
Dsockets.c227 if (apr_is_option_set(sock, APR_SO_NONBLOCK) == 1) { in apr_socket_accept()
292 if (apr_is_option_set(sock, APR_TCP_NODELAY) == 1) { in apr_socket_accept()
297 if (apr_is_option_set(sock, APR_SO_NONBLOCK) == 1) { in apr_socket_accept()
/freebsd-10-stable/contrib/apr/include/arch/unix/
Dapr_arch_networkio.h130 #define apr_is_option_set(skt, option) \ macro