/foundation/arkui/ace_engine_lite/frameworks/tools/qt/simulator/jsfwk/targets/simulator/utils/ |
H A D | js_heap_stats_dumper.cpp | 61 stats_.totalBytes = stats.totalBytes;
in UpdateStats() 68 stats.allocBytes, stats.peakAllocBytes, stats.totalBytes);
in LogStats()
|
/foundation/arkui/ace_engine_lite/frameworks/common/memory/cache/ |
H A D | cache_manager.cpp | 85 CacheSetupState CacheManager::PrecheckStatus(uintptr_t startAddr, size_t totalBytes) const in PrecheckStatus() 96 if (startAddr == 0 || totalBytes == 0) { in PrecheckStatus() 118 if (totalRequiredBytes > totalBytes) { in PrecheckStatus() 126 CacheSetupState CacheManager::DistributeCacheRange(uintptr_t startAddr, size_t totalBytes) in DistributeCacheRange() argument 128 CacheSetupState setupResult = PrecheckStatus(startAddr, totalBytes); in DistributeCacheRange()
|
H A D | cache_manager.h | 78 * @param totalBytes the entire cache length 82 CacheSetupState DistributeCacheRange(uintptr_t startAddr, size_t totalBytes); 83 CacheSetupState PrecheckStatus(uintptr_t startAddr, size_t totalBytes) const;
|
/foundation/filemanagement/dfs_service/frameworks/native/distributed_file_inner/src/ |
H A D | file_trans_listener_stub.cpp | 59 uint64_t totalBytes = 0; in HandleOnFileReceive() local 60 if (!data.ReadUint64(totalBytes)) { in HandleOnFileReceive() 61 LOGE("read totalBytes failed"); in HandleOnFileReceive() 69 int32_t res = OnFileReceive(totalBytes, processedBytes); in HandleOnFileReceive()
|
/foundation/communication/bluetooth/frameworks/inner/ipc/common/ |
H A D | opp_transfer_information.cpp | 136 void IOppTransferInformation::SetTotalBytes(uint64_t totalBytes) in SetTotalBytes() argument 138 totalBytes_ = totalBytes; in SetTotalBytes()
|
H A D | opp_transfer_information.h | 53 void SetTotalBytes(uint64_t totalBytes);
|
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/ipc/ |
H A D | file_trans_listener_proxy.cpp | 30 int32_t FileTransListenerProxy::OnFileReceive(uint64_t totalBytes, uint64_t processedBytes) in OnFileReceive() argument 39 if (!data.WriteUint64(totalBytes)) { in OnFileReceive()
|
/foundation/filemanagement/dfs_service/test/fuzztest/filetranslistenerstub_fuzzer/ |
H A D | filetranslistenerstub_fuzzer.cpp | 39 int32_t OnFileReceive(uint64_t totalBytes, uint64_t processedBytes) override; 46 int32_t FileTransListenerStubImpl::OnFileReceive(uint64_t totalBytes, uint64_t processedBytes) in OnFileReceive() argument
|
/foundation/filemanagement/dfs_service/frameworks/native/distributed_file_inner/include/ |
H A D | i_file_trans_listener.h | 31 virtual int32_t OnFileReceive(uint64_t totalBytes, uint64_t processedBytes) = 0;
|
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/include/ipc/ |
H A D | file_trans_listener_proxy.h | 32 int32_t OnFileReceive(uint64_t totalBytes, uint64_t processedBytes) override;
|
/foundation/filemanagement/dfs_service/test/unittests/distributed_file_daemon/include/ |
H A D | file_trans_listener_mock.h | 38 MOCK_METHOD2(OnFileReceive, int32_t(uint64_t totalBytes, uint64_t processedBytes));
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_core/dfile/core/ |
H A D | nstackx_file_manager.c | 103 if (fileList->bytesTransferredLastRecord >= fileList->totalBytes) { in NotifyFileListMsg() 108 ctx->msg.transferUpdate.totalBytes = fileList->totalBytes; in NotifyFileListMsg() 1185 fileManager->stoppedTasksBytesTransferred += fileList->totalBytes; in FileManagerStopTask() 1490 fmFileList->totalBytes += fileInfo->fileSize; in AddRecvFileInfo() 1610 fileManager->totalBytes += fmFileList->totalBytes; in FileManagerRecvFileTask() 1757 int32_t FileManagerGetTotalBytes(FileManager *fileManager, uint64_t *totalBytes) in FileManagerGetTotalBytes() argument 1762 *totalBytes = fileManager->totalBytes; in FileManagerGetTotalBytes() 1817 FileManagerGetTransUpdateInfo(FileManager *fileManager, uint16_t transId, uint64_t *totalBytes, uint64_t *bytesTransferred) FileManagerGetTransUpdateInfo() argument [all...] |
H A D | nstackx_dfile_session.c | 211 if ((FileManagerGetTotalBytes(session->fileManager, &data.transferUpdate.totalBytes) == NSTACKX_EOK) && in NoticeSessionProgress() 213 (data.transferUpdate.bytesTransferred <= data.transferUpdate.totalBytes) && in NoticeSessionProgress() 222 uint64_t totalBytes = 0; in UpdateMsgProcessInfo() local 234 totalBytes = DFileTransGetTotalBytes(dFileTrans); in UpdateMsgProcessInfo() 235 if (totalBytes > 0) { in UpdateMsgProcessInfo() 236 bytesTrans = totalBytes; in UpdateMsgProcessInfo() 241 if (FileManagerGetTransUpdateInfo(session->fileManager, dFileTrans->transId, &totalBytes, &bytesTrans) != in UpdateMsgProcessInfo() 247 msg->transferUpdate.totalBytes = totalBytes; in UpdateMsgProcessInfo() 268 static void CalculateSessionTransferRate(DFileSession *session, uint64_t totalBytes, DFileTransMsgTyp argument 322 uint64_t totalBytes = DFileTransGetTotalBytes(dFileTrans); CheckTransDone() local [all...] |
/foundation/communication/dsoftbus/components/nstackx/nstackx_core/dfile/include/ |
H A D | nstackx_file_manager.h | 190 uint64_t totalBytes; member 245 uint64_t totalBytes; member 401 int32_t FileManagerGetTotalBytes(FileManager *fileManager, uint64_t *totalBytes); 407 int32_t FileManagerGetTransUpdateInfo(FileManager *fileManager, uint16_t transId, uint64_t *totalBytes,
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/file/src/ |
H A D | client_trans_file.c | 55 uint64_t bytesTotal = msgData->transferUpdate.totalBytes; in NotifySendResult() 186 event.bytesTotal = msgData->transferUpdate.totalBytes; in NotifySocketSendResult() 195 UpdateChannelStatistics(socket, (int64_t)msgData->transferUpdate.totalBytes); in NotifySocketSendResult() 308 uint64_t bytesTotal = msgData->transferUpdate.totalBytes; in NotifyRecvResult() 345 event.bytesTotal = msgData->transferUpdate.totalBytes; in NotifySocketRecvResult()
|
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/fillp/ |
H A D | fillp_output.c | 133 FILLP_UINT32 sentBytes, FILLP_UINT32 totalBytes) in FillpBeforeSendItem() 152 if ((sentBytes >= totalBytes) || (item->resendTrigger == FILLP_ITEM_RESEND_TRIGGER_HNACK) || in FillpBeforeSendItem() 161 FILLP_UINT32 FillpSendOne(struct FillpPcb *pcb, FILLP_UINT32 totalBytes, FILLP_UINT32 sendPktNum) in FillpSendOne() argument 181 while (sentBytes <= totalBytes) { in FillpSendOne() 192 sentBytes = FillpBeforeSendItem(item, pcb, sentBytes, totalBytes); in FillpSendOne() 132 FillpBeforeSendItem(struct FillpPcbItem *item, struct FillpPcb *pcb, FILLP_UINT32 sentBytes, FILLP_UINT32 totalBytes) FillpBeforeSendItem() argument
|
/foundation/arkui/ace_engine_lite/interfaces/inner_api/builtin/jsi/ |
H A D | jsi.h | 58 size_t totalBytes; // heap total size member 66 JSHeapStatus() : totalBytes(0), allocBytes(0), peakAllocBytes(0) {} in JSHeapStatus()
|
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fs/properties/copy_listener/ |
H A D | trans_listener.h | 39 int32_t OnFileReceive(uint64_t totalBytes, uint64_t processedBytes) override;
|
H A D | trans_listener.cpp | 285 int32_t TransListener::OnFileReceive(uint64_t totalBytes, uint64_t processedBytes) in OnFileReceive() argument 313 entry->totalSize = totalBytes; in OnFileReceive()
|
/foundation/filemanagement/file_api/interfaces/kits/cj/src/ |
H A D | translistener.h | 37 int32_t OnFileReceive(uint64_t totalBytes, uint64_t processedBytes) override;
|
H A D | translistener.cpp | 210 int32_t TransListener::OnFileReceive(uint64_t totalBytes, uint64_t processedBytes) in OnFileReceive() argument 217 CProgress progress = { .processedSize = processedBytes, .totalSize = totalBytes }; in OnFileReceive()
|
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_opp.h | 254 void SetTotalBytes(uint64_t totalBytes);
|
/foundation/filemanagement/dfs_service/test/unittests/distributed_file_daemon/ |
H A D | daemon_test.cpp | 43 MOCK_METHOD2(OnFileReceive, int32_t(uint64_t totalBytes, uint64_t processedBytes));
|
/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_opp.cpp | 240 void BluetoothOppTransferInformation::SetTotalBytes(uint64_t totalBytes) in SetTotalBytes() argument 242 totalBytes_ = totalBytes; in SetTotalBytes()
|
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtcp/src/ |
H A D | rtcp.cpp | 55 static void SetupHeader(RtcpHeader *rtcp, RtcpType type, int32_t reportCount, int32_t totalBytes) in SetupHeader() argument 66 rtcp->SetSize(totalBytes); in SetupHeader()
|