Symbol: evpipe
crypto/krb5/src/util/verto/ev.c
2410
evpipe [0] = fds [0];
crypto/krb5/src/util/verto/ev.c
2412
if (evpipe [1] < 0)
crypto/krb5/src/util/verto/ev.c
2413
evpipe [1] = fds [1]; /* first call, set write fd */
crypto/krb5/src/util/verto/ev.c
2421
dup2 (fds [1], evpipe [1]);
crypto/krb5/src/util/verto/ev.c
2425
fd_intern (evpipe [1]);
crypto/krb5/src/util/verto/ev.c
2427
ev_io_set (&pipe_w, evpipe [0] < 0 ? evpipe [1] : evpipe [0], EV_READ);
crypto/krb5/src/util/verto/ev.c
2458
if (evpipe [0] < 0)
crypto/krb5/src/util/verto/ev.c
2461
write (evpipe [1], &counter, sizeof (uint64_t));
crypto/krb5/src/util/verto/ev.c
2471
WSASend (EV_FD_TO_WIN32_HANDLE (evpipe [1]), &buf, 1, &sent, 0, 0, 0);
crypto/krb5/src/util/verto/ev.c
2473
write (evpipe [1], &(evpipe [1]), 1);
crypto/krb5/src/util/verto/ev.c
2491
if (evpipe [0] < 0)
crypto/krb5/src/util/verto/ev.c
2494
read (evpipe [1], &counter, sizeof (uint64_t));
crypto/krb5/src/util/verto/ev.c
2506
WSARecv (EV_FD_TO_WIN32_HANDLE (evpipe [0]), &buf, 1, &recvd, &flags, 0, 0);
crypto/krb5/src/util/verto/ev.c
2508
read (evpipe [0], &dummy, sizeof (dummy));
crypto/krb5/src/util/verto/ev.c
2889
evpipe [0] = -1;
crypto/krb5/src/util/verto/ev.c
2890
evpipe [1] = -1;
crypto/krb5/src/util/verto/ev.c
2963
if (evpipe [0] >= 0) EV_WIN32_CLOSE_FD (evpipe [0]);
crypto/krb5/src/util/verto/ev.c
2964
if (evpipe [1] >= 0) EV_WIN32_CLOSE_FD (evpipe [1]);
crypto/krb5/src/util/verto/ev.c
3068
if (evpipe [0] >= 0)
crypto/krb5/src/util/verto/ev.c
3069
EV_WIN32_CLOSE_FD (evpipe [0]);
crypto/krb5/src/util/verto/ev_vars.h
72
VAR (evpipe, int evpipe [2])
crypto/krb5/src/util/verto/ev_wrap.h
29
#define evpipe ((loop)->evpipe)