| 332 | } |
| 333 | |
| 334 | void execute(vuart_av_thread &vuart, const void *pkt_buf) override { |
| 335 | const auto pkt = static_cast<const ps3av_header *>(pkt_buf); |
| 336 | |
| 337 | if (vuart.get_reply_buf_free_size() < sizeof(ps3av_pkt_reply_hdr)) { |
| 338 | vuart.write_resp(pkt->cid, PS3AV_STATUS_BUFFER_OVERFLOW); |
| 339 | return; |
| 340 | } |
| 341 | |
| 342 | vuart.write_resp(pkt->cid, PS3AV_STATUS_SUCCESS); |
| 343 | } |
| 344 | }; |
| 345 | |
| 346 | struct av_get_aksv_list_cmd : public ps3av_cmd { |
nothing calls this directly
no test coverage detected