Home
last modified time | relevance | path

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

/mOS-networking-stack/util/
H A Dring_buffer.c127 int CopyData(ring_buffer *dest_buff, ring_buffer *src_buff, int len) in CopyData() argument
139 to_cpy = MIN(GetDataSizeRBuffer(src_buff), to_cpy); in CopyData()
143 memcpy(ip, GetDataPoint(src_buff), to_cpy); in CopyData()
154 int data_size = GetDataSizeRBuffer(src_buff); in MoveToREPData()
183 memcpy(ip, GetDataPoint(src_buff), to_move); in MoveToREPData()
188 ret = RemoveDataFromBuffer(src_buff, to_move); in MoveToREPData()
195 int MoveData(ring_buffer *dest_buff, ring_buffer *src_buff, int len) in MoveData() argument
201 to_move = GetDataSizeRBuffer(src_buff); in MoveData()
206 to_move = MIN(GetDataSizeRBuffer(src_buff), to_move); in MoveData()
212 memcpy(ip, GetDataPoint(src_buff), to_move); in MoveData()
[all …]
/mOS-networking-stack/util/include/
H A Dring_buffer.h24 int CopyData(ring_buffer *dest_buff, ring_buffer *src_buff, int len);
25 int MoveData(ring_buffer *dest_buff, ring_buffer *src_buff, int len);
26 int MoveToREPData(ring_buffer *dest_buff, ring_buffer *src_buff, int len);