Searched refs:shutdown (Results 1 - 25 of 70) sorted by relevance

123

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dinit.h37 * A startup/shutdown function
39 * Startup and shutdown functions may be called multiple times, as
40 * part of the calls to startup() and shutdown().
44 void ( * shutdown ) ( int booting ); member in struct:startup_fn
47 /** Startup/shutdown function table */
50 /** Declare a startup/shutdown function */
54 /** @defgroup startfn_order Startup/shutdown function ordering
70 extern void shutdown ( int booting );
77 shutdown ( 1 );
85 shutdown (
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dinit.c26 * Initialisation, startup and shutdown routines
41 * shutdown path.
55 * probing devices. You may call startup() and shutdown() multiple
80 * again after calling shutdown().
85 void shutdown ( int flags ) { function
91 /* Call registered shutdown functions (in reverse order) */
93 if ( startup_fn->shutdown )
94 startup_fn->shutdown ( flags );
H A Ddevice.c98 DBG ( "Refusing to remove devices on shutdown\n" );
110 .shutdown = remove_devices,
H A Dserial.c253 .shutdown = serial_fini,
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/i86xpv/xdt/
H A Dtst.schedenable.ksh63 xdt:sched::shutdown-poweroff,
64 xdt:sched::shutdown-reboot,
65 xdt:sched::shutdown-suspend,
66 xdt:sched::shutdown-crash
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dshutdown.c2 Implement the shutdown API.
21 The shutdown routine stops socket receive and transmit operations.
24 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/shutdown.html">POSIX</a>
29 @param [in] how Which operations to shutdown
36 shutdown ( function
/vbox/src/VBox/Frontends/VirtualBox/src/net/
H A DUIUpdateManager.h37 static void shutdown();
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Drbg.c103 /** RBG shutdown function */
113 .shutdown = rbg_shutdown_fn,
/vbox/src/VBox/Devices/PC/ipxe/src/net/infiniband/
H A Dib_cmrc.c89 struct process shutdown; member in struct:ib_cmrc_connection
102 * This shutdown process will run some time after the call to
106 * The shutdown process holds an implicit reference on the CMRC
108 * shutdown process has run.
135 /* Schedule shutdown process */
136 process_add ( &cmrc->shutdown );
361 /** CMRC shutdown process descriptor */
363 PROC_DESC_ONCE ( struct ib_cmrc_connection, shutdown,
391 process_init_stopped ( &cmrc->shutdown, &ib_cmrc_shutdown_desc,
423 * to our shutdown proces
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/efi/
H A Dsnponly.c128 .shutdown = snponly_shutdown,
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/public/
H A DipcModule.h79 void (* shutdown) (void); member in struct:ipcModuleMethods
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcModuleReg.cpp84 // shutdown, each PRLibrary reference will be released. this ensures
86 // that library are shutdown.
202 // shutdown modules in reverse order
206 if (entry.methods->shutdown)
207 entry.methods->shutdown();
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/drivers/net/
H A Dundionly.c136 .shutdown = undionly_shutdown,
/vbox/src/VBox/Devices/PC/ipxe/src/interface/linux/
H A Dlinux_console.c145 /** Restores original terminal attributes on shutdown */
154 .shutdown = linux_console_shutdown,
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprtpool.c111 PRBool shutdown; member in struct:PRThreadPool
195 * execute jobs until shutdown
197 while (!tp->shutdown) {
201 DWORD unused, shutdown; local
208 &unused, &shutdown, &olp, INFINITE);
211 if (shutdown)
221 while (PR_CLIST_IS_EMPTY(&tp->jobq.list) && (!tp->shutdown)) {
226 if (tp->shutdown) {
328 while (!tp->shutdown) {
408 if (tp->shutdown) {
[all...]
/vbox/src/VBox/RDP/client-1.8.3/
H A Dctrl.c114 /* shutdown socket */
115 shutdown(sock, SHUT_RDWR);
210 shutdown(s, SHUT_RDWR);
524 shutdown(s, SHUT_RDWR);
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/firmware/pcbios/
H A Dhidemem.c219 .shutdown = unhide_etherboot,
/vbox/src/VBox/Devices/PC/ipxe/src/hci/
H A Dlinux_args.c189 .shutdown = linux_args_cleanup,
/vbox/src/VBox/NetworkServices/NetLib/
H A DVBoxNetBaseService.h67 void shutdown(void);
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/
H A DipcConnectionUnix.cpp136 PRBool shutdown; member in struct:ipcConnectionState
173 s->shutdown = PR_FALSE;
375 // check if we should exit this thread. delay processing a shutdown
379 if (s->shutdown && s->send_queue.IsEmpty() && s->callback_queue.IsEmpty())
530 gConnState->shutdown = PR_TRUE;
/vbox/src/VBox/Main/src-server/
H A DHostDnsService.h52 static void shutdown();
/vbox/src/libs/xpcom18a4/xpcom/build/
H A DnsXPCOMPrivate.h125 ShutdownFunc shutdown; member in struct:XPCOMFunctions
/vbox/src/VBox/Devices/Serial/
H A DDrvTCP.cpp247 * Signal shutdown of the listener thread.
253 int rc = shutdown(pThis->TCPServer, SHUT_RDWR);
306 int rc = shutdown(pThis->TCPConnection, SHUT_RDWR);
/vbox/src/libs/xpcom18a4/xpcom/glue/standalone/
H A DnsXPCOMGlue.cpp199 if (!xpcomFunctions.shutdown)
201 return xpcomFunctions.shutdown(servMgr);
451 * buffer for the environment string. This buffer will be leaked at shutdown!
482 // Default GRE startup/shutdown code
/vbox/src/VBox/ValidationKit/bootsectors/
H A Dbootsector-shutdown.asm39 ; Boch shutdown request - write "Shutdown" byte by byte to port 08900h.

Completed in 2460 milliseconds

123