| 34 | } |
| 35 | |
| 36 | bool message_impl::deserialize(deserializer* _from) { |
| 37 | payload_ = runtime::get()->create_payload(); |
| 38 | bool is_successful = header_.deserialize(_from); |
| 39 | if (is_successful) { |
| 40 | payload_->set_capacity(header_.length_ - VSOMEIP_SOMEIP_HEADER_SIZE); |
| 41 | is_successful = payload_->deserialize(_from); |
| 42 | } |
| 43 | return is_successful; |
| 44 | } |
| 45 | |
| 46 | uint8_t message_impl::get_check_result() const { |
| 47 | return check_result_; |
nothing calls this directly
no test coverage detected