Searched refs:devices (Results 1 - 25 of 53) sorted by path

123

/haiku/headers/private/firewire/
H A Dfirewirereg.h182 STAILQ_HEAD(, fw_device) devices; member in struct:firewire_comm
/haiku/src/add-ons/input_server/devices/serial_mouse/
H A DMouseInputDevice.cpp168 input_device_ref* devices[2]; local
169 devices[0] = &device->device_ref;
170 devices[1] = NULL;
174 return RegisterDevices(devices);
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A DTODO17 #10) Make reservation of devices more flexible (can switch it off).
25 #18) Support of autosense on fake devices
26 #-INVALID-19)Locking for fake devices too
27 #20) What with write-protected devices?
43 36) Handle FORMAT_UNIT for UFI devices.
44 #37) Locking of global devices table
53 #46) Add "invalid" devices entries. Check your mailing for information.
56 #49) Handling 0xA1 (Blank) command for C/DVD-RW devices. Should be like FORMAT UNIT?
/haiku/src/add-ons/kernel/drivers/audio/echo/
H A Decho.h136 extern struct _echodevs devices;
/haiku/src/add-ons/kernel/drivers/bus/firewire/
H A Dfw_raw.c78 static char ** devices; variable
165 if (strcmp(name, devices[i]) == 0) {
881 STAILQ_FOREACH(fwdev, &fc->devices, link) {
900 STAILQ_FOREACH(fwdev, &fc->devices, link)
950 return (const char **)devices;
1000 devices = malloc(sizeof(char *) * (devices_count + 1));
1001 if (!devices) {
1006 devices[i] = strdup(fwname);
1007 snprintf(devices[i], FWNAMEMAX, fwname, i);
1009 devices[devices_coun
[all...]
/haiku/src/add-ons/kernel/drivers/bus/pcmcia/
H A Dds.c28 static char ** devices; variable
44 if (strcmp(name, devices[i]) == 0) {
326 return (const char **)devices;
379 devices = malloc(sizeof(char *) * (devices_count+1));
380 if (!devices) {
386 devices[i] = strdup(sockname);
387 sprintf(devices[i], sockname, i);
389 devices[devices_count] = NULL;
400 free (devices[i]);
402 free(devices);
[all...]
/haiku/src/add-ons/kernel/drivers/common/
H A Dconsole.cpp818 static const char *devices[] = { local
823 return devices;
H A Ddprintf.cpp135 static const char *devices[] = { local
140 return devices;
H A Dnull.c76 static const char *devices[] = { local
81 return devices;
H A Dzero.c77 static const char *devices[] = { local
82 return devices;
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A Dglobal_data.c15 radeon_devices *devices; variable
H A Dradeon_driver.h180 extern radeon_devices *devices;
/haiku/src/servers/input/
H A DInputServerDevice.cpp117 BInputServerDevice::RegisterDevices(input_device_ref** devices) argument
120 return gInputServer->RegisterDevices(*this, devices);
125 BInputServerDevice::UnregisterDevices(input_device_ref** devices) argument
128 // TODO: is this function supposed to remove devices that do not belong to this object?
130 return gInputServer->UnregisterDevices(*this, devices);
/haiku/src/tests/add-ons/kernel/busses/scsi/example/
H A Dexample_scsi.c90 example_get_supported_paths(const char ***busses, const char ***devices) argument
97 *devices = sDevices;
/haiku/src/tests/kits/storage/
H A DVolumeTest.cpp443 GetAllDevices(set<dev_t> &devices) argument
461 devices.insert(device);
486 // iterate through the first i devices
487 set<dev_t> devices(allDevices);
494 CHK(devices.find(device) != devices.end());
495 devices.erase(device);
497 // rewind and iterate through all devices
498 devices = allDevices;
506 CHK(devices
[all...]
/haiku/src/tests/system/kernel/device_manager/
H A Dconfig.c187 static const char *devices[] = { local
192 return devices;
/haiku/3rdparty/korli/
H A Dgenerate_ids_from_drivers.sh130 pciBsdWlanDriver broadcom43xx bwi bwi devices reg _pci
136 table=devices
146 table=devices
/haiku/headers/os/add-ons/input_server/
H A DInputServerDevice.h13 // Register your actual devices using this one - you can subclass
55 status_t RegisterDevices(input_device_ref** devices);
56 status_t UnregisterDevices(input_device_ref** devices);
/haiku/src/add-ons/input_server/devices/easypen/
H A DEasyPenInputDevice.cpp141 input_device_ref *devices[2]; local
142 devices[0] = &device->device_ref;
143 devices[1] = NULL;
146 RegisterDevices(devices);
153 LOG("Found %ld devices\n", fDevices.CountItems());
/haiku/src/add-ons/input_server/devices/keyboard/
H A DKeyboardInputDevice.cpp753 input_device_ref* devices[2];
754 devices[0] = device->DeviceRef();
755 devices[1] = NULL;
759 return RegisterDevices(devices);
775 input_device_ref* devices[2]; local
776 devices[0] = device->DeviceRef();
777 devices[1] = NULL;
779 UnregisterDevices(devices);
/haiku/src/add-ons/input_server/devices/mouse/
H A DMouseInputDevice.cpp879 input_device_ref* devices[2]; local
880 devices[0] = device->DeviceRef();
881 devices[1] = NULL;
883 TRACE("adding path: %s, name: %s\n", path, devices[0]->name);
885 return RegisterDevices(devices);
902 input_device_ref* devices[2]; local
903 devices[0] = device->DeviceRef();
904 devices[1] = NULL;
906 TRACE("removing path: %s, name: %s\n", path, devices[0]->name);
908 UnregisterDevices(devices);
[all...]
/haiku/src/add-ons/input_server/devices/tablet/
H A DTabletInputDevice.cpp594 input_device_ref* devices[2]; local
595 devices[0] = device->DeviceRef();
596 devices[1] = NULL;
598 TRACE("adding path: %s, name: %s\n", path, devices[0]->name);
600 return RegisterDevices(devices);
617 input_device_ref* devices[2]; local
618 devices[0] = device->DeviceRef();
619 devices[1] = NULL;
621 TRACE("removing path: %s, name: %s\n", path, devices[0]->name);
623 UnregisterDevices(devices);
[all...]
/haiku/src/add-ons/input_server/devices/virtio/
H A DVirtioInputDevice.cpp158 static input_device_ref *devices[3]; local
159 input_device_ref **devicesEnd = devices;
189 RegisterDevices(devices);
/haiku/src/add-ons/input_server/devices/virtualkeyboard/
H A DVirtualKeyboardInputDevice.cpp31 static input_device_ref* devices[2] = {&keyboard, NULL}; local
33 RegisterDevices(devices);
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dfirewire.cpp111 STAILQ_FOREACH(fwdev, &fc->devices, link)
130 STAILQ_FOREACH(fwdev, &fc->devices, link)
552 for (fwdev = STAILQ_FIRST(&fc->devices); fwdev != NULL;
870 STAILQ_INIT(&fc->devices);
1485 * To probe devices on the IEEE1394 bus.
1497 /* Invalidate all devices, just after bus reset. */
1502 STAILQ_FOREACH(fwdev, &fc->devices, link)
1660 STAILQ_FOREACH(fwdev, &fc->devices, link)
1682 * 1394a-2000 compliant devices only use
1712 STAILQ_FOREACH(tfwdev, &fc->devices, lin
[all...]

Completed in 231 milliseconds

123