OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MessagePumpLibevent
(Results
1 - 19
of
19
) sorted by null
/external/chromium_org/base/message_loop/
message_pump_libevent.h
24
class BASE_EXPORT
MessagePumpLibevent
: public MessagePump {
68
friend class
MessagePumpLibevent
;
71
// Called by
MessagePumpLibevent
, ownership of |e| is transferred to this
75
// Used by
MessagePumpLibevent
to take ownership of event_.
78
void set_pump(
MessagePumpLibevent
* pump) { pump_ = pump; }
79
MessagePumpLibevent
* pump() const { return pump_; }
83
void OnFileCanReadWithoutBlocking(int fd,
MessagePumpLibevent
* pump);
84
void OnFileCanWriteWithoutBlocking(int fd,
MessagePumpLibevent
* pump);
87
MessagePumpLibevent
* pump_;
100
MessagePumpLibevent
();
[
all
...]
message_pump_libevent_unittest.cc
47
MessagePumpLibevent
* pump,
48
MessagePumpLibevent
::FileDescriptorWatcher* controller) {
61
// Concrete implementation of
MessagePumpLibevent
::Watcher that does
63
class StupidWatcher : public
MessagePumpLibevent
::Watcher {
67
// base:
MessagePumpLibevent
::Watcher interface
77
MessagePumpLibevent
::FileDescriptorWatcher watcher;
87
scoped_ptr<
MessagePumpLibevent
> pump(new
MessagePumpLibevent
);
94
class BaseWatcher : public
MessagePumpLibevent
::Watcher {
96
explicit BaseWatcher(
MessagePumpLibevent
::FileDescriptorWatcher* controller
[
all
...]
message_pump_libevent.cc
29
//
MessagePumpLibevent
::WatchFileDescriptor(),
37
// is active after its
MessagePumpLibevent
has been destroyed.
53
MessagePumpLibevent
::FileDescriptorWatcher::FileDescriptorWatcher()
60
MessagePumpLibevent
::FileDescriptorWatcher::~FileDescriptorWatcher() {
66
bool
MessagePumpLibevent
::FileDescriptorWatcher::StopWatchingFileDescriptor() {
79
void
MessagePumpLibevent
::FileDescriptorWatcher::Init(event *e) {
86
event *
MessagePumpLibevent
::FileDescriptorWatcher::ReleaseEvent() {
92
void
MessagePumpLibevent
::FileDescriptorWatcher::OnFileCanReadWithoutBlocking(
93
int fd,
MessagePumpLibevent
* pump) {
103
void
MessagePumpLibevent
::FileDescriptorWatcher::OnFileCanWriteWithoutBlocking
[
all
...]
message_loop.h
560
// Please see
MessagePumpLibevent
for definition.
564
MessagePumpLibevent
::Mode mode,
565
MessagePumpLibevent
::FileDescriptorWatcher* controller,
566
MessagePumpLibevent
::Watcher* delegate);
620
typedef
MessagePumpLibevent
::Watcher Watcher;
621
typedef
MessagePumpLibevent
::FileDescriptorWatcher
623
typedef
MessagePumpLibevent
::IOObserver IOObserver;
626
WATCH_READ =
MessagePumpLibevent
::WATCH_READ,
627
WATCH_WRITE =
MessagePumpLibevent
::WATCH_WRITE,
628
WATCH_READ_WRITE =
MessagePumpLibevent
::WATCH_READ_WRIT
[
all
...]
message_loop.cc
106
typedef
MessagePumpLibevent
MessagePumpForIO;
226
typedef
MessagePumpLibevent
MessagePumpForUI;
662
MessagePumpLibevent
::Mode mode,
663
MessagePumpLibevent
::FileDescriptorWatcher *controller,
664
MessagePumpLibevent
::Watcher *delegate) {
665
return static_cast<
MessagePumpLibevent
*>(pump_.get())->WatchFileDescriptor(
/external/chromium_org/ui/events/ozone/evdev/
event_converter_evdev.h
20
: public base::
MessagePumpLibevent
::Watcher {
32
// base::
MessagePumpLibevent
::Watcher:
42
base::
MessagePumpLibevent
::FileDescriptorWatcher controller_;
event_converter_evdev.cc
23
fd_, true, base::
MessagePumpLibevent
::WATCH_READ, &controller_, this);
key_event_converter_evdev.h
41
base::
MessagePumpLibevent
::FileDescriptorWatcher controller_;
/external/chromium_org/ui/events/platform/x11/
x11_event_source_libevent.cc
17
public base::
MessagePumpLibevent
::Watcher {
37
base::
MessagePumpLibevent
::WATCH_READ, &watcher_controller_, this);
46
// base::
MessagePumpLibevent
::Watcher:
55
base::
MessagePumpLibevent
::FileDescriptorWatcher watcher_controller_;
/external/chromium_org/content/browser/
udev_linux.h
54
class UdevLinux : public base::
MessagePumpLibevent
::Watcher {
89
base::
MessagePumpLibevent
::FileDescriptorWatcher monitor_watcher_;
/external/chromium_org/ui/events/ozone/device/udev/
device_manager_udev.h
19
: public DeviceManager, base::
MessagePumpLibevent
::Watcher {
35
// base::
MessagePumpLibevent
::Watcher overrides:
42
base::
MessagePumpLibevent
::FileDescriptorWatcher controller_;
device_manager_udev.cc
95
fd, true, base::
MessagePumpLibevent
::WATCH_READ, &controller_, this);
/external/chromium_org/device/hid/
device_monitor_linux.h
27
public base::
MessagePumpLibevent
::Watcher {
52
// Implements base::
MessagePumpLibevent
::Watcher
64
base::
MessagePumpLibevent
::FileDescriptorWatcher monitor_watcher_;
hid_connection_linux.h
17
public base::
MessagePumpLibevent
::Watcher {
38
// base::
MessagePumpLibevent
::Watcher implementation.
49
base::
MessagePumpLibevent
::FileDescriptorWatcher device_file_watcher_;
/external/chromium_org/remoting/host/posix/
signal_handler.cc
24
class SignalListener : public base::
MessagePumpLibevent
::Watcher {
35
base::
MessagePumpLibevent
::FileDescriptorWatcher controller;
/external/chromium_org/remoting/host/
local_input_monitor_linux.cc
48
public base::
MessagePumpLibevent
::Watcher {
64
// base::
MessagePumpLibevent
::Watcher interface.
83
// Used to receive base::
MessagePumpLibevent
::Watcher events.
84
base::
MessagePumpLibevent
::FileDescriptorWatcher controller_;
/external/chromium_org/media/base/
user_input_monitor_linux.cc
39
: public base::
MessagePumpLibevent
::Watcher,
62
// base::
MessagePumpLibevent
::Watcher interface.
77
base::
MessagePumpLibevent
::FileDescriptorWatcher controller_;
/external/chromium_org/dbus/
bus.cc
43
class Watch : public base::
MessagePumpLibevent
::Watcher {
86
// Implement
MessagePumpLibevent
::Watcher.
92
// Implement
MessagePumpLibevent
::Watcher.
99
base::
MessagePumpLibevent
::FileDescriptorWatcher file_descriptor_watcher_;
[
all
...]
/external/chromium_org/net/proxy/
proxy_config_service_linux.cc
858
public base::
MessagePumpLibevent
::Watcher {
[
all
...]
Completed in 2694 milliseconds