Lines Matching defs:ret
345 int ret;
353 ret = 0;
356 ret = 1;
360 return ret;
439 struct lwip_sock *ret = tryget_socket_unconn_nouse(fd);
440 if (ret != NULL) {
441 if (!sock_inc_used(ret)) {
445 return ret;
452 struct lwip_sock *ret = tryget_socket_unconn_nouse(fd);
453 if (ret != NULL) {
454 if (!sock_inc_used_locked(ret)) {
458 return ret;
1246 ssize_t ret;
1255 ret = lwip_recv_tcp(sock, mem, len, flags);
1256 lwip_recv_tcp_from(sock, from, fromlen, "lwip_recvfrom", s, ret);
1258 return ret;
1283 ret = (ssize_t)LWIP_MIN(LWIP_MIN(len, datagram_len), SSIZE_MAX);
1291 return ret;
3925 int ret = -1;
3934 ret = netconn_is_nonblocking(sock->conn) ? O_NONBLOCK : 0;
3966 ret |= (op_mode == (O_RDONLY | O_WRONLY)) ? O_RDWR : op_mode;
3975 ret = 0;
3987 return ret;
4007 const char *ret = NULL;
4016 ret = ip4addr_ntoa_r((const ip4_addr_t *)src, dst, size_int);
4017 if (ret == NULL) {
4024 ret = ip6addr_ntoa_r((const ip6_addr_t *)src, dst, size_int);
4025 if (ret == NULL) {
4034 return ret;