Lines Matching defs:data
256 * Configuration data, set during attach
278 * it's still fetching data out of the chip FIFO.
285 * protocol data (since the dog can be patted from a high-level
299 * Serial protocol state data, protected by lo_mutex
319 * (the child's parent-private-data points to this).
328 * Local data
435 * for temporary data and has no effect on the SIO's own
488 * Check for data ready.
647 uint8_t data = 0;
668 data = sio_get_reg(ssp, SIO_RXD);
669 ssp->reply[rcvd = ssp->index] = data;
673 if (data & LOMBUS_LAST)
690 * We're not expecting any data in this state, so if
691 * we DID receive any data, we just throw it away by
709 * Buffer overflow; discard the data & treat as an error
717 } else if ((data & LOMBUS_LAST) == 0) {
724 } else if ((data & LOMBUS_MASK) != LOMBUS_STATUS) {
735 * Otherwise, we just drop the data & flag an error.
751 } else if ((data & LOMBUS_SEQ) != ssp->sequence) {
769 ssp->async = (data & LOMBUS_STATUS_ASYNC) ? 1 : 0;
770 tmp = ((data & LOMBUS_STATUS_MSB) ? 0x80 : 0) | ssp->reply[0];
771 if (data & LOMBUS_STATUS_ERR) {
783 rcvd, data, ssp->cmdstate, ssp->error, ready);
1906 * reference in the child's parent-private-data field.