Lines Matching refs:socket_softc
297 struct uart_socket_softc *socket_softc = (struct uart_socket_softc *) in uart_tcp_listener() local
299 struct uart_softc *sc = socket_softc->softc; in uart_tcp_listener()
318 sc->mev = mevent_add(sc->tty.rfd, EVF_READ, socket_softc->drain, in uart_tcp_listener()
319 socket_softc->arg); in uart_tcp_listener()
429 struct uart_socket_softc *socket_softc = NULL; in uart_tcp_backend() local
476 if ((socket_softc = calloc(1, sizeof(struct uart_socket_softc))) == in uart_tcp_backend()
482 socket_softc->softc = sc; in uart_tcp_backend()
483 socket_softc->drain = drain; in uart_tcp_backend()
484 socket_softc->arg = arg; in uart_tcp_backend()
498 socket_softc)) == NULL) in uart_tcp_backend()
506 if (socket_softc != NULL) in uart_tcp_backend()
507 free(socket_softc); in uart_tcp_backend()