| 68 | aimrt_buffer_t* Data() const { return buffer_array_.data; } |
| 69 | |
| 70 | void Reserve(size_t new_cap) { |
| 71 | allocator_ptr_->reserve(allocator_ptr_->impl, &buffer_array_, new_cap); |
| 72 | } |
| 73 | |
| 74 | aimrt_buffer_t NewBuffer(size_t size) { |
| 75 | return allocator_ptr_->allocate(allocator_ptr_->impl, &buffer_array_, size); |
nothing calls this directly
no outgoing calls
no test coverage detected