Lines Matching full:asynchronous
26 * asynchronous socket.
28 * This is pretty basic API that allows asynchronous connection to a socket,
29 * and asynchronous read from / write to the connected socket.
31 * Since all the operations (including connection) are asynchronous, all the
35 * Since it's hard to control lifespan of an object in asynchronous environment,
41 /* Declares asynchronous socket descriptor. */
44 /* Asynchronous socket I/O (reader, or writer) descriptor. */
136 /* Creates an asynchronous socket descriptor.
171 /* Asynchronously connects to an asynchronous socket.
181 /* Disconnects from an asynchronous socket.
189 /* Asynchronously reconnects to an asynchronous socket.
198 /* Asynchronously reads data from an asynchronous socket with a deadline.
212 /* Asynchronously reads data from an asynchronous socket with a relative timeout.
226 /* Asynchronously writes data to an asynchronous socket with a deadline.
240 /* Asynchronously writes data to an asynchronous socket with a relative timeout.