| 570 | }; |
| 571 | |
| 572 | void cpBytesAndLengthInner(uint8_t*& pByte, jint*& pLength, const uint8_t* data, const int& length) { |
| 573 | *pLength = length; |
| 574 | pLength++; |
| 575 | |
| 576 | memcpy(pByte, data, length); |
| 577 | pByte += length; |
| 578 | } |
| 579 | |
| 580 | void cpBytesAndLength(uint8_t*& pByte, jint*& pLength, const FDBKey& key) { |
| 581 | cpBytesAndLengthInner(pByte, pLength, key.key, key.key_length); |
no test coverage detected