Home
last modified time | relevance | path

Searched refs:infoChar (Results 1 - 2 of 2) sorted by relevance

/foundation/multimedia/image_effect/frameworks/native/capi/
H A Dimage_effect.cpp604 char *infoChar = new char[infoStr.length() + 1]; in OH_ImageEffect_Save() local
605 imageEffect->saveJson = infoChar; in OH_ImageEffect_Save()
606 auto ret = strcpy_s(infoChar, infoStr.length() + 1, infoStr.c_str()); in OH_ImageEffect_Save()
608 EFFECT_LOGE("Save: strcpy for infoChar failed, ret is %{public}d", ret); in OH_ImageEffect_Save()
611 *info = infoChar; in OH_ImageEffect_Save()
/foundation/multimedia/image_effect/test/unittest/
H A Dnative_image_effect_unittest.cpp233 char *infoChar = static_cast<char *>(malloc(infoStr.length() + 1));
234 infoChar[infoStr.length()] = '\0';
235 auto res = strcpy_s(infoChar, infoStr.length() + 1, infoStr.c_str());
239 *info = infoChar;

Completed in 6 milliseconds