Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler_socket.cpp203 const ssize_t receivedBytes = recv(client_, static_cast<char*>(data), size, 0); in Receive() local
204 if (receivedBytes > 0) { in Receive()
205 size = static_cast<size_t>(receivedBytes); in Receive()
235 const ssize_t receivedBytes = recv(client_, bytes, size - received, 0); in ReceiveWhenReady() local
236 if ((receivedBytes == -1) && (errno != EINTR)) { in ReceiveWhenReady()
243 auto actualReceivedBytes = static_cast<size_t>(receivedBytes); in ReceiveWhenReady()
H A Drs_profiler_network.h34 uint64_t receivedBytes = 0u; member
H A Drs_profiler_network.cpp187 …results.push_back({ .interface = candidate, .receivedBytes = recvBytes, .transmittedBytes = sentBy… in GetStats()
/ohos5.0/base/web/webview/interfaces/kits/napi/webviewcontroller/
H A Dweb_download_item.cpp45 this->receivedBytes = 0; in WebDownloadItem()
73 this->receivedBytes = WebDownloadItem_ReceivedBytes(downloadItem); in WebDownloadItem()
H A Dnapi_web_download_item.cpp391 napi_value receivedBytes; in JS_GetReceivedBytes() local
392 napi_status status = napi_create_int64(env, webDownloadItem->receivedBytes, &receivedBytes); in JS_GetReceivedBytes()
397 return receivedBytes; in JS_GetReceivedBytes()
673 webDownloadPb.set_received_bytes(webDownloadItem->receivedBytes); in SetWebDownloadPb()
766 webDownloadItem->receivedBytes = webDownloadPb.received_bytes(); in JS_Deserialize()
H A Dweb_download_item.h39 int64_t receivedBytes; variable
H A Dweb_download_manager.cpp199 WebDownloadItem_SetReceivedBytes(downloadItem, webDownload->receivedBytes); in ResumeDownload()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/rfcomm/
H A Drfcomm.c405 state->receivedBytes = channel->receivedBytes; in RfcommGetPortState()
438 channel->receivedBytes += PacketPayloadSize(*pkt); in RfcommRead()
H A Drfcomm_defs.h391 uint32_t receivedBytes; member
H A Drfcomm_channel.c425 channel->receivedBytes = 0; in RfcommResetChannelInfo()
/ohos5.0/base/web/webview/test/unittest/nweb_helper_test/
H A Dnweb_helper_test.cpp404 int64_t receivedBytes = WebDownloadItem_ReceivedBytes(downloadItem); variable
405 EXPECT_NE(receivedBytes, 0);
455 int64_t receivedBytes = WebDownloadItem_ReceivedBytes(downloadItem); variable
456 EXPECT_NE(receivedBytes, 0);
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/include/
H A Drfcomm.h178 uint32_t receivedBytes; member
/ohos5.0/base/web/webview/ohos_nweb/include/
H A Dnweb_c_api.h86 …XPORT void WebDownloadItem_SetReceivedBytes(NWebDownloadItem *downloadItem, int64_t receivedBytes);
/ohos5.0/base/web/webview/ohos_nweb/src/
H A Dnweb_helper.cpp544 …rn "C" void WebDownloadItem_SetReceivedBytes(NWebDownloadItem* downloadItem, int64_t receivedBytes) in WebDownloadItem_SetReceivedBytes() argument
550 g_nwebCApi->impl_WebDownloadItem_SetReceivedBytes(downloadItem, receivedBytes); in WebDownloadItem_SetReceivedBytes()