HomeSort by relevance Sort by last modified time
    Searched defs:SerialIoHandler (Results 1 - 2 of 2) 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_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...]

Completed in 65 milliseconds