Lines Matching refs:othr_netio

66 static pr_netio_t *default_othr_netio = NULL, *othr_netio = NULL;  variable
310 if (othr_netio != NULL) { in pr_netio_abort()
312 othr_netio->owner_name, nstrm_mode); in pr_netio_abort()
313 (othr_netio->abort)(nstrm); in pr_netio_abort()
373 if (othr_netio != NULL) { in pr_netio_close()
375 othr_netio->owner_name, nstrm_mode); in pr_netio_close()
376 res = (othr_netio->close)(nstrm); in pr_netio_close()
524 if (othr_netio != NULL) { in netio_lingering_close()
526 othr_netio->owner_name, nstrm_mode); in netio_lingering_close()
527 res = (othr_netio->close)(nstrm); in netio_lingering_close()
697 if (othr_netio != NULL) { in pr_netio_open()
699 othr_netio, sizeof(pr_netio_t *)) < 0) { in pr_netio_open()
705 othr_netio->owner_name, nstrm_mode); in pr_netio_open()
706 res = (othr_netio->open)(nstrm, fd, mode); in pr_netio_open()
708 res->strm_netio = othr_netio; in pr_netio_open()
778 if (othr_netio != NULL) { in pr_netio_reopen()
780 othr_netio->owner_name, nstrm_mode); in pr_netio_reopen()
781 res = (othr_netio->reopen)(nstrm, fd, mode); in pr_netio_reopen()
873 if (othr_netio != NULL) { in pr_netio_poll()
875 "using %s poll() for other %s stream", othr_netio->owner_name, in pr_netio_poll()
877 res = (othr_netio->poll)(nstrm); in pr_netio_poll()
995 if (othr_netio != NULL) { in pr_netio_postopen()
997 "using %s postopen() for other %s stream", othr_netio->owner_name, in pr_netio_postopen()
999 res = (othr_netio->postopen)(nstrm); in pr_netio_postopen()
1167 if (othr_netio != NULL) { in pr_netio_write()
1170 othr_netio->owner_name, nstrm_mode); in pr_netio_write()
1171 bwritten = (othr_netio->write)(nstrm, buf, buflen); in pr_netio_write()
1303 if (othr_netio != NULL) { in pr_netio_write_async()
1305 "using %s write() for other %s stream", othr_netio->owner_name, in pr_netio_write_async()
1307 bwritten = (othr_netio->write)(nstrm, buf, buflen); in pr_netio_write_async()
1423 if (othr_netio != NULL) { in pr_netio_read()
1426 othr_netio->owner_name, nstrm_mode); in pr_netio_read()
1427 bread = (othr_netio->read)(nstrm, buf, buflen); in pr_netio_read()
1571 if (othr_netio != NULL) { in pr_netio_shutdown()
1573 "using %s shutdown() for other %s stream", othr_netio->owner_name, in pr_netio_shutdown()
1575 res = (othr_netio->shutdown)(nstrm, how); in pr_netio_shutdown()
1937 othr_netio = netio; in pr_register_netio()
1960 othr_netio = NULL; in pr_unregister_netio()
1984 netio = othr_netio; in pr_get_netio()