HomeSort by relevance Sort by last modified time
    Searched defs:io_handler_ (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/device/serial/
serial_connection.h 45 scoped_refptr<SerialIoHandler> io_handler_; member in class:device::SerialConnection
serial_connection_factory.cc 55 scoped_refptr<SerialIoHandler> io_handler_; member in class:device::SerialConnectionFactory::ConnectTask
110 io_handler_ = factory_->io_handler_factory_.Run();
111 io_handler_->Open(
117 DCHECK(io_handler_.get());
123 if (!io_handler_->ConfigurePort(*options_))
126 new SerialConnection(io_handler_, sink_.Pass(), source_.Pass()),
serial_service_unittest.cc 70 scoped_refptr<SerialIoHandler> ReturnIoHandler() { return io_handler_; }
73 if (!io_handler_.get())
74 io_handler_ = new TestSerialIoHandler;
105 scoped_refptr<TestSerialIoHandler> io_handler_; member in class:device::SerialServiceTest
137 io_handler_ = new FailToOpenIoHandler;
serial_connection_unittest.cc 92 ASSERT_TRUE(io_handler_.get());
143 io_handler_ = new TestSerialIoHandler;
144 return io_handler_;
192 scoped_refptr<TestSerialIoHandler> io_handler_; member in class:device::SerialConnectionTest
222 serial::ConnectionInfo* info = io_handler_->connection_info();
233 serial::DeviceControlSignals* signals = io_handler_->device_control_signals();
258 EXPECT_TRUE(io_handler_->dtr());
259 EXPECT_TRUE(io_handler_->rts());
263 ASSERT_EQ(0, io_handler_->flushes());
269 EXPECT_EQ(1, io_handler_->flushes())
    [all...]
  /external/chromium_org/extensions/browser/api/serial/
serial_connection.h 112 // Overrides |io_handler_| for testing.
143 // Receives read completion notification from the |io_handler_|.
146 // Receives write completion notification from the |io_handler_|.
191 scoped_refptr<device::SerialIoHandler> io_handler_; member in class:extensions::SerialConnection
  /external/chromium_org/extensions/renderer/api/serial/
serial_api_unittest.cc 414 scoped_refptr<TestIoHandlerBase> io_handler_; member in class:extensions::SerialApiTest
418 if (!io_handler_.get())
419 io_handler_ = new TestIoHandlerBase;
420 return io_handler_;
443 io_handler_ = new FailToConnectTestIoHandler;
448 io_handler_ = new FailToGetInfoTestIoHandler(0);
469 io_handler_ = new FailToGetInfoTestIoHandler(1);
478 io_handler_ = new GetControlSignalsTestIoHandler;
480 EXPECT_EQ(16u, io_handler_->num_calls());
484 io_handler_ = new SetControlSignalsTestIoHandler
    [all...]
  /external/chromium_org/mojo/system/
raw_channel_win.cc 175 // Passed to |io_handler_| during initialization.
178 RawChannelIOHandler* io_handler_; member in class:mojo::system::__anon13487::RawChannelWin
350 io_handler_(nullptr),
357 DCHECK(!io_handler_);
367 DCHECK(io_handler_);
368 DCHECK(!io_handler_->pending_read());
375 BOOL result = ReadFile(io_handler_->handle(),
379 &io_handler_->read_context()->overlapped);
397 // completion port on success, instruct |io_handler_| to wait for the
405 io_handler_->OnPendingReadStarted()
    [all...]

Completed in 931 milliseconds