OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SerialIoHandler
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/extensions/api/serial/
serial_io_handler.cc
12
SerialIoHandler
::
SerialIoHandler
()
18
SerialIoHandler
::~
SerialIoHandler
() {
22
void
SerialIoHandler
::Initialize(base::PlatformFile file,
35
void
SerialIoHandler
::Read(int max_bytes) {
45
void
SerialIoHandler
::Write(const std::string& data) {
56
void
SerialIoHandler
::ReadCompleted(int bytes_read,
67
void
SerialIoHandler
::WriteCompleted(int bytes_written,
77
bool
SerialIoHandler
::IsReadPending() const
[
all
...]
serial_io_handler.h
21
class
SerialIoHandler
: public base::NonThreadSafe,
22
public base::RefCounted<
SerialIoHandler
> {
25
static scoped_refptr<
SerialIoHandler
> Create();
67
SerialIoHandler
();
68
virtual ~
SerialIoHandler
();
76
// or the
SerialIoHandler
instance will leak.
83
// or the
SerialIoHandler
instance will leak.
95
// WARNING: Calling this method can destroy the
SerialIoHandler
instance
100
// WARNING: Calling this method may destroy the
SerialIoHandler
instance
151
friend class base::RefCounted<
SerialIoHandler
>;
[
all
...]
Completed in 22 milliseconds