Searched defs:bus (Results 1 - 25 of 44) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/drivers/nvs/
H A Dthreewire.c45 struct spi_bus *bus = device->bus; local
48 assert ( bus->mode == SPI_MODE_THREEWIRE );
53 if ( ( rc = bus->rw ( bus, device, THREEWIRE_READ, address,
75 struct spi_bus *bus = device->bus; local
78 assert ( bus->mode == SPI_MODE_THREEWIRE );
84 if ( ( rc = bus->rw ( bus, devic
[all...]
H A Dspi.c58 struct spi_bus *bus = device->bus; local
65 if ( ( rc = bus->rw ( bus, device, SPI_RDSR, -1, NULL,
87 struct spi_bus *bus = device->bus; local
93 if ( ( rc = bus->rw ( bus, device, command, address,
114 struct spi_bus *bus = device->bus; local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/drivers/net/
H A Dundiload.c87 unsigned int bus = ( undi->pci_busdevfn >> 8 ); local
90 bus, PCI_SLOT ( devfn ), PCI_FUNC ( devfn ) );
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dspi_bit.h15 /** A bit-bashing SPI bus */
17 /** SPI bus */
18 struct spi_bus bus; member in struct:spi_bit_basher
H A Dspi.h84 * SPI bus.
89 /** SPI bus to which device is attached */
90 struct spi_bus *bus; member in struct:spi_device
121 * An SPI bus
123 * This data structure represents an SPI bus controller capable of
138 * Read/write data via SPI bus
140 * @v bus SPI bus
152 int ( * rw ) ( struct spi_bus *bus, struct spi_device *device,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
57 BusRec bus; member in struct:__anon6893
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
57 BusRec bus; member in struct:__anon7206
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
56 BusRec bus; member in struct:__anon9519
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
56 BusRec bus; member in struct:__anon5045
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
56 BusRec bus; member in struct:__anon5357
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
56 BusRec bus; member in struct:__anon5669
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
57 BusRec bus; member in struct:__anon5977
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
57 BusRec bus; member in struct:__anon6280
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
57 BusRec bus; member in struct:__anon6578
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
56 BusRec bus; member in struct:__anon8885
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dxf86Bus.h29 * This file contains definitions of the bus-related data structures/types.
56 BusRec bus; member in struct:__anon9199
/vbox/src/VBox/Devices/PC/BIOS/
H A Dpciutil.c110 * Returns the bus/device/function of a PCI device with
113 * @returns bus/device/fn in a 16-bit integer where
114 * where the upper byte contains the bus number
124 uint32_t pci_read_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg) argument
126 return pci_read_cfgb((PCIBIOS_ID << 8) | PCIBIOS_READ_CONFIG_BYTE, (bus << 8) | dev_fn, reg);
129 uint32_t pci_read_config_word(uint8_t bus, uint8_t dev_fn, uint8_t reg) argument
131 return pci_read_cfgw((PCIBIOS_ID << 8) | PCIBIOS_READ_CONFIG_WORD, (bus << 8) | dev_fn, reg);
134 uint32_t pci_read_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg) argument
136 return pci_read_cfgd((PCIBIOS_ID << 8) | PCIBIOS_READ_CONFIG_DWORD, (bus << 8) | dev_fn, reg);
141 * Returns the bus/devic
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/converter/
H A DUIConverterBackendCOM.cpp467 template<> QString toString(const KStorageBus &bus) argument
469 switch (bus)
476 AssertMsgFailed(("No text for %d", bus)); break;
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bitbash/
H A Dspi_bit.c62 state ^= ( spibit->bus.mode & SPI_MODE_SSPOL );
72 * Transfer bits over SPI bit-bashing bus
74 * @v bus SPI bus
80 * This issues @c len clock cycles on the SPI bus, shifting out data
89 struct spi_bus *bus = &spibit->bus; local
91 unsigned int sclk = ( ( bus->mode & SPI_MODE_CPOL ) ? 1 : 0 );
92 unsigned int cpha = ( ( bus->mode & SPI_MODE_CPHA ) ? 1 : 0 );
100 spibit, len, bus
156 spi_bit_rw( struct spi_bus *bus, struct spi_device *device, unsigned int command, int address, const void *data_out, void *data_in, size_t len ) argument
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIDefs.h121 StorageSlot() : bus(KStorageBus_Null), port(0), device(0) {}
122 StorageSlot(const StorageSlot &other) : bus(other.bus), port(other.port), device(other.device) {}
123 StorageSlot(KStorageBus otherBus, LONG iPort, LONG iDevice) : bus(otherBus), port(iPort), device(iDevice) {}
124 StorageSlot& operator=(const StorageSlot &other) { bus = other.bus; port = other.port; device = other.device; return *this; }
125 bool operator==(const StorageSlot &other) const { return bus == other.bus && port == other.port && device == other.device; }
126 bool operator!=(const StorageSlot &other) const { return bus != other.bus || por
134 KStorageBus bus; LONG port; LONG device; member in struct:StorageSlot
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86Bus.h30 * This file contains definitions of the bus-related data structures/types.
66 BusRec bus; member in struct:__anon7520
93 #define busType bus.type
94 #define pciBusId bus.id.pci
95 #define isaBusId bus.id.isa
96 #define sbusBusId bus.id.sbus
107 struct x_BusAccRec *current; /* pointer to bridge open on this bus */
108 struct x_BusAccRec *primary; /* pointer to the bus connecting to this */
115 int bus; member in struct:x_BusAccRec::__anon7521::__anon7522
H A Dxf86int10.h64 BusType bus; member in struct:__anon7624
67 int bus; member in struct:__anon7624::__anon7625::__anon7626
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86Bus.h30 * This file contains definitions of the bus-related data structures/types.
66 BusRec bus; member in struct:__anon7889
93 #define busType bus.type
94 #define pciBusId bus.id.pci
95 #define isaBusId bus.id.isa
96 #define sbusBusId bus.id.sbus
107 struct x_BusAccRec *current; /* pointer to bridge open on this bus */
108 struct x_BusAccRec *primary; /* pointer to the bus connecting to this */
115 int bus; member in struct:x_BusAccRec::__anon7890::__anon7891
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dxf86Bus.h30 * This file contains definitions of the bus-related data structures/types.
66 BusRec bus; member in struct:__anon8245
93 #define busType bus.type
94 #define isaBusId bus.id.isa
95 #define sbusBusId bus.id.sbus
106 struct x_BusAccRec *current; /* pointer to bridge open on this bus */
107 struct x_BusAccRec *primary; /* pointer to the bus connecting to this */
114 int bus; member in struct:x_BusAccRec::__anon8246::__anon8247
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dxf86Bus.h30 * This file contains definitions of the bus-related data structures/types.
66 BusRec bus; member in struct:__anon8562
93 #define busType bus.type
94 #define isaBusId bus.id.isa
95 #define sbusBusId bus.id.sbus
106 struct x_BusAccRec *current; /* pointer to bridge open on this bus */
107 struct x_BusAccRec *primary; /* pointer to the bus connecting to this */
114 int bus; member in struct:x_BusAccRec::__anon8563::__anon8564

Completed in 113 milliseconds

12