Searched refs:shutdown (Results 1 - 25 of 34) sorted by last modified time

12

/haiku/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp1580 return socket->first_info->shutdown(socket->first_protocol, direction);
/haiku/src/tests/system/network/
H A Dunix_dgram_test.cpp443 status = shutdown(sock, SHUT_WR);
445 REPORT_ERROR("shutdown() failed: %s\n", strerror(errno));
465 status = shutdown(sock, SHUT_RD);
467 REPORT_ERROR("shutdown() failed: %s\n", strerror(errno));
/haiku/src/system/kernel/fs/
H A Dsocket.cpp395 return sStackInterface->shutdown(descriptor->u.socket, how);
649 shutdown(int socket, int how) function
/haiku/headers/private/net/
H A Dnet_socket.h113 int (*shutdown)(net_socket* socket, int direction); member in struct:net_socket_module_info
H A Dnet_protocol.h80 status_t (*shutdown)(net_protocol* self, int direction); member in struct:net_protocol_module_info
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixStreamEndpoint.cpp445 // Orderly write shutdown on our side.
543 // Either our socket was closed or read shutdown.
549 // Orderly shutdown or the peer closed the connection.
651 uint32 shutdown; local
654 // translate the direction into shutdown flags for our and the peer fifo
657 shutdown = UNIX_FIFO_SHUTDOWN_READ;
661 shutdown = 0;
665 shutdown = UNIX_FIFO_SHUTDOWN_READ;
680 // shutdown our FIFO
682 fReceiveFifo->Shutdown(shutdown);
[all...]
H A DUnixFifo.cpp369 UnixFifo::Shutdown(uint32 shutdown) argument
372 find_thread(NULL), this, shutdown);
374 fShutdown |= shutdown;
376 if (shutdown != 0) {
H A DUnixFifo.h123 void Shutdown(uint32 shutdown);
/haiku/src/bin/debug/strace/
H A Dnetwork.cpp123 Syscall *shutdown = get_syscall("_kern_shutdown_socket"); local
124 shutdown->GetParameter("how")->SetHandler(
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dksocket.h26 #define kshutdown shutdown
48 #define kshutdown shutdown
76 #define kshutdown (gSocket->shutdown)
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c3394 shutdown( hc->conn_fd, SHUT_WR );
/haiku/src/servers/registrar/
H A DShutdownProcess.cpp72 // The time span the app that has aborted the shutdown shall be displayed in
73 // the shutdown window before closing it automatically.
200 : BHandler("shutdown quit reply handler"),
289 // cancel shutdown button
290 AddButton(B_TRANSLATE("Cancel shutdown"));
646 BLooper("shutdown process"),
690 // If an error occurred (e.g. the shutdown process was cancelled), the
743 fInternalEventSemaphore = create_sem(0, "shutdown events");
758 fWorker = spawn_thread(_WorkerEntry, "shutdown worker",
897 if (message->FindBool("stop shutdown",
1318 const char* shutdown = B_TRANSLATE("Shut down"); local
[all...]
/haiku/src/kits/app/
H A DLooper.cpp1307 bool shutdown; local
1309 || (message->FindBool("_shutdown_", &shutdown) == B_OK && shutdown)) {
/haiku/src/apps/terminal/
H A DTermApp.cpp150 bool shutdown; local
151 if (message != NULL && message->FindBool("_shutdown_", &shutdown) == B_OK
152 && shutdown) {
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/ral/
H A Dif_ral_pci.c112 void (*shutdown)(void *); member in struct:ral_opns
301 (*psc->sc_opns->shutdown)(psc);
/haiku/src/servers/input/
H A DInputServer.cpp351 bool shutdown = false; local
352 CurrentMessage()->FindBool("_shutdown_", &shutdown);
354 // Don't actually quit when the system is being shutdown
355 if (shutdown) {
/haiku/src/libs/compat/freebsd_network/
H A Ddevice.c321 dev->methods.shutdown = (void *)mth->method;
H A Dshared.h43 void (*shutdown)(device_t dev); member in struct:device::__anon1780
/haiku/src/kits/media/
H A DMediaDefs.cpp1331 bool shutdown = false; local
1354 reply.FindBool("_shutdown", &shutdown);
1355 if (err == B_TIMED_OUT || shutdown == false) {
1369 shutdown = false;
1374 // The media_server usually shutdown the media_addon_server,
1378 reply.FindBool("_shutdown", &shutdown);
1379 if (err == B_TIMED_OUT || shutdown == false) {
/haiku/src/bin/network/telnetd/
H A Dsys_term.c1383 (void) shutdown(net, 2);
/haiku/src/system/libnetwork/
H A Dsocket.cpp163 shutdown(int socket, int how) function
/haiku/src/add-ons/print/transports/shared/
H A DSocket.cpp122 ::shutdown(__sock, 2);
/haiku/src/add-ons/print/transports/hp_jetdirect/
H A DHPJetDirectTransport.cpp82 shutdown(fEndpoint->Socket(), SHUT_WR);
/haiku/headers/posix/sys/
H A Dsocket.h187 int shutdown(int socket, int how);
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DUtils.h35 shutdown(socket, SHUTDOWN_BOTH);

Completed in 224 milliseconds

12