Returns a list of all valid (user-selectable) block sizes. The device may accept block sizes not in this list, but it *must* accept block sizes in the list. */
| 105 | The device may accept block sizes not in this list, but it *must* accept block sizes in the list. |
| 106 | */ |
| 107 | virtual std::set<int> getBlockSizes() { |
| 108 | return {}; |
| 109 | } |
| 110 | /** Returns the current block size. */ |
| 111 | virtual int getBlockSize() { |
| 112 | return 0; |
nothing calls this directly
no outgoing calls
no test coverage detected