endpoint_sd        71 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     endpoint->endpoint_sd = -1;
endpoint_sd       136 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     if( -1 != btl_endpoint->endpoint_sd ) {
endpoint_sd       137 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         getsockname(btl_endpoint->endpoint_sd, (struct sockaddr*)&inaddr, &addrlen);
endpoint_sd       149 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         getpeername(btl_endpoint->endpoint_sd, (struct sockaddr*)&inaddr, &addrlen);
endpoint_sd       162 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         if((flags = fcntl(btl_endpoint->endpoint_sd, F_GETFL, 0)) < 0) {
endpoint_sd       169 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         if(getsockopt(btl_endpoint->endpoint_sd, SOL_SOCKET, SO_SNDBUF, (char *)&sndbuf, &obtlen) < 0) {
endpoint_sd       178 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         if(getsockopt(btl_endpoint->endpoint_sd, SOL_SOCKET, SO_RCVBUF, (char *)&rcvbuf, &obtlen) < 0) {
endpoint_sd       187 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         if(getsockopt(btl_endpoint->endpoint_sd, IPPROTO_TCP, TCP_NODELAY, (char *)&nodelay, &obtlen) < 0) {
endpoint_sd       218 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c                      msg, btl_endpoint->endpoint_sd, status,
endpoint_sd       243 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c                    btl_endpoint->endpoint_sd,
endpoint_sd       254 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c                    btl_endpoint->endpoint_sd,
endpoint_sd       286 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c                mca_btl_tcp2_frag_send(frag, btl_endpoint->endpoint_sd)) {
endpoint_sd       316 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         int retval = send(btl_endpoint->endpoint_sd, (const char *)ptr+cnt, size-cnt, 0);
endpoint_sd       377 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     if((btl_endpoint->endpoint_sd < 0) ||
endpoint_sd       381 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         btl_endpoint->endpoint_sd = sd;
endpoint_sd       414 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     int sd = btl_endpoint->endpoint_sd;
endpoint_sd       418 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     } while ( opal_atomic_cmpset( &(btl_endpoint->endpoint_sd), sd, -1 ) );
endpoint_sd       447 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c                    btl_endpoint->endpoint_sd,
endpoint_sd       471 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         int retval = recv(btl_endpoint->endpoint_sd, (char *)ptr+cnt, size-cnt, 0);
endpoint_sd       483 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c                            btl_endpoint->endpoint_sd, strerror(opal_socket_errno), opal_socket_errno));
endpoint_sd       573 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     btl_endpoint->endpoint_sd = socket(af_family, SOCK_STREAM, 0);
endpoint_sd       574 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     if (btl_endpoint->endpoint_sd < 0) {
endpoint_sd       580 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     mca_btl_tcp2_set_socket_options(btl_endpoint->endpoint_sd);
endpoint_sd       586 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     if((flags = fcntl(btl_endpoint->endpoint_sd, F_GETFL, 0)) < 0) {
endpoint_sd       591 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c         if(fcntl(btl_endpoint->endpoint_sd, F_SETFL, flags) < 0)
endpoint_sd       604 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     if(connect(btl_endpoint->endpoint_sd, (struct sockaddr*)&endpoint_addr, addrlen) < 0) {
endpoint_sd       652 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     if(getsockopt(btl_endpoint->endpoint_sd, SOL_SOCKET, SO_ERROR, (char *)&so_error, &so_length) < 0) {
endpoint_sd       692 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c     if( sd != btl_endpoint->endpoint_sd )
endpoint_sd       737 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c             if( mca_btl_tcp_frag_recv(frag, btl_endpoint->endpoint_sd) == false ) {
endpoint_sd       807 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.c             if(mca_btl_tcp2_frag_send(frag, btl_endpoint->endpoint_sd) == false) {
endpoint_sd        55 contrib/build-mca-comps-outside-of-tree/btl_tcp2_endpoint.h     int                             endpoint_sd;           /**< socket connection to endpoint */
endpoint_sd        83 opal/mca/btl/tcp/btl_tcp_endpoint.c     endpoint->endpoint_sd = -1;
endpoint_sd       165 opal/mca/btl/tcp/btl_tcp_endpoint.c     getsockname(btl_endpoint->endpoint_sd, (struct sockaddr*)&inaddr, &addrlen);
endpoint_sd       179 opal/mca/btl/tcp/btl_tcp_endpoint.c     getpeername(btl_endpoint->endpoint_sd, (struct sockaddr*)&inaddr, &addrlen);
endpoint_sd       194 opal/mca/btl/tcp/btl_tcp_endpoint.c     used = snprintf(outmsg, DEBUG_LENGTH, "[%d", btl_endpoint->endpoint_sd);
endpoint_sd       224 opal/mca/btl/tcp/btl_tcp_endpoint.c         if((flags = fcntl(btl_endpoint->endpoint_sd, F_GETFL, 0)) < 0) {
endpoint_sd       231 opal/mca/btl/tcp/btl_tcp_endpoint.c         if(getsockopt(btl_endpoint->endpoint_sd, SOL_SOCKET, SO_SNDBUF, (char *)&sndbuf, &obtlen) < 0) {
endpoint_sd       240 opal/mca/btl/tcp/btl_tcp_endpoint.c         if(getsockopt(btl_endpoint->endpoint_sd, SOL_SOCKET, SO_RCVBUF, (char *)&rcvbuf, &obtlen) < 0) {
endpoint_sd       249 opal/mca/btl/tcp/btl_tcp_endpoint.c         if(getsockopt(btl_endpoint->endpoint_sd, IPPROTO_TCP, TCP_NODELAY, (char *)&nodelay, &obtlen) < 0) {
endpoint_sd       309 opal/mca/btl/tcp/btl_tcp_endpoint.c                     btl_endpoint->endpoint_sd,
endpoint_sd       319 opal/mca/btl/tcp/btl_tcp_endpoint.c                     btl_endpoint->endpoint_sd,
endpoint_sd       351 opal/mca/btl/tcp/btl_tcp_endpoint.c                mca_btl_tcp_frag_send(frag, btl_endpoint->endpoint_sd)) {
endpoint_sd       389 opal/mca/btl/tcp/btl_tcp_endpoint.c     int ret = mca_btl_tcp_send_blocking(btl_endpoint->endpoint_sd, data, size);
endpoint_sd       455 opal/mca/btl/tcp/btl_tcp_endpoint.c     if((btl_endpoint->endpoint_sd < 0) ||
endpoint_sd       459 opal/mca/btl/tcp/btl_tcp_endpoint.c         btl_endpoint->endpoint_sd = btl_endpoint->endpoint_sd_next;
endpoint_sd       518 opal/mca/btl/tcp/btl_tcp_endpoint.c     if(btl_endpoint->endpoint_sd < 0)
endpoint_sd       537 opal/mca/btl/tcp/btl_tcp_endpoint.c     CLOSE_THE_SOCKET(btl_endpoint->endpoint_sd);
endpoint_sd       538 opal/mca/btl/tcp/btl_tcp_endpoint.c     btl_endpoint->endpoint_sd = -1;
endpoint_sd       597 opal/mca/btl/tcp/btl_tcp_endpoint.c     retval = mca_btl_tcp_recv_blocking(btl_endpoint->endpoint_sd, &hs_msg, sizeof(hs_msg));
endpoint_sd       688 opal/mca/btl/tcp/btl_tcp_endpoint.c     assert( btl_endpoint->endpoint_sd < 0 );
endpoint_sd       689 opal/mca/btl/tcp/btl_tcp_endpoint.c     btl_endpoint->endpoint_sd = socket(af_family, SOCK_STREAM, 0);
endpoint_sd       690 opal/mca/btl/tcp/btl_tcp_endpoint.c     if (btl_endpoint->endpoint_sd < 0) {
endpoint_sd       696 opal/mca/btl/tcp/btl_tcp_endpoint.c     mca_btl_tcp_set_socket_options(btl_endpoint->endpoint_sd);
endpoint_sd       702 opal/mca/btl/tcp/btl_tcp_endpoint.c     if((flags = fcntl(btl_endpoint->endpoint_sd, F_GETFL, 0)) < 0) {
endpoint_sd       711 opal/mca/btl/tcp/btl_tcp_endpoint.c         if(fcntl(btl_endpoint->endpoint_sd, F_SETFL, flags) < 0) {
endpoint_sd       732 opal/mca/btl/tcp/btl_tcp_endpoint.c         if (bind(btl_endpoint->endpoint_sd, (struct sockaddr*) &btl_endpoint->endpoint_btl->tcp_ifaddr,
endpoint_sd       739 opal/mca/btl/tcp/btl_tcp_endpoint.c             CLOSE_THE_SOCKET(btl_endpoint->endpoint_sd);
endpoint_sd       746 opal/mca/btl/tcp/btl_tcp_endpoint.c         if (bind(btl_endpoint->endpoint_sd, (struct sockaddr*) &btl_endpoint->endpoint_btl->tcp_ifaddr,
endpoint_sd       753 opal/mca/btl/tcp/btl_tcp_endpoint.c             CLOSE_THE_SOCKET(btl_endpoint->endpoint_sd);
endpoint_sd       764 opal/mca/btl/tcp/btl_tcp_endpoint.c     if(0 == connect(btl_endpoint->endpoint_sd, (struct sockaddr*)&endpoint_addr, addrlen)) {
endpoint_sd       828 opal/mca/btl/tcp/btl_tcp_endpoint.c     if(getsockopt(btl_endpoint->endpoint_sd, SOL_SOCKET, SO_ERROR, (char *)&so_error, &so_length) < 0) {
endpoint_sd       891 opal/mca/btl/tcp/btl_tcp_endpoint.c     if( sd != btl_endpoint->endpoint_sd )
endpoint_sd       972 opal/mca/btl/tcp/btl_tcp_endpoint.c             if(mca_btl_tcp_frag_recv(frag, btl_endpoint->endpoint_sd) == false) {
endpoint_sd      1040 opal/mca/btl/tcp/btl_tcp_endpoint.c             if(mca_btl_tcp_frag_send(frag, btl_endpoint->endpoint_sd) == false) {
endpoint_sd        54 opal/mca/btl/tcp/btl_tcp_endpoint.h     int                             endpoint_sd;           /**< socket connection to endpoint */