/base/hiviewdfx/hiview/core/test/unittest/common/ |
H A D | plugin_platform_test.cpp | 62 auto size = pluginList.size();
in HWTEST_F() local 63 ASSERT_EQ(size, 4ul);
in HWTEST_F() 70 auto size2 = pluginList2.size();
in HWTEST_F() 123 auto size = pluginList.size();
in HWTEST_F() local 124 ASSERT_EQ(size, 6ul);
in HWTEST_F() 146 size = pluginList.size();
in HWTEST_F() 147 ASSERT_EQ(size, in HWTEST_F() [all...] |
/base/hiviewdfx/hiview/plugins/faultlogger/test/common/fuzztest/faultloggerclient_fuzzer/ |
H A D | faultlogger_client_fuzzer.cpp | 26 void FuzzInterfaceAddFaultLog(const uint8_t* data, size_t size) in FuzzInterfaceAddFaultLog() argument 32 if (offsetTotalLength > size) { in FuzzInterfaceAddFaultLog() 58 void FuzzInterfaceQuerySelfFaultLog(const uint8_t* data, size_t size) in FuzzInterfaceQuerySelfFaultLog() argument 63 if (offsetTotalLength > size) { in FuzzInterfaceQuerySelfFaultLog() 80 void FuzzFaultloggerClientInterface(const uint8_t* data, size_t size) in FuzzFaultloggerClientInterface() argument 82 FuzzInterfaceAddFaultLog(data, size); in FuzzFaultloggerClientInterface() 83 FuzzInterfaceQuerySelfFaultLog(data, size); in FuzzFaultloggerClientInterface() 88 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 90 if (data == nullptr || size == 0) { in LLVMFuzzerTestOneInput() 93 OHOS::FuzzFaultloggerClientInterface(data, size); in LLVMFuzzerTestOneInput() [all...] |
/base/security/crypto_framework/test/fuzztest/crypto_operation/hcfmaccreate_fuzzer/ |
H A D | hcfmaccreate_fuzzer.cpp | 30 static void TestMacConvertSymKey(const uint8_t* data, size_t size) in TestMacConvertSymKey() argument 40 HcfBlob keyMaterialBlob = {.data = const_cast<uint8_t *>(data), .len = size}; in TestMacConvertSymKey() 48 static void TestMac(const uint8_t* data, size_t size) in TestMac() argument 63 HcfBlob inBlob = {.data = const_cast<uint8_t *>(data), .len = size}; in TestMac() 76 bool HcfMacCreateFuzzTest(const uint8_t* data, size_t size) in HcfMacCreateFuzzTest() argument 78 std::string alg(reinterpret_cast<const char *>(data), size); in HcfMacCreateFuzzTest() local 79 TestMacConvertSymKey(data, size); in HcfMacCreateFuzzTest() 80 TestMac(data, size); in HcfMacCreateFuzzTest() 92 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 95 OHOS::HcfMacCreateFuzzTest(data, size); in LLVMFuzzerTestOneInput() [all...] |
/base/security/device_auth/frameworks/deviceauth_lite/test/fuzztest/receivedata_fuzzer/ |
H A D | receivedata_fuzzer.cpp | 102 bool ReceiveDataFuzz(const uint8_t* data, size_t size) in ReceiveDataFuzz() argument 104 if ((data == nullptr) || (size < sizeof(int32_t))) { in ReceiveDataFuzz() 114 buff.size = sizeof(g_retStr1); in ReceiveDataFuzz() 119 buff.size = sizeof(g_retStr2); in ReceiveDataFuzz() 124 buff.size = sizeof(g_retStr3); in ReceiveDataFuzz() 129 buff.size = sizeof(g_retStr4); in ReceiveDataFuzz() 134 buff.size = sizeof(g_retStr5); in ReceiveDataFuzz() 139 buff.size = sizeof(g_retStr6); in ReceiveDataFuzz() 150 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 153 OHOS::ReceiveDataFuzz(data, size); in LLVMFuzzerTestOneInput() [all...] |
/base/theme/screenlock_mgr/test/fuzztest/screenlockservice_fuzzer/screenlockdump_fuzzer/ |
H A D | screenlockdump_fuzzer.cpp | 43 bool FuzzScreenlockCallback(const uint8_t *rawData, size_t size) in FuzzScreenlockCallback() argument 50 data.WriteBuffer(rawData, size); in FuzzScreenlockCallback() 61 bool FuzzScreenlockDisplayPowerEvent(const uint8_t *rawData, size_t size) in FuzzScreenlockDisplayPowerEvent() argument 73 bool FuzzScreenlockDump(const uint8_t *rawData, size_t size) in FuzzScreenlockDump() argument 76 std::string str(reinterpret_cast<const char *>(rawData), size); in FuzzScreenlockDump() local 85 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) in LLVMFuzzerTestOneInput() argument 87 if (size < OHOS::THRESHOLD) { in LLVMFuzzerTestOneInput() 92 OHOS::FuzzScreenlockCallback(data, size); in LLVMFuzzerTestOneInput() 93 OHOS::FuzzScreenlockDisplayPowerEvent(data, size); in LLVMFuzzerTestOneInput() 94 OHOS::FuzzScreenlockDump(data, size); in LLVMFuzzerTestOneInput() [all...] |
/base/web/webview/test/fuzztest/ohos_nweb/napi_fuzzer/ |
H A D | napi_fuzzer.cpp | 27 bool NapiFuzzTest(const uint8_t* data, size_t size) in NapiFuzzTest() argument 39 WebDownloader_StartDownload(size, NULL); in NapiFuzzTest() 49 WebDownload_GetItemState(size, size); in NapiFuzzTest() 50 if (data != nullptr && size != 0) { in NapiFuzzTest() 51 std::string dataTmp(reinterpret_cast<const char*>(data), size); in NapiFuzzTest() local 84 WebDownloadItem_SetReceivedBytes(nullptr, size); in NapiFuzzTest() 85 WebDownloadItem_SetTotalBytes(nullptr, size); in NapiFuzzTest() 93 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 96 OHOS::NapiFuzzTest(data, size); in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/setmissionlabel_fuzzer/ |
H A D | setmissionlabel_fuzzer.cpp | 49 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 72 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 80 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 81 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 85 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 91 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 92 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ai/ai_engine/services/common/platform/os_wrapper/utils/ |
H A D | plugin_helper.cpp | 24 if (val.size != 0 || val.data != nullptr) { \
28 if (RecursiveDecode(val.size) != RETCODE_SUCCESS) { \
32 AIE_NEW(val.data, type[val.size]); \
37 for (size_t i = 0; i < val.size; ++i) { \
51 if (val.size == 0 || val.data == nullptr) { \
55 if (RecursiveEncode(val.size) != RETCODE_SUCCESS) { \
59 for (size_t i = 0; i < val.size; ++i) { \
77 if (RecursiveEncode(outputData.size() * PAIR_SIZE) != RETCODE_SUCCESS) {
in EncodeOneParameter() 81 for (size_t i = 0; i < outputData.size(); ++i) {
in EncodeOneParameter() 87 for (size_t i = 0; i < outputData.size(); in EncodeOneParameter() [all...] |
/foundation/ability/ability_base/test/fuzztest/wantparamsthird_fuzzer/ |
H A D | wantparamsthird_fuzzer.cpp | 42 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 69 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 77 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 78 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 82 char* ch = (char *)malloc(size + 1); in LLVMFuzzerTestOneInput() 88 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 89 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/abilitymanagereventsubscriber_fuzzer/ |
H A D | abilitymanagereventsubscriber_fuzzer.cpp | 49 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 64 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 72 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 73 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 77 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 83 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 84 if (memcpy_s(ch, size + 1, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/minimizeability_fuzzer/ |
H A D | minimizeability_fuzzer.cpp | 48 bool DoSomethingInterestingWithMyAPI(const char *data, size_t size) in DoSomethingInterestingWithMyAPI() argument 70 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) in LLVMFuzzerTestOneInput() argument 77 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 78 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 81 char *ch = (char *)malloc(size + 1); in LLVMFuzzerTestOneInput() 86 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 87 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/updateabilitystate_fuzzer/ |
H A D | updateabilitystate_fuzzer.cpp | 49 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 76 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 84 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 85 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 89 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 95 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 96 if (memcpy_s(ch, size + 1, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/addabilitystagedone_fuzzer/ |
H A D | addabilitystagedone_fuzzer.cpp | 47 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 62 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 70 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 71 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 75 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 81 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 82 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/setmissioncontinuestate_fuzzer/ |
H A D | setmissioncontinuestate_fuzzer.cpp | 50 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 74 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 82 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 83 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 87 char* ch = static_cast<char*>(malloc(size + 1)); in LLVMFuzzerTestOneInput() 93 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 94 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/setmissionicon_fuzzer/ |
H A D | setmissionicon_fuzzer.cpp | 48 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 72 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 80 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 81 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 85 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 91 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 92 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/registerabilitylifecyclecallback_fuzzer/ |
H A D | registerabilitylifecyclecallback_fuzzer.cpp | 61 bool DoSomethingInterestingWithMyAPI(const char *data, size_t size) in DoSomethingInterestingWithMyAPI() argument 74 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) in LLVMFuzzerTestOneInput() argument 81 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 82 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 85 char *ch = (char *)malloc(size + 1); in LLVMFuzzerTestOneInput() 90 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 91 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/updateextensionstate_fuzzer/ |
H A D | updateextensionstate_fuzzer.cpp | 49 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 76 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 84 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 85 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 89 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 95 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 96 if (memcpy_s(ch, size + 1, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/abilityappdfrapplicationanrlistener_fuzzer/ |
H A D | abilityappdfrapplicationanrlistener_fuzzer.cpp | 48 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 60 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 67 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 68 if (size < OHOS::U32_AT_SIZE || size > OHOS::FOO_MAX_LEN) { in LLVMFuzzerTestOneInput() 72 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 78 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 79 if (memcpy_s(ch, size + 1, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/abilityappmgrpagestatedata_fuzzer/ |
H A D | abilityappmgrpagestatedata_fuzzer.cpp | 65 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 76 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 84 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 85 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 89 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 95 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 96 if (memcpy_s(ch, size + 1, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/abilitymanagerserviceb_fuzzer/ |
H A D | abilitymanagerserviceb_fuzzer.cpp | 52 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 69 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 76 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 77 if (size < OHOS::U32_AT_SIZE || size > OHOS::FOO_MAX_LEN) { in LLVMFuzzerTestOneInput() 81 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 87 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 88 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/abilitymemorylevelinfo_fuzzer/ |
H A D | abilitymemorylevelinfo_fuzzer.cpp | 53 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 69 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 76 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 77 if (size < OHOS::U32_AT_SIZE || size > OHOS::FOO_MAX_LEN) { in LLVMFuzzerTestOneInput() 81 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 87 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 88 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/connectionobserverclientimpl_fuzzer/ |
H A D | connectionobserverclientimpl_fuzzer.cpp | 64 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 93 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 100 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 101 if (size < OHOS::U32_AT_SIZE || size > OHOS::FOO_MAX_LEN) { in LLVMFuzzerTestOneInput() 105 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 111 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 112 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/connectionobserverclient_fuzzer/ |
H A D | connectionobserverclient_fuzzer.cpp | 83 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 99 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 106 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 107 if (size < OHOS::U32_AT_SIZE || size > OHOS::FOO_MAX_LEN) { in LLVMFuzzerTestOneInput() 111 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 117 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 118 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/abilitybackgroundconnection_fuzzer/ |
H A D | abilitybackgroundconnection_fuzzer.cpp | 48 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 61 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 69 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 70 if (size > OHOS::FOO_MAX_LEN || size < OHOS::U32_AT_SIZE) { in LLVMFuzzerTestOneInput() 74 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 80 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 81 if (memcpy_s(ch, size + 1, data, size) ! in LLVMFuzzerTestOneInput() [all...] |
/foundation/ability/ability_runtime/test/fuzztest/abilitymanagerserviceninth_fuzzer/ |
H A D | abilitymanagerserviceninth_fuzzer.cpp | 50 bool DoSomethingInterestingWithMyAPI(const char* data, size_t size) in DoSomethingInterestingWithMyAPI() argument 71 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument 78 /* Validate the length of size */ in LLVMFuzzerTestOneInput() 79 if (size < OHOS::U32_AT_SIZE || size > OHOS::FOO_MAX_LEN) { in LLVMFuzzerTestOneInput() 83 char* ch = (char*)malloc(size + 1); in LLVMFuzzerTestOneInput() 89 (void)memset_s(ch, size + 1, 0x00, size + 1); in LLVMFuzzerTestOneInput() 90 if (memcpy_s(ch, size, data, size) ! in LLVMFuzzerTestOneInput() [all...] |