append_data
if (append_data(dest, node->start, node->used) < B_OK) {
if (append_data(dest, node->start, node->used - diff) < B_OK) {
if (append_data(duplicate, node->start, node->used) < B_OK) {
static status_t append_data(net_buffer* buffer, const void* data, size_t size);
status_t status = append_data(buffer,
append_data,
if (append_data(duplicate, buffer->data, buffer->size) != B_OK) {
status_t error = append_data(buffer, with->data, with->size);
status_t error = append_data(with, buffer->data, buffer->size);
return append_data(buffer, source->data + offset, bytes);
static status_t append_data(net_buffer *buffer, const void *data, size_t size);
append_data,