Lines Matching defs:lsock
4556 vsock_t *lsock = emalloc(sizeof(*lsock));
4558 lsock->fd = fd;
4559 lsock->type = type;
4561 LINK_SLIST(fd_list, lsock, link);
4572 vsock_t *lsock;
4574 UNLINK_EXPR_SLIST(lsock, fd_list, fd ==
4577 if (NULL == lsock)
4580 switch (lsock->type) {
4588 closesocket(lsock->fd);
4592 closeserial((int)lsock->fd);
4598 (int)lsock->type);
4602 free(lsock);