HomeSort by relevance Sort by last modified time
    Searched refs:DeviceEvent (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/ui/events/ozone/device/
device_event_observer.h 12 class DeviceEvent;
18 virtual void OnDeviceEvent(const DeviceEvent& event) = 0;
device_event.cc 9 DeviceEvent::DeviceEvent(DeviceType type,
device_event.h 14 class EVENTS_OZONE_EXPORT DeviceEvent {
27 DeviceEvent(DeviceType type, ActionType action, const base::FilePath& path);
38 DISALLOW_COPY_AND_ASSIGN(DeviceEvent);
device_manager_manual.cc 24 DeviceEvent event(DeviceEvent::INPUT, DeviceEvent::ADD, path);
  /external/chromium_org/ui/events/ozone/device/udev/
device_manager_udev.cc 120 scoped_ptr<DeviceEvent> event = ProcessMessage(device.get());
144 scoped_ptr<DeviceEvent> event = ProcessMessage(device.get());
154 scoped_ptr<DeviceEvent> DeviceManagerUdev::ProcessMessage(udev_device* device) {
161 return scoped_ptr<DeviceEvent>();
163 DeviceEvent::DeviceType device_type;
166 device_type = DeviceEvent::INPUT;
168 device_type = DeviceEvent::DISPLAY;
170 return scoped_ptr<DeviceEvent>();
172 DeviceEvent::ActionType action_type;
174 action_type = DeviceEvent::ADD
    [all...]
device_manager_udev.h 15 class DeviceEvent;
25 scoped_ptr<DeviceEvent> ProcessMessage(udev_device* device);
  /development/samples/ControllerSample/src/com/example/inputmanagercompat/
InputManagerV9.java 139 DeviceEvent odc = DeviceEvent.getDeviceEvent(why, deviceId, listener);
145 private static class DeviceEvent implements Runnable {
149 private static Queue<DeviceEvent> sEventQueue = new ArrayDeque<DeviceEvent>();
151 private DeviceEvent() {
154 static DeviceEvent getDeviceEvent(int messageType, int id,
156 DeviceEvent curChanged = sEventQueue.poll();
158 curChanged = new DeviceEvent();
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
device_event_router_unittest.cc 23 struct DeviceEvent {
39 DeviceEvent event;
51 std::vector<DeviceEvent> events;
  /external/chromium_org/ui/ozone/platform/dri/chromeos/
native_display_delegate_proxy.cc 110 void NativeDisplayDelegateProxy::OnDeviceEvent(const DeviceEvent& event) {
111 if (event.device_type() != DeviceEvent::DISPLAY)
114 if (event.action_type() == DeviceEvent::CHANGE) {
native_display_delegate_proxy.h 58 virtual void OnDeviceEvent(const DeviceEvent& event) OVERRIDE;
native_display_delegate_dri.h 63 virtual void OnDeviceEvent(const DeviceEvent& event) OVERRIDE;
native_display_delegate_dri.cc 295 void NativeDisplayDelegateDri::OnDeviceEvent(const DeviceEvent& event) {
296 if (event.device_type() != DeviceEvent::DISPLAY)
299 if (event.action_type() == DeviceEvent::CHANGE) {
  /external/chromium_org/ui/events/ozone/evdev/
event_factory_evdev.h 53 virtual void OnDeviceEvent(const DeviceEvent& event) OVERRIDE;
event_factory_evdev.cc 168 void EventFactoryEvdev::OnDeviceEvent(const DeviceEvent& event) {
169 if (event.device_type() != DeviceEvent::INPUT)
173 case DeviceEvent::ADD:
174 case DeviceEvent::CHANGE: {
192 case DeviceEvent::REMOVE: {
  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_device_handler.h 51 disks::DiskMountManager::DeviceEvent event,
burn_device_handler.cc 78 void BurnDeviceHandler::OnDeviceEvent(DiskMountManager::DeviceEvent event,
  /external/chromium_org/components/storage_monitor/
storage_monitor_chromeos.h 51 chromeos::disks::DiskMountManager::DeviceEvent event,
storage_monitor_chromeos.cc 144 void StorageMonitorCros::OnDeviceEvent(DiskMountManager::DeviceEvent event,
  /external/chromium_org/chromeos/disks/
mock_disk_mount_manager.h 98 void NotifyDeviceChanged(DeviceEvent event,
disk_mount_manager.h 35 enum DeviceEvent {
217 virtual void OnDeviceEvent(DeviceEvent event,
mock_disk_mount_manager.cc 256 void MockDiskMountManager::NotifyDeviceChanged(DeviceEvent event,
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_external_updater.h 58 virtual void OnDeviceEvent(disks::DiskMountManager::DeviceEvent event,
kiosk_external_updater.cc 120 disks::DiskMountManager::DeviceEvent event,
  /external/chromium_org/chrome/browser/chromeos/file_manager/
volume_manager.h 174 chromeos::disks::DiskMountManager::DeviceEvent event,
  /external/chromium_org/third_party/closure_compiler/externs/
chrome_extensions.js 711 chrome.bluetooth.DeviceEvent = function() {};
715 chrome.bluetooth.DeviceEvent.prototype.addListener = function(callback) {};
719 chrome.bluetooth.DeviceEvent.prototype.removeListener = function(callback) {};
726 chrome.bluetooth.DeviceEvent.prototype.hasListener = function(callback) {};
730 chrome.bluetooth.DeviceEvent.prototype.hasListeners = function() {};
734 * @type {!chrome.bluetooth.DeviceEvent}
741 * @type {!chrome.bluetooth.DeviceEvent}
748 * @type {!chrome.bluetooth.DeviceEvent}
    [all...]

Completed in 442 milliseconds

1 2