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());
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
mediaengine.h 106 // Device selection
107 // TODO(tschmelcher): Add method for selecting the soundclip device.
108 virtual bool SetSoundDevices(const Device* in_device,
109 const Device* out_device) = 0;
111 // Device configuration
214 virtual bool SetSoundDevices(const Device* in_device,
215 const Device* out_device) {
297 bool SetDevices(const Device* in_device, const Device* out_device) {
  /external/chromium_org/third_party/usb_ids/
usb.ids 20 # device device_name <-- single tab
65 2002 Mass Storage Device
71 2022 at90usbkey sample firmware (composite device)
91 2063 LUFA Datalogger Device
138 6438 Bluetooth Device
614 0083 AVC-2200 Device
616 0088 AVC-2210 Device
618 008c AVC-2310 Device
626 adcc Composite Device Support
641 080a Bluetooth Device
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
NestedConfiguration.java 24 import com.android.sdklib.devices.Device;
250 * Sets whether the device should be overridden by this configuration
259 * Returns true if the device is overridden
261 * @return true if the device is overridden
269 public Device getDevice() {
278 public void setDevice(Device device, boolean skipSync) {
280 super.setDevice(device, skipSync);
282 mParent.setDevice(device, skipSync);
287 * Sets whether the device state should be overridden by this configuratio
315 Device device = super.getDevice(); local
332 Device device = super.getDevice(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/other/
linphonemediaengine.h 77 virtual bool SetSoundDevices(const Device* in_dev, const Device* out_dev) {
80 virtual bool SetVideoCaptureDevice(const Device* cam_device) { return true; }
  /external/skia/tools/skpdiff/
skpdiff_main.cpp 53 /// Creates a device and context with OpenCL
54 static bool init_device_and_context(cl::Device* device, cl::Context* context) {
66 // Query for a device
67 cl::vector<cl::Device> deviceList;
71 // Print some information about the device for debugging
72 *device = deviceList[0];
74 device->getInfo(CL_DEVICE_NAME, &deviceName);
75 SkDebugf("Device index 0 is named %s\n", deviceName.c_str());
90 cl::Device device local
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
HidProfile.java 47 // Order of this profile in device profiles list
61 CachedBluetoothDevice device = mDeviceManager.findDevice(nextDevice); local
62 // we may add a new device here, but generally this should not happen
63 if (device == null) {
64 Log.w(TAG, "HidProfile found new device: " + nextDevice);
65 device = mDeviceManager.addDevice(mLocalAdapter, mProfileManager, nextDevice);
67 device.onProfileStateChanged(HidProfile.this, BluetoothProfile.STATE_CONNECTED);
68 device.refresh();
101 public boolean connect(BluetoothDevice device) {
103 return mService.connect(device);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCVideoCapturer.mm 47 cricket::Device device;
48 if (!device_manager->GetVideoCaptureDevice(device_name, &device)) {
53 device_manager->CreateVideoCapturer(device));
  /external/llvm/include/llvm/Support/
FileSystem.h 129 uint64_t Device;
134 UniqueID(uint64_t Device, uint64_t File) : Device(Device), File(File) {}
136 return Device == Other.Device && File == Other.File;
140 return Device < Other.Device ||
141 (Device == Other.Device && File < Other.File)
    [all...]
  /external/harfbuzz/src/
harfbuzz-dump.c 458 Dump_Device (HB_Device *Device, FILE *stream, int indent, HB_Type hb_type)
467 DUMP_FUINT (Device, StartSize);
468 DUMP_FUINT (Device, EndSize);
469 DUMP_FUINT (Device, DeltaFormat);
470 switch (Device->DeltaFormat)
498 for (i = Device->StartSize; i <= Device->EndSize ; i++)
500 HB_UShort val = Device->DeltaValue[i / n_per];
503 if (i != Device->EndSize)
522 RECURSE (Device, Device, &*ValueRecord->DeviceTables[VR_X_PLACEMENT_DEVICE])
    [all...]

Completed in 1170 milliseconds

1 23 4 5 6 7 8 9