Lines Matching refs:firstread

584 uint firstread = DHD_FIRSTREAD;  variable
586 static const uint firstread = DHD_FIRSTREAD; variable
598 static uint firstread = DHD_FIRSTREAD; variable
5021 int_val = (int32)firstread; in dhdsdio_doiovar()
5030 firstread = (uint)int_val; in dhdsdio_doiovar()
6251 bus->rxctl += firstread; in dhdsdio_read_control()
6254 bus->rxctl -= firstread; in dhdsdio_read_control()
6259 bcopy(hdr, bus->rxctl, firstread); in dhdsdio_read_control()
6260 if (len <= firstread) in dhdsdio_read_control()
6270 rdlen = len - firstread; in dhdsdio_read_control()
6285 if ((rdlen + firstread) > bus->dhd->maxctl) { in dhdsdio_read_control()
6305 (bus->rxctl + firstread), rdlen, NULL, NULL, NULL); in dhdsdio_read_control()
6908 ((rdlen + pad + firstread) < MAX_RX_DATASZ)) in dhdsdio_readframes()
6928 bus->rxctl += firstread; in dhdsdio_readframes()
6931 bus->rxctl -= firstread; in dhdsdio_readframes()
7243 bus->rxhdr, firstread, NULL, NULL, NULL); in dhdsdio_readframes()
7360 rdlen = (len > firstread) ? (len - firstread) : 0; in dhdsdio_readframes()
7366 ((rdlen + pad + firstread) < MAX_RX_DATASZ)) in dhdsdio_readframes()
7376 if ((rdlen + firstread) > MAX_RX_DATASZ) { in dhdsdio_readframes()
7385 if (!(pkt = PKTGET(osh, (rdlen + firstread + DHD_SDALIGN), FALSE))) { in dhdsdio_readframes()
7400 ASSERT(firstread < (PKTLEN(osh, pkt))); in dhdsdio_readframes()
7401 PKTPULL(osh, pkt, firstread); in dhdsdio_readframes()
7423 PKTPUSH(osh, pkt, firstread); in dhdsdio_readframes()
7424 bcopy(bus->rxhdr, PKTDATA(osh, pkt), firstread); in dhdsdio_readframes()