Lines Matching refs:svc_xports
68 SVCXPRT **svc_xports;
69 static int nsvc_xports; /* total number of svc_xports allocated */
743 /* VARIABLES PROTECTED BY svc_fd_lock: svc_xports, svc_fdset */
746 if (svc_xports == NULL) {
748 svc_xports = calloc(FD_INCREMENT, sizeof (SVCXPRT *));
749 if (svc_xports == NULL) {
770 SVCXPRT **tmp_xprts = svc_xports;
773 tmp_xprts = realloc(svc_xports,
780 svc_xports = tmp_xprts;
781 (void) memset(&svc_xports[nsvc_xports], 0,
786 svc_xports[fd] = (SVCXPRT *)xprt;
831 if ((fd < nsvc_xports) && (svc_xports[fd] == xprt)) {
832 svc_xports[fd] = NULL;
1354 if ((fd >= nsvc_xports) || (xprt = svc_xports[fd]) == NULL) {
1380 if (xprt != svc_xports[fd]) {