Searched refs:receivedBytes (Results 1 – 14 of 14) sorted by relevance
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/ |
H A D | rs_profiler_socket.cpp | 203 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 D | rs_profiler_network.h | 34 uint64_t receivedBytes = 0u; member
|
H A D | rs_profiler_network.cpp | 187 …results.push_back({ .interface = candidate, .receivedBytes = recvBytes, .transmittedBytes = sentBy… in GetStats()
|
/ohos5.0/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | web_download_item.cpp | 45 this->receivedBytes = 0; in WebDownloadItem() 73 this->receivedBytes = WebDownloadItem_ReceivedBytes(downloadItem); in WebDownloadItem()
|
H A D | napi_web_download_item.cpp | 391 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 D | web_download_item.h | 39 int64_t receivedBytes; variable
|
H A D | web_download_manager.cpp | 199 WebDownloadItem_SetReceivedBytes(downloadItem, webDownload->receivedBytes); in ResumeDownload()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/rfcomm/ |
H A D | rfcomm.c | 405 state->receivedBytes = channel->receivedBytes; in RfcommGetPortState() 438 channel->receivedBytes += PacketPayloadSize(*pkt); in RfcommRead()
|
H A D | rfcomm_defs.h | 391 uint32_t receivedBytes; member
|
H A D | rfcomm_channel.c | 425 channel->receivedBytes = 0; in RfcommResetChannelInfo()
|
/ohos5.0/base/web/webview/test/unittest/nweb_helper_test/ |
H A D | nweb_helper_test.cpp | 404 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 D | rfcomm.h | 178 uint32_t receivedBytes; member
|
/ohos5.0/base/web/webview/ohos_nweb/include/ |
H A D | nweb_c_api.h | 86 …XPORT void WebDownloadItem_SetReceivedBytes(NWebDownloadItem *downloadItem, int64_t receivedBytes);
|
/ohos5.0/base/web/webview/ohos_nweb/src/ |
H A D | nweb_helper.cpp | 544 …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()
|