| 386 | } |
| 387 | void preRead(void* ctx, const char* fn_name) override { communicate("preRead", ctx, fn_name); } |
| 388 | void postRead(void* ctx, const char* fn_name, uint32_t bytes) override { |
| 389 | (void)bytes; |
| 390 | communicate("postRead", ctx, fn_name); |
| 391 | } |
| 392 | void preWrite(void* ctx, const char* fn_name) override { communicate("preWrite", ctx, fn_name); } |
| 393 | void postWrite(void* ctx, const char* fn_name, uint32_t bytes) override { |
| 394 | (void)bytes; |
nothing calls this directly
no test coverage detected