HomeSort by relevance Sort by last modified time
    Searched refs:DoneWithError (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/device/serial/
buffer.h 14 // an error by calling DoneWithError() with the number of bytes read and the
22 virtual void DoneWithError(uint32_t bytes_read, int32_t error) = 0;
27 // an error by calling DoneWithError() with the number of bytes written and the
35 virtual void DoneWithError(uint32_t bytes_written, int32_t error) = 0;
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_source_sender.h 60 void DoneWithError(uint32_t bytes_written, int32_t error);
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_sink_receiver.h 67 void DoneWithError(uint32_t bytes_read, int32_t error);
101 // but the Buffer will call Done or DoneWithError before being deleted.
serial_io_handler.cc 121 pending_read_buffer->DoneWithError(bytes_read, error);
135 pending_write_buffer->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(
data_source_unittest.cc 80 write_buffer_->DoneWithError(static_cast<uint32_t>(data.size()), error);
data_sink_unittest.cc 90 read_buffer_->DoneWithError(bytes_to_read, error);
  /external/chromium_org/extensions/renderer/api/serial/
data_sender_unittest.cc 79 buffer->DoneWithError(data.size(), error);
86 buffer_->DoneWithError(0, error);
data_receiver_unittest.cc 74 buffer->DoneWithError(data.size(), error);
  /external/chromium_org/extensions/browser/api/serial/
serial_connection.cc 150 virtual void DoneWithError(uint32_t bytes_read, int32_t error) OVERRIDE {
172 virtual void DoneWithError(uint32_t bytes_written, int32_t error) OVERRIDE {

Completed in 270 milliseconds