Symbol: B_SELECT_WRITE
src/add-ons/kernel/bus_managers/random/driver.cpp
160
} else if (event == B_SELECT_WRITE) {
src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/KernelRequestHandler.cpp
259
notify_select_event(request->sync, B_SELECT_WRITE);
src/add-ons/kernel/generic/tty/tty.cpp
2040
case B_SELECT_WRITE:
src/add-ons/kernel/generic/tty/tty.cpp
941
tty_notify_select_event(otherTTY, B_SELECT_WRITE);
src/add-ons/kernel/network/devices/tunnel/tunnel.cpp
234
if (event != B_SELECT_READ && event != B_SELECT_WRITE)
src/add-ons/kernel/network/devices/tunnel/tunnel.cpp
246
if (event == B_SELECT_WRITE)
src/add-ons/kernel/network/devices/tunnel/tunnel.cpp
259
if (event != B_SELECT_READ && event != B_SELECT_WRITE)
src/add-ons/kernel/network/protocols/tcp/TCPEndpoint.cpp
1265
gSocketModule->notify(socket, B_SELECT_WRITE, fSendQueue.Free());
src/add-ons/kernel/network/protocols/tcp/TCPEndpoint.cpp
1317
gSocketModule->notify(socket, B_SELECT_WRITE, error);
src/add-ons/kernel/network/protocols/tcp/TCPEndpoint.cpp
2587
gSocketModule->notify(socket, B_SELECT_WRITE, fSendQueue.Free());
src/add-ons/kernel/network/protocols/unix/UnixDatagramEndpoint.cpp
305
gSocketModule->notify(socket, B_SELECT_WRITE, writable);
src/add-ons/kernel/network/protocols/unix/UnixDatagramEndpoint.cpp
403
gSocketModule->notify(originEndpoint->socket, B_SELECT_WRITE, writable);
src/add-ons/kernel/network/protocols/unix/UnixStreamEndpoint.cpp
448
gSocketModule->notify(socket, B_SELECT_WRITE, writable);
src/add-ons/kernel/network/protocols/unix/UnixStreamEndpoint.cpp
550
gSocketModule->notify(peerEndpoint->socket, B_SELECT_WRITE, writable);
src/add-ons/kernel/network/protocols/unix/UnixStreamEndpoint.cpp
704
gSocketModule->notify(fPeerEndpoint->socket, B_SELECT_WRITE, EPIPE);
src/add-ons/kernel/network/protocols/unix/UnixStreamEndpoint.cpp
707
gSocketModule->notify(socket, B_SELECT_WRITE, EPIPE);
src/add-ons/kernel/network/protocols/unix/UnixStreamEndpoint.cpp
749
gSocketModule->notify(socket, B_SELECT_WRITE, ECONNRESET);
src/add-ons/kernel/network/stack/net_socket.cpp
837
case B_SELECT_WRITE:
src/add-ons/kernel/network/stack/net_socket.cpp
883
case B_SELECT_WRITE:
src/add-ons/kernel/network/stack/net_socket.cpp
903
notify_select_event_pool(socket->select_pool, B_SELECT_WRITE);
src/system/kernel/events/wait_for_objects.cpp
471
sync->set[fd].selected_events |= SELECT_FLAG(B_SELECT_WRITE)
src/system/kernel/events/wait_for_objects.cpp
538
&& sync->set[fd].events & (SELECT_FLAG(B_SELECT_WRITE)
src/system/kernel/fs/fifo.cpp
715
notify_select_event_pool(fWriteSelectSyncPool, B_SELECT_WRITE);
src/system/kernel/fs/fifo.cpp
832
notify_select_event_pool(fWriteSelectSyncPool, B_SELECT_WRITE);
src/system/kernel/fs/fifo.cpp
900
if ((event == B_SELECT_WRITE && fBuffer.Writable() > 0)
src/tests/system/network/tcp_shell/tcp_shell.cpp
633
case B_SELECT_WRITE: