Lines Matching refs:lsock
4553 vsock_t *lsock = emalloc(sizeof(*lsock)); local
4555 lsock->fd = fd;
4556 lsock->type = type;
4558 LINK_SLIST(fd_list, lsock, link);
4569 vsock_t *lsock; local
4571 UNLINK_EXPR_SLIST(lsock, fd_list, fd ==
4574 if (NULL == lsock)
4577 switch (lsock->type) {
4585 closesocket(lsock->fd);
4589 closeserial((int)lsock->fd);
4595 (int)lsock->type);
4599 free(lsock);