Searched refs:contiguousBuffer (Results 1 - 1 of 1) sorted by relevance

/haiku/src/add-ons/kernel/network/stack/
H A Dnet_buffer.cpp1660 void* contiguousBuffer; local
1661 status_t status = prepend_size(buffer, size, &contiguousBuffer);
1665 if (contiguousBuffer) {
1667 if (user_memcpy(contiguousBuffer, data, size) != B_OK)
1670 memcpy(contiguousBuffer, data, size);
1784 void* contiguousBuffer; local
1785 status_t status = append_size(buffer, size, &contiguousBuffer);
1789 if (contiguousBuffer) {
1791 if (user_memcpy(contiguousBuffer, data, size) != B_OK)
1794 memcpy(contiguousBuffer, dat
[all...]

Completed in 31 milliseconds