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

  /external/chromium_org/device/serial/
serial_io_handler.cc 14 SerialIoHandler::SerialIoHandler(
19 SerialIoHandler::~SerialIoHandler() {
24 void SerialIoHandler::Open(const std::string& port,
32 base::Bind(&SerialIoHandler::StartOpen,
38 void SerialIoHandler::StartOpen(
44 // It's the responsibility of the API wrapper around SerialIoHandler to
56 base::Bind(&SerialIoHandler::FinishOpen, this, Passed(file.Pass())));
59 void SerialIoHandler::FinishOpen(base::File file)
    [all...]
serial_connection_factory.h 19 class SerialIoHandler;
24 typedef base::Callback<scoped_refptr<SerialIoHandler>()> IoHandlerFactory;
serial_io_handler.h 22 class SerialIoHandler : public base::NonThreadSafe,
23 public base::RefCounted<SerialIoHandler> {
26 static scoped_refptr<SerialIoHandler> Create(
81 explicit SerialIoHandler(
83 virtual ~SerialIoHandler();
87 // or the SerialIoHandler instance will leak.
94 // or the SerialIoHandler instance will leak.
109 // WARNING: Calling this method can destroy the SerialIoHandler instance
114 // WARNING: Calling this method may destroy the SerialIoHandler instance
160 friend class base::RefCounted<SerialIoHandler>;
    [all...]
serial_io_handler_posix.h 13 class SerialIoHandlerPosix : public SerialIoHandler,
16 // SerialIoHandler impl.
30 friend class SerialIoHandler;
serial_io_handler_win.h 14 class SerialIoHandlerWin : public SerialIoHandler,
17 // SerialIoHandler implementation.
31 friend class SerialIoHandler;
serial_connection.h 18 class SerialIoHandler;
23 SerialConnection(scoped_refptr<SerialIoHandler> io_handler,
45 scoped_refptr<SerialIoHandler> io_handler_;
test_serial_io_handler.h 16 class TestSerialIoHandler : public SerialIoHandler {
20 static scoped_refptr<SerialIoHandler> Create();
22 // SerialIoHandler overrides.
test_serial_io_handler.cc 15 : SerialIoHandler(NULL),
22 scoped_refptr<SerialIoHandler> TestSerialIoHandler::Create() {
23 return scoped_refptr<SerialIoHandler>(new TestSerialIoHandler);
serial_connection.cc 16 scoped_refptr<SerialIoHandler> io_handler,
serial_io_handler_posix.cc 125 scoped_refptr<SerialIoHandler> SerialIoHandler::Create(
162 : SerialIoHandler(file_thread_message_loop),
408 std::string SerialIoHandler::MaybeFixUpPortName(const std::string& port_name) {
serial_io_handler_win.cc 136 scoped_refptr<SerialIoHandler> SerialIoHandler::Create(
243 : SerialIoHandler(file_thread_message_loop),
376 std::string SerialIoHandler::MaybeFixUpPortName(const std::string& port_name) {
serial_service_impl.cc 33 base::Bind(SerialIoHandler::Create,
serial_connection_factory.cc 55 scoped_refptr<SerialIoHandler> io_handler_;
serial_service_unittest.cc 70 scoped_refptr<SerialIoHandler> ReturnIoHandler() { return io_handler_; }
serial_connection_unittest.cc 142 scoped_refptr<SerialIoHandler> CreateIoHandler() {
  /external/chromium_org/extensions/browser/api/serial/
serial_connection.h 31 typedef device::SerialIoHandler::OpenCompleteCallback OpenCompleteCallback;
113 void SetIoHandlerForTest(scoped_refptr<device::SerialIoHandler> handler);
191 scoped_refptr<device::SerialIoHandler> io_handler_;
serial_connection.cc 205 io_handler_(device::SerialIoHandler::Create(
300 scoped_refptr<device::SerialIoHandler> handler) {
  /external/chromium_org/extensions/renderer/api/serial/
serial_api_unittest.cc 13 // fake DeviceEnumerator or SerialIoHandler expecting or returning particular
417 scoped_refptr<device::SerialIoHandler> GetIoHandler() {

Completed in 287 milliseconds