Lines Matching refs:addr

137                     FAR const struct sockaddr *addr, socklen_t addrlen);
139 FAR struct sockaddr *addr, FAR socklen_t *addrlen);
141 FAR struct sockaddr *addr, FAR socklen_t *addrlen);
144 FAR const struct sockaddr *addr, socklen_t addrlen);
146 FAR struct sockaddr *addr, FAR socklen_t *addrlen,
531 * bind() gives the socket 'psock' the local address 'addr'. 'addr' is
538 * addr Socket local address
539 * addrlen Length of 'addr'
559 int psock_bind(struct socket *psock, const struct sockaddr *addr,
610 * On return, the 'addr' structure is filled in with the address of the
612 * of the structure pointed to by 'addr'; on return it will contain the
623 * addr Receives the address of the connecting client
624 * addrlen Input: allocated size of 'addr', Return: returned size of 'addr'
648 * The addr parameter is not in a writable part of the user address
659 int psock_accept(FAR struct socket *psock, FAR struct sockaddr *addr,
667 * to the address specified by 'addr'. The addrlen argument specifies
668 * the size of 'addr'. The format of the address in 'addr' is
671 * If the socket 'psock' is of type SOCK_DGRAM then 'addr' is the address
675 * that is bound to the address specified by 'addr'.
685 * addr Server address (form depends on type of socket)
686 * addrlen Length of actual 'addr'
732 int psock_connect(struct socket *psock, const struct sockaddr *addr,
1042 * pointed to by the 'addr' argument, and stores the length of this
1053 * addr sockaddr structure to receive data [out]
1057 * On success, 0 is returned, the 'addr' argument points to the address
1073 int psock_getsockname(FAR struct socket *psock, FAR struct sockaddr *addr,
1082 * pointed to by the 'addr' argument, and stores the length of this address
1093 * addr sockaddr structure to receive data [out]
1097 * On success, 0 is returned, the 'addr' argument points to the address
1113 int psock_getpeername(FAR struct socket *psock, FAR struct sockaddr *addr,