Home
last modified time | relevance | path

Searched refs:dataVal (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/image/picture_fuzzer/
H A Dpicture_fuzzer.cpp39 auto dataVal = std::make_shared<Data>(); in PictureFuzzTest() local
49 dataVal->BuildWithoutCopy(dataText, length); in PictureFuzzTest()
50 picture.Deserialize(dataVal); in PictureFuzzTest()
/ohos5.0/foundation/resourceschedule/ffrt/src/sync/
H A Dpoller.h54 …WakeDataWithCb(int fdVal, void *dataVal, std::function<void(void *, uint32_t)> cbVal, CPUEUTask *t… in WakeDataWithCb()
55 : fd(fdVal), data(dataVal), cb(cbVal), task(taskVal) in WakeDataWithCb()
67 …TimerDataWithCb(void *dataVal, void (*cbVal)(void *), CPUEUTask *taskVal, bool repeat, uint64_t ti… in TimerDataWithCb()
68 : data(dataVal), cb(cbVal), task(taskVal), repeat(repeat), timeout(timeout) in TimerDataWithCb()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/utils/region_fuzzer/
H A Dregion_fuzzer.cpp93 auto dataVal = std::make_shared<Data>(); in RegionFuzzTest002() local
100 dataVal->BuildWithoutCopy(dataText, length); in RegionFuzzTest002()
102 region.Deserialize(dataVal); in RegionFuzzTest002()
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/capability/udmf/
H A Dudmf_impl.cpp82 napi_value dataVal = nullptr; in TransformUdmfUnifiedData() local
83 UDMF::UnifiedDataNapi::NewInstance(env, unifiedData, dataVal); in TransformUdmfUnifiedData()
84 CHECK_NULL_RETURN(dataVal, nullptr); in TransformUdmfUnifiedData()
85 return dataVal; in TransformUdmfUnifiedData()
126 napi_value dataVal = nullptr; in TransformSummary() local
127 UDMF::SummaryNapi::NewInstance(env, udmfSummary, dataVal); in TransformSummary()
128 CHECK_NULL_RETURN(dataVal, nullptr); in TransformSummary()
129 return dataVal; in TransformSummary()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/shadereffect_fuzzer/
H A Dshader_effect_fuzzer.cpp130 auto dataVal = std::make_shared<Data>(); in ShaderEffectFuzzTest003() local
139 dataVal->BuildWithoutCopy(dataText, length); in ShaderEffectFuzzTest003()
140 picture.Deserialize(dataVal); in ShaderEffectFuzzTest003()
260 auto dataVal = std::make_shared<Data>(); in ShaderEffectFuzzTest005() local
269 dataVal->BuildWithoutCopy(dataText, length); in ShaderEffectFuzzTest005()
270 picture.Deserialize(dataVal); in ShaderEffectFuzzTest005()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsmarshallinghelper_fuzzer/
H A Drsmarshallinghelper_fuzzer.cpp187 auto dataVal = std::make_shared<Data>(); in DoMarshallingHelper002() local
193 dataVal->BuildWithoutCopy(dataText, length); in DoMarshallingHelper002()
194 RSMarshallingHelper::Marshalling(parcel, dataVal); in DoMarshallingHelper002()
195 RSMarshallingHelper::Unmarshalling(parcel, dataVal); in DoMarshallingHelper002()
196 RSMarshallingHelper::UnmarshallingWithCopy(parcel, dataVal); in DoMarshallingHelper002()
477 auto dataVal = std::make_shared<Data>(); in DoMarshallingHelper012() local
483 dataVal->BuildWithoutCopy(dataText, length); in DoMarshallingHelper012()
499 … auto extendImageObject = std::make_shared<RSExtendImageObject>(image, dataVal, adaptiveImageInfo); in DoMarshallingHelper012()
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/feature_ability/
H A Djs_feature_ability.cpp454 napi_value dataVal = nullptr; in CreateJsResult() local
455 napi_create_string_utf8(env, message.c_str(), message.length(), &dataVal); in CreateJsResult()
456 napi_set_named_property(env, jsResult, "data", dataVal); in CreateJsResult()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_relational_sync_test.cpp583 DataValue dataVal; in GetKey() local
584 rowData.objectData.GetDataValue("key", dataVal); in GetKey()
585 EXPECT_EQ(dataVal.GetType(), StorageType::STORAGE_TYPE_TEXT); in GetKey()
587 EXPECT_EQ(dataVal.GetText(dataStr), E_OK); in GetKey()