Home
last modified time | relevance | path

Searched refs:tail_off (Results 1 – 2 of 2) sorted by relevance

/mOS-networking-stack/core/src/
H A Dtcp_send_buffer.c83 buf->head_off = buf->tail_off = 0; in SBInit()
115 if (buf->tail_off + to_put < buf->size) { in SBPut()
117 memcpy(buf->data + buf->tail_off, data, to_put); in SBPut()
118 buf->tail_off += to_put; in SBPut()
125 buf->tail_off = buf->len + to_put; in SBPut()
154 buf->head_off = buf->tail_off = 0; in SBRemove()
/mOS-networking-stack/core/src/include/
H A Dtcp_send_buffer.h16 uint32_t tail_off; member