OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DoneWithError
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/device/serial/
data_sink_receiver.cc
55
virtual void
DoneWithError
(uint32_t bytes_read, int32_t error) OVERRIDE;
181
void DataSinkReceiver::
DoneWithError
(uint32_t bytes_read, int32_t error) {
247
receiver_->
DoneWithError
(0, cancellation_error_);
267
receiver_->
DoneWithError
(bytes_read, cancellation_error_);
275
void DataSinkReceiver::Buffer::
DoneWithError
(uint32_t bytes_read,
277
receiver_->
DoneWithError
(bytes_read, error);
data_source_sender.cc
21
// one of Done() and
DoneWithError
() will be called with the result.
31
void
DoneWithError
(uint32_t bytes_written, int32_t error);
40
// but has not yet called Done() or
DoneWithError
().
58
virtual void
DoneWithError
(uint32_t bytes_written, int32_t error) OVERRIDE;
149
void DataSourceSender::
DoneWithError
(uint32_t bytes_written, int32_t error) {
197
void DataSourceSender::PendingSend::
DoneWithError
(uint32_t bytes_written,
201
sender_->
DoneWithError
(bytes_written, error);
237
void DataSourceSender::PendingSend::Buffer::
DoneWithError
(
241
pending_send_->
DoneWithError
(bytes_written, error);
data_receiver.cc
72
virtual void
DoneWithError
(uint32_t bytes_consumed, int32_t error) OVERRIDE;
334
void DataReceiver::PendingReceive::Buffer::
DoneWithError
(
Completed in 135 milliseconds