Home
last modified time | relevance | path

Searched refs:KSOCKET_CALLBACK (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocknotify.c78 KSOCKET_CALLBACK(so, connected, 0); in so_notify_connected()
104 KSOCKET_CALLBACK(so, cantsendmore, 0); in so_notify_disconnecting()
136 KSOCKET_CALLBACK(so, disconnected, error); in so_notify_disconnected()
138 KSOCKET_CALLBACK(so, connectfailed, error); in so_notify_disconnected()
175 KSOCKET_CALLBACK(so, cansend, 0); in so_notify_writable()
201 KSOCKET_CALLBACK(so, newdata, qlen); in so_notify_data()
229 KSOCKET_CALLBACK(so, error, 0); in so_notify_error()
267 KSOCKET_CALLBACK(so, oobdata, 0); in so_notify_oobdata()
300 KSOCKET_CALLBACK(so, cantrecvmore, 0); in so_notify_eof()
324 KSOCKET_CALLBACK(so, newconn, 0); in so_notify_newconn()
/illumos-gate/usr/src/uts/common/io/ksocket/
H A Dksocket_impl.h54 #define KSOCKET_CALLBACK(so, cbfn, arg) \ macro