Searched refs:tempData (Results 1 – 8 of 8) sorted by relevance
/base/telephony/ril_adapter/services/vendor/src/ |
D | at_network.c | 2005 int32_t tempData = 0; in FillNeighboringCellSsbId() local 2009 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId() 2012 nrSsbIdInfo->nbCellCount = tempData; in FillNeighboringCellSsbId() 2019 (void)memset_s(nrSsbIdInfo->nbCellSsbList, sizeof(NeighboringCellSsbInfoVendor) * tempData, 0, in FillNeighboringCellSsbId() 2020 sizeof(NeighboringCellSsbInfoVendor) * tempData); in FillNeighboringCellSsbId() 2022 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId() 2025 nrSsbIdInfo->nbCellSsbList[i].pci = tempData; in FillNeighboringCellSsbId() 2026 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId() 2029 nrSsbIdInfo->nbCellSsbList[i].arfcn = tempData; in FillNeighboringCellSsbId() 2030 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId() [all …]
|
D | vendor_report.c | 108 char *tempData = NULL; in ReportCBMOrCSCB() local 118 tempData = testDataStr; in ReportCBMOrCSCB() 121 tempData = testDataTmp; in ReportCBMOrCSCB() 128 response.data = (char *)tempData; in ReportCBMOrCSCB() 130 response.pdu = (char *)tempData; in ReportCBMOrCSCB()
|
/base/security/certificate_manager/test/fuzz_test/fuzz_test_common/src/ |
D | cm_fuzz_test_common.cpp | 89 uint8_t *tempData = static_cast<uint8_t *>(CmMalloc(sizeof(uint8_t) * size)); in CopyMyData() local 90 if (tempData == nullptr) { in CopyMyData() 93 (void)memcpy_s(tempData, size, data, size); in CopyMyData() 95 *myData = tempData; in CopyMyData()
|
/base/global/resource_management/frameworks/resmgr/src/utils/ |
D | utils.cpp | 56 auto tempData = Utils::LoadResourceFile(iconPath, len); in GetMediaBase64Data() local 57 if (tempData == nullptr) { in GetMediaBase64Data() 66 Utils::EncodeBase64(tempData, len, imgType, base64Data); in GetMediaBase64Data() 84 std::unique_ptr<uint8_t[]> tempData = std::make_unique<uint8_t[]>(len); in LoadResourceFile() local 85 if (tempData == nullptr) { in LoadResourceFile() 89 mediaStream.read(reinterpret_cast<char *>(tempData.get()), len); in LoadResourceFile() 90 return tempData; in LoadResourceFile()
|
/base/hiviewdfx/hilog/frameworks/libhilog/param/ |
D | properties.cpp | 238 RawPropertyData tempData; in getDirectValue() local 239 if (!getRawValue(tempData.data(), tempData.size())) { in getDirectValue() 242 m_value = m_converter(tempData, m_defaultValue); in getDirectValue()
|
/base/security/huks/test/unittest/huks_standard_test/three_stage_test/src/symmetric_alg_test/ |
D | hks_aes_cipher_ccm_test.cpp | 682 uint8_t *tempData = reinterpret_cast<uint8_t *>(HksMalloc(dataLen)); in HksAesCmcCipherTestCaseRun() local 683 EXPECT_NE(tempData, nullptr); in HksAesCmcCipherTestCaseRun() 686 (void)memset_s(tempData, dataLen, '0', dataLen); in HksAesCmcCipherTestCaseRun() 688 (void)memcpy_s(tempData, dataLen, in HksAesCmcCipherTestCaseRun() 691 struct HksBlob inData = {dataLen, tempData}; in HksAesCmcCipherTestCaseRun() 732 HKS_FREE(tempData); in HksAesCmcCipherTestCaseRun() 1241 …uint8_t *tempData = reinterpret_cast<uint8_t *>(HksMalloc(CCM_MAX_DATA_LEN_FOR_MAX_NONCE + AES_COM… variable 1242 struct HksBlob inData = {CCM_MAX_DATA_LEN_FOR_MAX_NONCE + AES_COMMON_SIZE, tempData}; 1243 struct HksBlob cipherText = {CCM_MAX_DATA_LEN_FOR_MAX_NONCE + AES_COMMON_SIZE, tempData }; 1295 HKS_FREE(tempData); [all …]
|
/base/security/huks/services/huks_standard/huks_engine/main/core/src/ |
D | hks_core_service_three_stage.c | 313 struct HksBlob *tempData = (struct HksBlob *)HksMalloc(sizeof(struct HksBlob)); in SetCacheModeCtx() local 314 HKS_IF_NULL_LOGE_RETURN(tempData, HKS_ERROR_MALLOC_FAIL, "get cache mode ctx malloc fail.") in SetCacheModeCtx() 316 tempData->size = 0; in SetCacheModeCtx() 317 tempData->data = NULL; in SetCacheModeCtx() 318 ctxParam->uint64Param = (uint64_t)(uintptr_t)tempData; in SetCacheModeCtx()
|
/base/security/crypto_framework/plugin/openssl_plugin/key/asy_key_generator/src/ |
D | rsa_asy_key_generator_openssl.c | 396 unsigned char *tempData = NULL; in EncodePubKeyToX509() local 397 int len = OpensslI2dRsaPubKey(rsa, &tempData); in EncodePubKeyToX509() 403 returnBlob->data = tempData; in EncodePubKeyToX509()
|