OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sc_console_readidx
(Results
1 - 2
of
2
) sorted by relevancy
/src/sys/dev/sdmmc/
if_bwfm_sdio.c
116
uint32_t
sc_console_readidx
;
member in struct:bwfm_sdio_softc
2147
if (newidx != sc->
sc_console_readidx
)
2149
while (newidx != sc->
sc_console_readidx
) {
2150
uint8_t ch = sc->sc_console_buf[sc->
sc_console_readidx
];
2151
sc->
sc_console_readidx
++;
2152
if (sc->
sc_console_readidx
== sc->sc_console_buf_size)
2153
sc->
sc_console_readidx
= 0;
/src/sys/dev/pci/
if_bwfm_pci.c
159
uint32_t
sc_console_readidx
;
member in struct:bwfm_pci_softc
745
sc->
sc_console_readidx
= 0;
1995
if (newidx != sc->
sc_console_readidx
)
1997
while (newidx != sc->
sc_console_readidx
) {
1999
sc->sc_console_buf_addr + sc->
sc_console_readidx
);
2000
sc->
sc_console_readidx
++;
2001
if (sc->
sc_console_readidx
== sc->sc_console_buf_size)
2002
sc->
sc_console_readidx
= 0;
Completed in 22 milliseconds
Indexes created Sat Feb 21 16:20:20 UTC 2026