Searched refs:next (Results 276 - 300 of 546) sorted by path

<<11121314151617181920>>

/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDParser.cpp373 global_item_state *next = state->link; local
375 state = next;
H A DProtocolHandler.h54 void SetNextHandler(ProtocolHandler *next);
/haiku/src/add-ons/kernel/drivers/input/i2c_hid/
H A DHIDDevice.cpp126 ProtocolHandler *next = handler->NextHandler(); local
128 handler = next;
/haiku/src/add-ons/kernel/drivers/input/usb_hid/
H A DHIDDevice.cpp222 ProtocolHandler *next = handler->NextHandler(); local
224 handler = next;
/haiku/src/add-ons/kernel/drivers/input/virtio_input/
H A Dvirtio_input.cpp44 int32 next; member in struct:Packet
193 dev->packets[i].next = i + 1;
194 dev->packets[dev->packetCnt - 1].next = -1;
217 dev->packets[dev->lastReadyPacket].next = pkt - dev->packets;
229 dev->readyPackets = pkt->next;
/haiku/src/add-ons/kernel/drivers/input/wacom/
H A Dwacom.c39 wacom_device* next; member in struct:wacom_device
293 device->next = sDeviceList;
325 for (device = sDeviceList; device; device = device->next) {
361 sDeviceList = device->next;
364 for (n = sDeviceList; n; n = n->next) {
365 if (n->next == device) {
366 n->next = device->next;
410 for (device = sDeviceList; device; device = device->next) {
725 for (i = 0, device = sDeviceList; device; device = device->next) {
[all...]
/haiku/src/add-ons/kernel/drivers/midi/usb_midi/
H A Dusb_midi.cpp48 port->next = NULL;
162 struct driver_cookie* next; member in struct:driver_cookie
232 callback: got a report, issue next request
280 /* issue next request */
H A Dusb_midi.h109 struct usbmidi_port_info* next; member in struct:usbmidi_port_info
/haiku/src/add-ons/kernel/drivers/network/ether/3com/dev/xl/
H A Dif_xl.c1731 int error, i, next; local
1749 next = 0;
1751 next = i + 1;
1753 next * sizeof(struct xl_list_onefrag);
1754 cd->xl_rx_chain[i].xl_next = &cd->xl_rx_chain[next];
1878 * it should simply get re-used next time this descriptor
2155 * to clear this interrupt/error and advance to the next.
/haiku/src/add-ons/kernel/drivers/network/ether/marvell_yukon/dev/msk/
H A Dif_msk.c1205 int next; local
1224 for (i = 0, next = 0; i < sc->msk_num_port; i++) {
1225 sc->msk_rxqstart[i] = next;
1226 sc->msk_rxqend[i] = next + sc->msk_rxqsize - 1;
1227 next = sc->msk_rxqend[i] + 1;
1228 sc->msk_txqstart[i] = next;
1229 sc->msk_txqend[i] = next + sc->msk_txqsize - 1;
1230 next = sc->msk_txqend[i] + 1;
/haiku/src/add-ons/kernel/drivers/network/ether/nforce/dev/nfe/
H A Dif_nfe.c1116 ring->cur = ring->next = 0;
1325 ring->cur = ring->next = 0;
1492 ring->cur = ring->next = 0;
1568 ring->cur = ring->next = 0;
2354 for (cons = sc->txq.next; cons != sc->txq.cur;
2403 sc->txq.next = cons;
H A Dif_nfevar.h36 int next; member in struct:nfe_tx_ring
55 int next; member in struct:nfe_rx_ring
/haiku/src/add-ons/kernel/drivers/network/ether/pegasus/
H A Ddevlist.c36 device->next = sDeviceList;
52 sDeviceList = device->next;
57 for (previous = sDeviceList; previous != NULL; previous = previous->next) {
58 if (previous->next == device) {
59 previous->next = device->next;
77 for (device = sDeviceList; device != NULL; device = device->next) {
121 for (i = 0, device = sDeviceList; device != NULL; device = device->next) {
H A Ddriver.c19 struct driver_cookie *next; member in struct:driver_cookie
464 cookie->next = device->open_fds;
703 device->open_fds = cookie->next;
706 for (p = device->open_fds; p != NULL; p = p->next) {
707 if (p->next == cookie) {
708 p->next = cookie->next;
H A Ddriver.h82 struct _pegasus_dev *next; member in struct:_pegasus_dev
/haiku/src/add-ons/kernel/drivers/network/ether/sis900/dev/sis/
H A Dif_sis.c1368 bus_addr_t next; local
1376 next = SIS_TX_RING_ADDR(sc, 0);
1378 next = SIS_TX_RING_ADDR(sc, i + 1);
1379 sc->sis_tx_list[i].sis_next = htole32(SIS_ADDR_LO(next));
1391 next = SIS_RX_RING_ADDR(sc, 0);
1393 next = SIS_RX_RING_ADDR(sc, i + 1);
1394 rxd->rx_desc->sis_next = htole32(SIS_ADDR_LO(next));
/haiku/src/add-ons/kernel/drivers/network/ether/wb840/
H A Dwb840.c135 mii->next = device->firstPHY;
H A Dwb840.h387 struct mii_phy *next; member in struct:mii_phy
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/
H A Dah.h333 * is done after a successful transmission, the next fragment
337 * access procedure is done before the next transmit (i.e.
693 uint8_t controlRate; /* index of next lower basic
829 uint32_t bs_nexttbtt; /* next beacon in TU */
830 uint32_t bs_nextdtim; /* next DTIM in TU */
845 uint32_t bs_cfpnext; /* next CFP in TU */
858 uint32_t bt_nexttbtt; /* next beacon in TU */
859 uint32_t bt_nextatim; /* next ATIM in TU */
860 uint32_t bt_nextdba; /* next DBA in 1/8th TU */
861 uint32_t bt_nextswba; /* next SWB
[all...]
H A Dah_regdomain.c763 int i, j, next, freq; local
765 next = 0;
775 if (next >= N(AH_PRIVATE(ah)->ah_channels)) {
792 __func__, next, c->ic_freq, c->ic_flags, freq);
794 ic = &AH_PRIVATE(ah)->ah_channels[next];
802 c->ic_devdata = next;
803 next++;
806 AH_PRIVATE(ah)->ah_nchan = next;
808 __func__, nchans, next);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath.c1460 * address and use the next six bits as an index.
1503 * to go out before the next beacon is scheduled.
2441 * frame config alone) until the next beacon, so we can resync
2442 * against the next beacon.
3285 struct mbuf *next; local
3435 * Calculate the "next fragment" length field in ath_buf
3437 * what to next write to the hardware.
3446 * the next size to the following buffer.
3476 next = m->m_nextpkt;
3507 if (next !
[all...]
H A Dif_ath_rx_edma.c555 struct ath_buf *bf, *next; local
581 TAILQ_FOREACH_SAFE(bf, &rxlist, bf_list, next) {
H A Dif_ath_tx.c259 struct ath_buf *bf, *next; local
263 TAILQ_FOREACH_SAFE(bf, frags, bf_list, next) {
396 * before advancing to the next descriptor.
408 * Go to the next segment if this isn't the last segment
477 * Don't forget to skip to the next descriptor.
638 /* Save a copy so we can link the next descriptor in */
1148 * Include the size of next fragment so NAV is
1164 * Force hardware to use computed duration for next
2789 * seq_next - current/next sequence number to allocate
3402 * Override the clrdmask configuration for the next fram
5752 struct ath_tid *tid, *next, *last; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/broadcom43xx/dev/bwi/
H A Dif_bwi.c2614 goto next;
2632 goto next;
2668 next:
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2100/dev/ipw/
H A Dif_ipwvar.h47 SLIST_ENTRY(ipw_soft_hdr) next; member in struct:ipw_soft_hdr
54 SLIST_ENTRY(ipw_soft_buf) next; member in struct:ipw_soft_buf

Completed in 216 milliseconds

<<11121314151617181920>>