HomeSort by relevance Sort by last modified time
    Searched refs:Device (Results 51 - 75 of 202) sorted by null

1 23 4 5 6 7 8 9

  /hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
ClientLib.cpp 46 #include "Device.h"
66 list<Device *> devices;
73 Device *resolveDeviceId(uint32_t deviceId)
75 for (list<Device *>::iterator iterator = devices.begin();
77 Device *device = (*iterator); local
79 if (device->deviceId == deviceId) {
80 return device;
88 void addDevice(Device *device)
100 Device *device = (*iterator); local
184 Device *device = resolveDeviceId(deviceId); local
266 Device *device = resolveDeviceId(deviceId); local
322 Device *device = resolveDeviceId(session->deviceId); local
469 Device *device = resolveDeviceId(session->deviceId); local
518 Device *device = resolveDeviceId(session->deviceId); local
555 Device *device = resolveDeviceId(session->deviceId); local
637 Device *device = resolveDeviceId(deviceId); local
667 Device *device; local
723 Device *device = resolveDeviceId(sessionHandle->deviceId); local
809 Device *device = resolveDeviceId(sessionHandle->deviceId); local
881 Device *device = resolveDeviceId(session->deviceId); local
920 Device *device = resolveDeviceId(deviceId); local
    [all...]
  /frameworks/base/services/input/
EventHub.cpp 97 // Compute a device descriptor that uniquely identifies the device.
107 // If we don't know the vendor and product id, then the device is probably
109 // the input device. Usually we try to avoid relying on the device name or
110 // location but for built-in input device, they are unlikely to ever change.
158 // --- EventHub::Device ---
160 EventHub::Device::Device(int fd, int32_t id, const String8& path,
176 EventHub::Device::~Device()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
linuxdeviceinfo.cc 95 bool GetUsbProperty(const Device& device, const char* property_name,
135 if (!device_node || device.id.compare(device_node) != 0) {
154 bool GetUsbId(const Device& device, std::string* usb_id) {
157 if (!GetUsbProperty(device, "idVendor", &id_vendor)) {
160 if (!GetUsbProperty(device, "idProduct", &id_product)) {
170 bool GetUsbVersion(const Device& device, std::string* usb_version) {
171 return GetUsbProperty(device, "version", usb_version)
    [all...]
macdevicemanager.cc 75 extern bool GetQTKitVideoDevices(std::vector<Device>* out);
86 bool MacDeviceManager::GetVideoCaptureDevices(std::vector<Device>* devices) {
95 std::vector<Device>* devs) {
105 devs->push_back(Device(name, dev_ids[i]));
118 << "so no device list acquired.";
129 LOG(LS_ERROR) << "Failed to get device ids, "
130 << "so no device listing acquired.";
137 // (input/output) on this device -
148 LOG(LS_ERROR) << "No property info for stream property for device id "
166 LOG(LS_ERROR) << "No name acquired for device id " << id
    [all...]
linuxdevicemanager.cc 100 std::vector<Device>* devs) {
118 // device at index 0, but Enumerate(Capture|Playback)Devices does not include
119 // a locator for the default device.
124 devs->push_back(Device((*i)->name(), index));
137 std::vector<Device>* devices) {
148 devices->push_back(Device(device_name, device_name));
163 LOG(LS_ERROR) << "Failed to read V4L2 device meta " << device_meta_path;
233 << "Device name not found, defaulting to device path " << device_name;
241 static void ScanV4L2Devices(std::vector<Device>* devices)
376 udev_device* device = libudev_.udev_monitor_receive_device()(udev_monitor_); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 512 // Flush device
608 IN PCSTR Device,
621 if('\\' == *Device)
622 return Device;
630 if(('/' == *(Device)) &&
631 ('d' == *(Device + 1)) &&
632 ('e' == *(Device + 2)) &&
633 ('v' == *(Device + 3)) &&
634 ('/' == *(Device + 4)))
636 Device += 5
    [all...]
  /external/qemu-pc-bios/bochs/bios/
acpi-dsdt.dsl 41 Device(PCI0) {
108 Device (S##name) { \
195 Device(HPET) {
217 Device (VGA) {
234 Device (ISA) {
241 Device (RTC)
253 Device (KBD)
285 Device (MOU)
304 Device (FDC0)
325 Device (LPT
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager_mac.mm 76 bool GetQTKitVideoDevices(std::vector<Device>* devices) {
82 LOG(LS_INFO) << count << " capture device(s) found:";
100 devices->push_back(Device(name,
channelmanager.h 50 // channels when a new audio or video device is chosen. The voice and video
54 // using device manager.
175 bool SetAudioOptions_w(int opts, const Device* in_dev,
176 const Device* out_dev);
179 bool SetVideoOptions_w(const Device* cam_device);
filemediaengine.h 91 virtual bool SetSoundDevices(const Device* in_dev, const Device* out_dev) {
94 virtual bool SetVideoCaptureDevice(const Device* cam_device) { return true; }
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_api_utils.cc 10 #include "device/bluetooth/bluetooth_adapter.h"
11 #include "device/bluetooth/bluetooth_device.h"
17 void BluetoothDeviceToApiDevice(const device::BluetoothDevice& device,
18 Device* out) {
19 out->address = device.GetAddress();
20 out->name.reset(new std::string(UTF16ToUTF8(device.GetName())));
21 out->paired.reset(new bool(device.IsPaired()));
22 out->connected.reset(new bool(device.IsConnected()));
25 void PopulateAdapterState(const device::BluetoothAdapter& adapter
    [all...]
bluetooth_event_router.h 14 #include "device/bluetooth/bluetooth_adapter.h"
15 #include "device/bluetooth/bluetooth_adapter_factory.h"
16 #include "device/bluetooth/bluetooth_socket.h"
20 namespace device { namespace
25 } // namespace device
30 : public device::BluetoothAdapter::Observer {
40 const device::BluetoothAdapterFactory::AdapterCallback& callback);
51 int RegisterSocket(scoped_refptr<device::BluetoothSocket> socket);
61 device::BluetoothProfile* bluetooth_profile);
73 device::BluetoothProfile* GetProfile(const std::string& uuid) const
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
SelectionDependentViewPart.java 25 import org.eclipse.swt.graphics.Device;
29 * A Workbench {@link ViewPart} that requires {@link Device}/{@link Client} selection notifications
62 * Sent when a new {@link Device} is selected.
63 * @param selectedDevice the selected device.
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
Android.mk 3 # MC driver device files
11 DEVICE_PATH := Daemon/Device
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
EmptyViewsOverlay.java 20 import org.eclipse.swt.graphics.Device;
61 public void create(Device device) {
62 mBorderColor = new Color(device, SwtDrawingStyle.EMPTY.getStrokeColor());
OutlineOverlay.java 20 import org.eclipse.swt.graphics.Device;
62 public void create(Device device) {
63 mOutlineColor = new Color(device, SwtDrawingStyle.OUTLINE.getStrokeColor());