HomeSort by relevance Sort by last modified time
    Searched defs:devices (Results 26 - 50 of 191) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_udev.c 222 struct udev_list_entry *devices, *entry; local
237 devices = udev_enumerate_get_list_entry(enumerator);
239 udev_list_entry_foreach(entry, devices) {
  /external/chromium_org/tools/xdisplaycheck/
xdisplaycheck.cc 97 // Ask for the list of devices. This can cause some Xvfb to crash.
99 XIDeviceInfo* devices = local
101 if (devices)
102 XIFreeDeviceInfo(devices);
  /external/chromium_org/ui/base/x/
events_x_unittest.cc 107 void SetupTouchFactory(const std::vector<unsigned int>& devices) {
109 factory->SetTouchDeviceForTest(devices);
112 void SetupDeviceDataManager(const std::vector<unsigned int>& devices) {
114 manager->SetDeviceListForTest(devices);
115 for (size_t i = 0; i < devices.size(); i++) {
118 devices[i],
239 std::vector<unsigned int> devices; local
240 devices.push_back(0);
241 SetupTouchFactory(devices);
242 SetupDeviceDataManager(devices);
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothManager.java 106 * Get connected devices for the specified profile.
108 * <p> Return the set of devices which are in state {@link BluetoothProfile#STATE_CONNECTED}
118 * @return List of devices. The list will be empty on error.
144 * Get a list of devices that match any of the given connection
147 * <p> If none of the devices match any of the given states,
162 * @return List of devices. The list will be empty on error.
171 List<BluetoothDevice> devices = new ArrayList<BluetoothDevice>(); local
176 if (iGatt == null) return devices;
177 devices = iGatt.getDevicesMatchingConnectionStates(states);
182 return devices;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothController.java 82 Set<BluetoothDevice> devices = adapter.getBondedDevices(); local
83 if (devices != null) {
84 for (BluetoothDevice device : devices) {
  /frameworks/base/services/jni/
com_android_server_LightsService.cpp 47 struct Devices {
67 Devices* devices; local
69 devices = (Devices*)malloc(sizeof(Devices));
73 devices->lights[LIGHT_INDEX_BACKLIGHT]
75 devices->lights[LIGHT_INDEX_KEYBOARD]
77 devices->lights[LIGHT_INDEX_BUTTONS]
79 devices->lights[LIGHT_INDEX_BATTERY
98 Devices* devices = (Devices*)ptr; local
109 Devices* devices = (Devices*)ptr; local
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
VoldExploitTest.java 98 Set<String> devices = new HashSet<String>(); local
99 devices.addAll(getSysFsPath("/etc/vold.fstab"));
100 devices.addAll(getSysFsPath("/system/etc/vold.fstab"));
101 if (devices.isEmpty()) {
109 for (String j : devices) {
  /external/bluetooth/bluedroid/btif/include/
btif_hh.h 74 /* Control block to maintain properties of devices */
83 * BTIF-HH control block to maintain added devices and currently
84 * connected hid devices
89 btif_hh_device_t devices[BTIF_HH_MAX_HID]; member in struct:__anon3339
  /external/chromium/base/
message_pump_glib_x.cc 286 // Instead of asking X for the list of devices all the time, let's maintain a
287 // list of pointer devices we care about.
288 // It is not necessary to select for slave devices. XInput2 provides enough
295 // also select on the floating devices.
297 XIDeviceInfo* devices = XIQueryDevice(xdisplay, XIAllDevices, &count); local
299 XIDeviceInfo* devinfo = devices + i;
303 XIFreeDeviceInfo(devices);
  /external/chromium_org/chrome/browser/extensions/api/audio/
audio_service_chromeos.cc 199 chromeos::AudioDeviceList devices; local
200 cras_audio_handler_->GetAudioDevices(&devices);
202 for (size_t i = 0; i < devices.size(); ++i) {
203 if (devices[i].id == id) {
204 *device = devices[i];
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_apitest.cc 541 BluetoothAdapter::ConstDeviceList devices; local
542 devices.push_back(device1_.get());
543 devices.push_back(device2_.get());
553 .WillRepeatedly(testing::Return(devices));
  /external/chromium_org/chrome/browser/storage_monitor/
media_storage_util.cc 54 StorageInfoList devices = local
56 for (StorageInfoList::const_iterator it = devices.begin();
57 it != devices.end(); ++it) {
65 void FilterAttachedDevicesOnFileThread(MediaStorageUtil::DeviceIdSet* devices) {
69 for (MediaStorageUtil::DeviceIdSet::const_iterator it = devices->begin();
70 it != devices->end();
95 devices->erase(*it);
130 void MediaStorageUtil::FilterAttachedDevices(DeviceIdSet* devices,
133 FilterAttachedDevicesOnFileThread(devices);
140 devices),
245 StorageInfoList devices = local
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_media_device_manager.cc 225 std::vector<ppapi::DeviceRefData> devices; local
227 devices.reserve(device_array.size());
230 devices.push_back(FromStreamDeviceInfo(*info));
233 callback.Run(request_id, succeeded, devices);
  /external/chromium_org/device/bluetooth/
bluetooth_adapter_win_unittest.cc 488 ScopedVector<BluetoothTaskManagerWin::DeviceState> devices; local
489 devices.push_back(android_phone_state);
490 devices.push_back(laptop_state);
491 devices.push_back(iphone_state);
493 adapter_win_->DevicesDiscovered(devices);
  /external/chromium_org/media/audio/pulse/
audio_manager_pulse.cc 71 media::AudioDeviceNames devices; local
73 devices_ = &devices;
77 return !devices.empty();
81 media::AudioDeviceNames devices; local
82 GetAudioInputDeviceNames(&devices);
83 return !devices.empty();
287 // Exclude the output devices.
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
devicemanager_unittest.cc 28 #include "talk/media/devices/devicemanager.h"
45 #include "talk/media/devices/filevideocapturer.h"
46 #include "talk/media/devices/v4llookup.h"
108 std::vector<Device> devices; local
111 EXPECT_TRUE(dm->GetVideoCaptureDevices(&devices));
135 // Test enumerating devices (although we may not find any).
147 // If we have any video devices, we should be able to pick a default.
153 // Test that we return correct ids for default and bogus devices.
220 static bool CompareDeviceList(std::vector<Device>& devices,
222 if (list_size != static_cast<int>(devices.size()))
255 std::vector<Device> devices; local
288 std::vector<std::string> devices; local
315 std::vector<std::string> devices; local
344 std::vector<std::string> devices; local
    [all...]
fakedevicemanager.h 38 #include "talk/media/devices/devicemanager.h"
51 std::vector<Device> devices; local
152 void SetAudioInputDevices(const std::vector<std::string>& devices) {
154 for (size_t i = 0; i < devices.size(); ++i) {
155 input_devices_.push_back(Device(devices[i],
160 void SetAudioOutputDevices(const std::vector<std::string>& devices) {
162 for (size_t i = 0; i < devices.size(); ++i) {
163 output_devices_.push_back(Device(devices[i],
168 void SetVideoCaptureDevices(const std::vector<std::string>& devices) {
170 for (size_t i = 0; i < devices.size(); ++i)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gbm/main/
gbm.c 47 struct gbm_device *devices[16]; variable in typeref:struct:gbm_device
118 dev = devices[i]->stat.st_rdev;
121 gbm = devices[i];
154 memset(devices, 0, sizeof devices);
164 if (device_num < ARRAY_SIZE(devices)-1)
165 devices[device_num++] = gbm;
  /external/mesa3d/src/gbm/main/
gbm.c 47 struct gbm_device *devices[16]; variable in typeref:struct:gbm_device
118 dev = devices[i]->stat.st_rdev;
121 gbm = devices[i];
154 memset(devices, 0, sizeof devices);
164 if (device_num < ARRAY_SIZE(devices)-1)
165 devices[device_num++] = gbm;
  /external/openssh/
auth2-chall.c 64 KbdintDevice *devices[] = { variable
81 char *devices; member in struct:KbdintAuthctxt
93 for (i = 0; devices[i] != NULL; i++)
94 if (strcmp(devices[i]->name, devname) == 0) {
95 for (j = i; devices[j] != NULL; j++)
96 devices[j] = devices[j+1];
117 for (i = 0; devices[i]; i++) {
120 buffer_append(&b, devices[i]->name,
121 strlen(devices[i]->name))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
i2c.h 63 struct list_head devices; /* attached devices to this bus */ member in struct:snd_i2c_bus
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
i2c.h 63 struct list_head devices; /* attached devices to this bus */ member in struct:snd_i2c_bus
  /sdk/dumpeventlog/src/com/android/dumpeventlog/
DumpEventLog.java 116 // now get the devices
117 IDevice[] devices = bridge.getDevices(); local
119 for (IDevice device : devices) {
  /cts/tests/tests/bluetooth/src/android/bluetooth/cts/
BasicAdapterTest.java 163 Set<BluetoothDevice> devices = adapter.getBondedDevices(); local
164 assertNotNull(devices);
165 for (BluetoothDevice device : devices) {
  /external/blktrace/btt/
bt_timeline.c 30 char *devices, *exes, *input_name, *output_name, *seek_name, *bno_dump_name; variable

Completed in 1228 milliseconds

12 3 4 5 6 7 8