Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/fillp/
H A Dfillp_output.c104 FILLP_UINT32 sentBytes, FILLP_UINT32 sendPktNum) in FillpDoneSendAllData() argument
133 FILLP_UINT32 sentBytes, FILLP_UINT32 totalBytes) in FillpBeforeSendItem() argument
145 sentBytes = (sentBytes + (FILLP_UINT32)item->dataLen); in FillpBeforeSendItem()
158 return sentBytes; in FillpBeforeSendItem()
166 FILLP_UINT32 sentBytes = FILLP_NULL; in FillpSendOne() local
181 while (sentBytes <= totalBytes) { in FillpSendOne()
188 return sentBytes; in FillpSendOne()
192 sentBytes = FillpBeforeSendItem(item, pcb, sentBytes, totalBytes); in FillpSendOne()
198 return sentBytes; in FillpSendOne()
379 FILLP_INT sentBytes; in FillpSendItem() local
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler_socket.cpp181 const ssize_t sentBytes = send(client_, bytes, size - sent, 0); in SendWhenReady() local
182 if ((sentBytes <= 0) && (errno != EINTR)) { in SendWhenReady()
186 auto actualSentBytes = static_cast<size_t>(sentBytes); in SendWhenReady()
H A Drs_profiler_network.cpp185 const uint64_t sentBytes = std::stoull(parts[SENT_BYTES_COLUMN]); in GetStats() local
187 …s.push_back({ .interface = candidate, .receivedBytes = recvBytes, .transmittedBytes = sentBytes }); in GetStats()