Searched refs:fDevice (Results 101 - 125 of 148) sorted by relevance

123456

/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamDeframer.h63 CamDevice *fDevice; member in class:CamDeframer
H A DCamDevice.cpp43 fDevice(_device),
92 return _device == fDevice;
99 return fDevice;
106 fDevice = NULL;
115 return (fDevice != NULL);
/haiku/src/servers/input/
H A DInputServerDevice.cpp19 fDevice(device)
H A DInputServer.cpp69 fDevice(),
72 fDevice.name = strdup(device.name);
73 fDevice.type = device.type;
74 fDevice.cookie = device.cookie;
80 free(fDevice.name);
87 PRINT((" Starting: %s\n", fDevice.name));
88 status_t err = fServerDevice->Start(fDevice.name, fDevice.cookie);
99 PRINT((" Stopping: %s\n", fDevice.name));
100 fServerDevice->Stop(fDevice
[all...]
/haiku/headers/os/storage/
H A DQuery.h104 dev_t fDevice; member in class:BQuery
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DASIXDevice.h90 usb_device fDevice; member in class:ASIXDevice
H A DMIIBus.h134 usb_device fDevice; member in class:MIIBus
/haiku/src/add-ons/kernel/busses/usb/
H A Duhci.cpp508 fDevice(device),
549 fRegisterBase = fPci->read_pci_config(fDevice, PCI_memory_base, 4);
560 command |= fPci->read_pci_config(fDevice, PCI_command, 2);
562 fPci->write_pci_config(fDevice, PCI_command, 2, command);
568 fPci->write_pci_config(fDevice, PCI_LEGSUP, 2, PCI_LEGSUP_USBPIRQDEN
690 if (fPci->get_msi_count(fDevice) >= 1) {
692 if (fPci->configure_msi(fDevice, 1, &msiVector) == B_OK
693 && fPci->enable_msi(fDevice) == B_OK) {
765 fPci->disable_msi(fDevice);
766 fPci->unconfigure_msi(fDevice);
[all...]
H A Dehci.cpp325 fDevice(device),
412 uint32 workaround = fPci->read_pci_config(fDevice,
415 fPci->write_pci_config(fDevice, AMD_SBX00_EHCI_MISC_REGISTER, 4,
421 uint16 command = fPci->read_pci_config(fDevice, PCI_command, 2);
425 fPci->write_pci_config(fDevice, PCI_command, 2, command);
471 uint32 legacySupport = fPci->read_pci_config(fDevice, extendedCapPointer, 4);
477 fPci->write_pci_config(fDevice, extendedCapPointer + 3, 1, 1);
480 legacySupport = fPci->read_pci_config(fDevice,
502 fPci->write_pci_config(fDevice, extendedCapPointer + 2, 1, 0);
503 fPci->write_pci_config(fDevice, extendedCapPointe
[all...]
H A Dxhci.cpp347 fDevice(device),
383 uint16 command = fPci->read_pci_config(fDevice, PCI_command, 2);
387 fPci->write_pci_config(fDevice, PCI_command, 2, command);
535 if (fPci->get_msix_count(fDevice) >= 1) {
537 if (fPci->configure_msix(fDevice, 1, &msiVector) == B_OK
538 && fPci->enable_msix(fDevice) == B_OK) {
545 if (fPci->get_msi_count(fDevice) >= 1) {
547 if (fPci->configure_msi(fDevice, 1, &msiVector) == B_OK
548 && fPci->enable_msi(fDevice) == B_OK) {
599 fPci->disable_msi(fDevice);
[all...]
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPInterface.h131 { return fDevice; }
292 KPPPDevice *fDevice; member in class:KPPPInterface
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DVolume.h57 int Device() const { return fDevice; }
156 int fDevice; member in class:Volume
/haiku/src/system/boot/loader/file_systems/amiga_ffs/
H A Damiga_ffs.h154 int32 fDevice; member in class:FFS::HashIterator
199 status_t get_root_block(int fDevice, char *buffer, int32 blockSize, off_t partitionSize);
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DVolume.cpp138 fDevice = opener.Device();
139 if (fDevice < B_OK) {
141 return fDevice;
148 status_t status = Identify(fDevice, &fSuperBlock);
355 close(fDevice);
/haiku/src/add-ons/kernel/drivers/network/ether/usb_davicom/
H A DDavicomDevice.cpp98 : fDevice(device),
513 fDevice = device;
540 = gUSBModule->get_nth_configuration(fDevice, 0);
601 gUSBModule->set_configuration(fDevice, config);
1024 status_t result = gUSBModule->send_request(fDevice,
1045 status_t result = gUSBModule->send_request(fDevice,
1058 status_t result = gUSBModule->send_request(fDevice,
H A DDavicomDevice.h154 usb_device fDevice; member in class:DavicomDevice
/haiku/src/preferences/bluetooth/
H A DBluetoothDeviceView.cpp27 fDevice(bDevice)
/haiku/src/preferences/keymap/
H A DKeyboardLayoutView.h132 BInputServerDevice* fDevice; member in class:KeyboardLayoutView
/haiku/src/system/boot/loader/file_systems/fat/
H A DVolume.cpp36 if ((fDevice = open_node(partition, O_RDONLY)) < B_OK)
170 close(fDevice);
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPInterface.cpp113 fDevice(NULL),
339 if (Parent() && !fDevice)
341 } else if (!fDevice)
972 if (fDevice && (IsUp() || fDevice->IsUp()))
975 fDevice = device;
978 if (fDevice)
979 fMRU = fDevice->MTU() - 2;
/haiku/src/add-ons/kernel/bus_managers/ata/
H A DATAPrivate.h276 ATADevice * Device() const { return fDevice; }
328 ATADevice * fDevice; member in class:ATARequest
/haiku/src/kits/storage/disk_device/
H A DPartition.cpp89 fDevice(NULL),
666 return fDevice;
1285 fDevice = device;
1294 error = child->_SetTo(fDevice, this, fPartitionData->children[i]);
1320 fDevice = NULL;
1406 error = child->_SetTo(fDevice, this, childData);
/haiku/src/add-ons/kernel/drivers/audio/usb/
H A DDevice.cpp23 fDevice(device),
441 fDevice = device;
789 = gUSBModule->get_nth_configuration(fDevice, 0);
837 status_t status = gUSBModule->set_configuration(fDevice, config);
842 fStreams[i]->OnSetConfiguration(fDevice, config);
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dkernel_interface.cpp93 int Device() const { return fDevice; }
128 int fDevice; member in class:Volume
569 fDevice(-1),
588 if (fDevice >= 0)
589 close(fDevice);
620 fDevice = open(device, O_RDONLY);
621 if (fDevice < 0)
630 status_t status = read_table_of_contents(fDevice, toc, 1024);
658 if (read_cdtext(fDevice, text) == B_OK)
748 DetermineName(fDiscID, fDevice, titl
[all...]
/haiku/src/add-ons/media/media-add-ons/esound_sink/
H A DESDSinkNode.h357 ESDEndpoint *fDevice; member in class:ESDSinkNode

Completed in 202 milliseconds

123456