Lines Matching +full:fifo +full:- +full:size
21 * @brief Helper function for invokeSBEChipOperation(),to write to the SBE FIFO
26 * - Device driver internal failures
28 * @param[in] FIFO device path associated with SBE.
29 * @param[in] Command buffer to be written to the SBE FIFO
47 * - SBE Internal failures
49 * @param[in/out] On input - SBE data obtained from the SBE FIFO device.
50 * On output - Chip operation data after removing the response
59 * write to the SBE FIFO and validates the data obtained by the SBE. It throws
63 * - Device driver failures
64 * - SBE internal failures
66 * @param[in] FIFO device path associated with the SBE.
77 // Write and read from the FIFO device. in invokeSBEChipOperation()
79 request.size(), chipOpData.size()); in invokeSBEChipOperation()
85 if (sbeFifoResp.size() > chipOpData.size()) in invokeSBEChipOperation()
90 << sbeFifoResp.size() in invokeSBEChipOperation()
93 << chipOpData.size(); in invokeSBEChipOperation()