| 413 | void DataSourceRuntimeHost::cbNotifyState(void* /*ctx*/, PJ_data_source_state_t /*state*/) noexcept {} |
| 414 | |
| 415 | void DataSourceRuntimeHost::cbRequestStop( |
| 416 | void* ctx, PJ_data_source_state_t /*terminal*/, PJ_string_view_t reason) noexcept { |
| 417 | auto* self = static_cast<DataSourceRuntimeHost*>(ctx); |
| 418 | self->requestStop(std::string_view(reason.data, reason.size)); |
| 419 | } |
| 420 | |
| 421 | bool DataSourceRuntimeHost::cbEnsureParserBinding( |
| 422 | void* ctx, const PJ_parser_binding_request_t* request, PJ_parser_binding_handle_t* out, |
nothing calls this directly
no test coverage detected