Home | History | Annotate | Download | only in native

Lines Matching defs:AsynchronousSocketCloseMonitor

24  * AsynchronousSocketCloseMonitor helps implement Java's asynchronous Socket.close semantics.
26 * AsynchronousSocketCloseMonitor::init must be called before anything else.
28 * Every blocking network I/O operation must be surrounded by an AsynchronousSocketCloseMonitor
32 * AsynchronousSocketCloseMonitor monitor(fd);
38 * AsynchronousSocketCloseMonitor::signalBlockedThreads(fd);
40 class AsynchronousSocketCloseMonitor {
42 AsynchronousSocketCloseMonitor(int fd);
43 ~AsynchronousSocketCloseMonitor();
50 AsynchronousSocketCloseMonitor* mPrev;
51 AsynchronousSocketCloseMonitor* mNext;
56 AsynchronousSocketCloseMonitor(const AsynchronousSocketCloseMonitor&);
57 void operator=(const AsynchronousSocketCloseMonitor&);