Home
last modified time | relevance | path

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

/mOS-networking-stack/util/
H A Dring_buffer.c129 int to_cpy; in CopyData() local
133 to_cpy = GetRemainBufferSize(dest_buff); in CopyData()
134 if (to_cpy <= 0) in CopyData()
137 if (to_cpy > 0) in CopyData()
138 to_cpy = MIN(to_cpy, len); in CopyData()
139 to_cpy = MIN(GetDataSizeRBuffer(src_buff), to_cpy); in CopyData()
143 memcpy(ip, GetDataPoint(src_buff), to_cpy); in CopyData()
144 AddDataLen(dest_buff, to_cpy); in CopyData()
146 return to_cpy; in CopyData()