| 178 | } |
| 179 | |
| 180 | inline bool FlushImpl() { |
| 181 | if (Out_.Avail()) { |
| 182 | TransferData(&Out_, Slave_); |
| 183 | Out_.Reset(nullptr, 0); |
| 184 | |
| 185 | return true; |
| 186 | } |
| 187 | |
| 188 | return false; |
| 189 | } |
| 190 | |
| 191 | inline void SwitchTo() { |
| 192 | do { |
nothing calls this directly
no test coverage detected