| 552 | } |
| 553 | |
| 554 | void |
| 555 | XpackDynamicTableStorage::read(uint32_t offset, const char **name, uint32_t name_len, const char **value, |
| 556 | uint32_t /* value_len ATS_UNUSED */) const |
| 557 | { |
| 558 | *name = reinterpret_cast<const char *>(this->_data + offset); |
| 559 | *value = reinterpret_cast<const char *>(this->_data + offset + name_len); |
| 560 | } |
| 561 | |
| 562 | uint32_t |
| 563 | XpackDynamicTableStorage::write(const char *name, uint32_t name_len, const char *value, uint32_t value_len) |
no outgoing calls