Lines Matching full:operation
43 * This operation is implemented in terms of zero or more calls to the stream's
82 * This operation is implemented in terms of zero or more calls to the stream's
122 * This operation is implemented in terms of zero or more calls to the stream's
133 * whether the read operation is complete. The signature of the function object
136 * // Result of latest read_some operation.
142 * A return value of 0 indicates that the read operation is complete. A non-zero
173 * This operation is implemented in terms of zero or more calls to the stream's
184 * whether the read operation is complete. The signature of the function object
187 * // Result of latest read_some operation.
193 * A return value of 0 indicates that the read operation is complete. A non-zero
212 * @brief Start an asynchronous operation to read a certain amount of data from
217 /// Start an asynchronous operation to read a certain amount of data from a
222 * asynchronous operation will continue until one of the following conditions is
230 * This operation is implemented in terms of zero or more calls to the stream's
231 * async_read_some function, and is known as a <em>composed operation</em>. The
234 * operations that perform reads) until this operation completes.
245 * @param handler The handler to be called when the read operation completes.
249 * const asio::error_code& error, // Result of operation.
257 * Regardless of whether the asynchronous operation completes immediately or
284 /// Start an asynchronous operation to read a certain amount of data from a
289 * asynchronous operation will continue until one of the following conditions is
307 * whether the read operation is complete. The signature of the function object
310 * // Result of latest async_read_some operation.
316 * A return value of 0 indicates that the read operation is complete. A non-zero
320 * @param handler The handler to be called when the read operation completes.
324 * const asio::error_code& error, // Result of operation.
332 * Regardless of whether the asynchronous operation completes immediately or