/base/hiviewdfx/blackbox_lite/ |
D | blackbox_detector.c | 27 int UploadEventByStream(const char *buf, unsigned int bufSize) in UploadEventByStream() argument 29 if (buf == NULL || bufSize == 0) { in UploadEventByStream() 30 BBOX_PRINT_ERR("buf: %p, bufSize: %u\n", buf, bufSize); in UploadEventByStream()
|
D | blackbox_adapter.c | 54 unsigned int bufSize, int isAppend) in FullWriteFile() argument 58 (void)bufSize; in FullWriteFile()
|
D | blackbox_detector.h | 22 int UploadEventByStream(const char *buf, unsigned int bufSize);
|
/base/security/huks/frameworks/huks_standard/main/os_dependency/ipc/src/ |
D | hks_ipc_slice.c | 33 static uint32_t GetBlobBufSize(const struct HksBlob *blob, uint32_t *bufSize) in GetBlobBufSize() argument 41 *bufSize = ALIGN_SIZE(blob->size) + sizeof(blob->size); in GetBlobBufSize() 45 …32_t GetParamSize(const struct HksBlob *key, const struct HksParamSet *paramSet, uint32_t *bufSize) in GetParamSize() argument 51 *bufSize = ALIGN_SIZE(key->size) + sizeof(key->size) + ALIGN_SIZE(paramSet->paramSetSize); in GetParamSize() 56 uint32_t *bufSize) in GetDataSize() argument 71 *bufSize = inBuffData + bufOutDataSize; in GetDataSize()
|
/base/hiviewdfx/hiview/test/moduletest/common/ |
D | hiview_plugin_platform_module_test.cpp | 34 const int bufSize = 128; in GetCmdResultFromPopen() local 35 char buffer[bufSize]; in GetCmdResultFromPopen() 38 if (fgets(buffer, bufSize - 1, fp) != NULL) { in GetCmdResultFromPopen()
|
/base/msdp/device_status/utils/ipc/src/ |
D | stream_client.cpp | 62 const int32_t bufSize = static_cast<int32_t>(size); in SendMsg() local 63 int32_t remSize = bufSize; in SendMsg() 83 retryCount, SEND_RETRY_LIMIT, idx, bufSize, fd_); in SendMsg()
|
D | stream_session.cpp | 57 const int32_t bufSize = static_cast<int32_t>(size); in SendMsg() local 58 int32_t remSize = bufSize; in SendMsg() 79 retryCount, SEND_RETRY_LIMIT, idx, bufSize, fd_); in SendMsg()
|
/base/msdp/device_status/intention/services/device_manager/src/ |
D | monitor.cpp | 115 size_t bufSize { sizeof(struct inotify_event) }; in ReceiveDevice() local 119 bufSize += sizeof(struct inotify_event); in ReceiveDevice() 120 numRead = ::read(inotifyFd_, buf, bufSize); in ReceiveDevice() 122 (bufSize + sizeof(struct inotify_event) <= sizeof(buf))); in ReceiveDevice()
|
/base/security/huks/test/unittest/huks_standard_test/module_test/service_test/huks_engine/core/src/ |
D | hks_asn1_test.cpp | 65 const uint32_t bufSize = 16; variable 66 uint8_t bufData[bufSize] = { 0 }; 82 const uint32_t bufSize = 16; variable 83 uint8_t bufData[bufSize] = { 0 };
|
/base/security/access_token/services/tokensyncmanager/include/remote/ |
D | soft_bus_channel.h | 230 void RandomUuid(char buf[37], int bufSize) in RandomUuid() argument 250 if (sprintf_s(p, bufSize, "4%x", b % xbase) < 0) { in RandomUuid() 255 … if (sprintf_s(p, bufSize, "%c%x", c[GetRandomUint32() % strlen(c)], b % xbase) < 0) { in RandomUuid() 260 if (sprintf_s(p, bufSize, "%02x", b) < 0) { in RandomUuid() 273 if (p - buf == bufSize) { in RandomUuid()
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/ |
D | dfx_ark.cpp | 230 …ManagedNativeFrame(int pid, uintptr_t& pc, uintptr_t& fp, uintptr_t& sp, char* buf, size_t bufSize) in StepArkManagedNativeFrame() argument 233 return g_stepArkManagedNativeFrameFn(pid, &pc, &fp, &sp, buf, bufSize); in StepArkManagedNativeFrame() 240 return g_stepArkManagedNativeFrameFn(pid, &pc, &fp, &sp, buf, bufSize); in StepArkManagedNativeFrame() 245 …rkJsHeapCrashInfo(int pid, uintptr_t& x20, uintptr_t& fp, int outJsInfo, char* buf, size_t bufSize) in GetArkJsHeapCrashInfo() argument 248 return g_getArkJsHeapCrashInfoFn(pid, &x20, &fp, outJsInfo, buf, bufSize); in GetArkJsHeapCrashInfo() 255 return g_getArkJsHeapCrashInfoFn(pid, &x20, &fp, outJsInfo, buf, bufSize); in GetArkJsHeapCrashInfo()
|
/base/msdp/device_status/intention/ipc/socket/src/ |
D | socket_session.cpp | 73 const int32_t bufSize = static_cast<int32_t>(size); in SendMsg() local 74 int32_t remSize = bufSize; in SendMsg() 96 retryCount, SEND_RETRY_LIMIT, idx, bufSize, fd_); in SendMsg()
|
D | socket_session_manager.cpp | 83 bool SocketSessionManager::SetBufferSize(int32_t sockFd, int32_t bufSize) in SetBufferSize() argument 85 if (::setsockopt(sockFd, SOL_SOCKET, SO_SNDBUF, &bufSize, sizeof(bufSize)) != 0) { in SetBufferSize() 89 if (::setsockopt(sockFd, SOL_SOCKET, SO_RCVBUF, &bufSize, sizeof(bufSize)) != 0) { in SetBufferSize()
|
/base/customization/config_policy/frameworks/config_policy/src/ |
D | config_policy_utils.c | 137 size_t bufSize = strlen(opKeyDir) + strlen(opKeyValue) + 1; in GetOpkeyPath() local 138 bufSize = Min(bufSize, MAX_PATH_LEN); in GetOpkeyPath() 139 result = (char *)calloc(bufSize, sizeof(char)); in GetOpkeyPath() 140 if (result != NULL && sprintf_s(result, bufSize, "%s%s", opKeyDir, opKeyValue) > 0) { in GetOpkeyPath() 194 size_t bufSize = strlen(relPath) + sizeof(":,") + 1; in GetFollowXRule() local 195 bufSize = Min(bufSize, MAX_PATH_LEN); in GetFollowXRule() 196 char *search = (char *)calloc(bufSize, sizeof(char)); in GetFollowXRule() 197 if (search == NULL || sprintf_s(search, bufSize, ":%s,", relPath) == -1) { in GetFollowXRule()
|
/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/ |
D | cert_manager_file.c | 95 uint32_t bufSize = sizeof(struct CmMutableBlob) * (uint32_t)fileNums; in MallocFileNames() local 96 struct CmMutableBlob *temp = (struct CmMutableBlob *)CMMalloc(bufSize); in MallocFileNames() 101 (void)memset_s(temp, bufSize, 0, bufSize); in MallocFileNames()
|
/base/hiviewdfx/hiview/test/plugins/examples_bundle/bundle_event_source_example/ |
D | bundle_event_source_example.cpp | 86 const int bufSize = 2048; in OnFileDescriptorEvent() local 87 char buffer[bufSize] = {0}; in OnFileDescriptorEvent() 95 int len = read(inotifyFd_, buffer, bufSize); in OnFileDescriptorEvent()
|
/base/hiviewdfx/hiview/utility/common_utils/ |
D | calc_fingerprint.cpp | 119 int CalcFingerprint::CalcBufferSha(const string& buffer, size_t bufSize, char *hash, size_t len) in CalcBufferSha() argument 124 return CalcBufferSha((unsigned char *)buffer.c_str(), bufSize, hash, len); in CalcBufferSha()
|
/base/hiviewdfx/hiview/test/plugins/examples/event_source_example/ |
D | event_source_example.cpp | 90 const int bufSize = 2048; in OnFileDescriptorEvent() local 91 char buffer[bufSize] = {0}; in OnFileDescriptorEvent() 99 int len = read(inotifyFd_, buffer, bufSize); in OnFileDescriptorEvent()
|
/base/msdp/device_status/rust/data/binding/include/ |
D | fusion_data_binding.h | 34 size_t bufSize; member
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/ |
D | dfx_ark.h | 73 char* buf, size_t bufSize); 74 …kJsHeapCrashInfo(int pid, uintptr_t& x20, uintptr_t& fp, int outJsInfo, char* buf, size_t bufSize);
|
/base/hiviewdfx/blackbox_lite/interfaces/native/innerkits/ |
D | blackbox_adapter.h | 37 extern int FullWriteFile(const char *filePath, const char *buf, unsigned int bufSize, int isAppend);
|
/base/hiviewdfx/blackbox_lite/interfaces/native/kits/ |
D | blackbox_adapter.h | 37 extern int FullWriteFile(const char *filePath, const char *buf, unsigned int bufSize, int isAppend);
|
/base/hiviewdfx/hiview/utility/common_utils/include/ |
D | calc_fingerprint.h | 55 static int CalcBufferSha(const std::string& buffer, size_t bufSize, char *hash, size_t len);
|
/base/hiviewdfx/hidumper/test/unittest/common/ |
D | hidumper_innerkits_test.cpp | 86 const int bufSize = 256; in StartTestProcess() local 87 char buf[bufSize] = { 0 }; in StartTestProcess() 88 (void)strerror_r(errno, buf, bufSize); in StartTestProcess()
|
/base/update/updater/test/fuzztest/package_fuzzer/ |
D | pkg_fuzz_test.h | 108 size_t bufSize = 4096; in BuildFileDigest() local 109 Hpackage::PkgBuffer buff(bufSize); in BuildFileDigest() 123 ret = stream->Read(buff, offset, bufSize, readLen); in BuildFileDigest()
|