Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/frontend/gcastv2/https/
DRunLoop.cpp53 int res = pipe(mControlFds); in RunLoop()
56 makeFdNonblocking(mControlFds[0]); in RunLoop()
69 close(mControlFds[1]); in ~RunLoop()
70 mControlFds[1] = -1; in ~RunLoop()
72 close(mControlFds[0]); in ~RunLoop()
73 mControlFds[0] = -1; in ~RunLoop()
216 pollFds.push_back({ mControlFds[0], POLLIN, 0 }); in run()
351 while ((res = read(mControlFds[0], c, sizeof(c))) < 0 in run()
424 while ((res = write(mControlFds[1], &c, 1)) < 0 && errno == EINTR) { in interrupt()
/device/google/cuttlefish/host/frontend/gcastv2/https/include/https/
DRunLoop.h104 int mControlFds[2]; member