Lines Matching refs:optval
1245 int at_getsockopt(int socket, int level, int optname, void *optval, socklen_t *optlen) in at_getsockopt() argument
1250 if (optval == RT_NULL || optlen == RT_NULL) in at_getsockopt()
1271 ((struct timeval *)(optval))->tv_sec = (timeout) / 1000U; in at_getsockopt()
1272 ((struct timeval *)(optval))->tv_usec = (timeout % 1000U) * 1000U; in at_getsockopt()
1277 ((struct timeval *) optval)->tv_sec = timeout / 1000U; in at_getsockopt()
1278 ((struct timeval *) optval)->tv_usec = (timeout % 1000U) * 1000U; in at_getsockopt()
1297 int at_setsockopt(int socket, int level, int optname, const void *optval, socklen_t optlen) in at_setsockopt() argument
1301 if (optval == RT_NULL) in at_setsockopt()
1321 sock->recv_timeout = ((const struct timeval *) optval)->tv_sec * 1000 in at_setsockopt()
1322 + ((const struct timeval *) optval)->tv_usec / 1000; in at_setsockopt()
1326 sock->send_timeout = ((const struct timeval *) optval)->tv_sec * 1000 in at_setsockopt()
1327 + ((const struct timeval *) optval)->tv_usec / 1000; in at_setsockopt()