Searched refs:shutdown (Results 51 - 75 of 237) sorted by relevance

12345678910

/freebsd-11-stable/bin/cat/
H A Dcat.c372 if (shutdown(fd, SHUT_WR) == -1)
376 if (shutdown(fd, SHUT_RD) == -1)
/freebsd-11-stable/sys/kern/
H A Dcapabilities.conf657 shutdown
/freebsd-11-stable/sys/compat/freebsd32/
H A Dcapabilities.conf251 shutdown
/freebsd-11-stable/usr.bin/rsh/
H A Drsh.c230 (void)shutdown(rem, SHUT_WR);
285 (void)shutdown(rem, SHUT_WR);
/freebsd-11-stable/sys/dev/ral/
H A Dif_ral_pci.c111 void (*shutdown)(void *); member in struct:ral_opns
298 (*psc->sc_opns->shutdown)(psc);
/freebsd-11-stable/sys/cam/ctl/
H A Dctl_backend.c107 /* Call the backend's shutdown routine. */
108 if (be->shutdown != NULL) {
109 if ((error = be->shutdown()) != 0) {
110 printf("%s backend shutdown error: %d\n",
H A Dctl_frontend.c110 /* Call the frontend's shutdown routine.*/
111 if (fe->shutdown != NULL) {
112 if ((error = fe->shutdown()) != 0) {
113 printf("%s frontend shutdown error: %d\n",
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dtask.h130 void (*shutdown)(isc_task_t *task); member in struct:isc_taskmethods
241 * an empty event queue), and has not been shutdown, the task will be
242 * shutdown.
245 * the task has been shutdown,
282 * idle (has an empty event queue), and has not been shutdown,
283 * the task will be shutdown.
286 * the task has been shutdown,
444 * Send a shutdown event with action 'action' and argument 'arg' when
445 * 'task' is shutdown.
459 *\li When the task is shutdown, shutdow
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_et.c108 shutdown(pair[0], SHUT_WR);
/freebsd-11-stable/sys/netgraph/
H A Dng_UI.c85 .shutdown = ng_UI_shutdown,
/freebsd-11-stable/tools/regression/netinet/tcpsocktimewait/
H A Dtcpsocktimewait.c98 if (shutdown(sock, SHUT_RDWR) < 0) {
102 err(-1, "shutdown");
/freebsd-11-stable/contrib/libpcap/lbl/
H A Dos-sunos4.h149 int shutdown(int, int);
/freebsd-11-stable/contrib/tcpdump/lbl/
H A Dos-sunos4.h151 int shutdown(int, int);
/freebsd-11-stable/contrib/ofed/librdmacm/examples/
H A Dcommon.h51 #define rs_shutdown(s,h) use_rs ? rshutdown(s,h) : shutdown(s,h)
H A Drcopy.c531 goto shutdown;
550 shutdown:
/freebsd-11-stable/sys/dev/bnxt/
H A Dbnxt_hwrm.h50 int bnxt_hwrm_func_drv_unrgtr(struct bnxt_softc *softc, bool shutdown);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcCBindings.cpp145 auto Err = J->shutdown();
/freebsd-11-stable/crypto/openssh/
H A Dnchan.c493 /* shutdown failure is allowed if write failed already */
496 if (shutdown(c->sock, SHUT_WR) < 0)
498 "shutdown() failed for fd %d: %.100s",
515 * shutdown(sock, SHUT_READ) may return ENOTCONN if the
519 if (shutdown(c->sock, SHUT_RD) < 0
522 "shutdown() failed for fd %d [i%d o%d]: %.100s",
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dlistener.c70 void (*shutdown)(struct evconnlistener *); member in struct:evconnlistener_ops
148 NULL, /* shutdown */
269 if (lev->ops->shutdown)
270 lev->ops->shutdown(lev);
636 * shutdown work correctly on the accepted socket. */
728 iocp_listener_disable_impl(struct evconnlistener *lev, int shutdown) argument
742 if (shutdown)
749 if (shutdown && lev->flags & LEV_OPT_CLOSE_ON_FREE)
794 iocp_listener_destroy, /* shutdown */
/freebsd-11-stable/sys/sparc64/sbus/
H A Dsbus.c901 static int shutdown; local
904 if (shutdown != 0)
906 shutdown++;
915 static int shutdown; local
918 if (shutdown != 0)
920 shutdown++;
/freebsd-11-stable/sys/sparc64/pci/
H A Dpsycho.c165 0, "powerfail action (0: none, 1: shutdown (default), 2: debugger)");
802 static int shutdown; local
805 if (shutdown != 0)
807 shutdown++;
815 static int shutdown; local
818 if (shutdown != 0)
820 shutdown++;
/freebsd-11-stable/contrib/ofed/librdmacm/
H A Dpreload.c79 int (*shutdown)(int socket, int how); member in struct:socket_calls
402 real.shutdown = dlsym(RTLD_NEXT, "shutdown");
429 rs.shutdown = dlsym(RTLD_DEFAULT, "rshutdown");
659 real.shutdown(sfd, SHUT_RDWR);
732 real.shutdown(sfd, SHUT_RDWR);
993 int shutdown(int socket, int how) function
997 rshutdown(fd, how) : real.shutdown(fd, how);
/freebsd-11-stable/crypto/openssl/crypto/bio/
H A Dbio_lib.c88 bio->shutdown = 1;
526 new_bio->shutdown = bio->shutdown;
/freebsd-11-stable/sys/sys/
H A Dsyscall.mk100 shutdown.o \
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_pci.c279 if (pdev->pdrv->shutdown != NULL)
280 pdev->pdrv->shutdown(pdev);

Completed in 189 milliseconds

12345678910