Home
last modified time | relevance | path

Searched refs:SystemDefinedPixelMap (Results 1 - 19 of 19) sorted by relevance

/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/mock/
H A Dsystem_defined_pixelmap_mock.cpp20 SystemDefinedPixelMap::SystemDefinedPixelMap() in SystemDefinedPixelMap() function in OHOS::UDMF::SystemDefinedPixelMap
24 SystemDefinedPixelMap::SystemDefinedPixelMap(std::vector<uint8_t> &data) in SystemDefinedPixelMap() function in OHOS::UDMF::SystemDefinedPixelMap
28 SystemDefinedPixelMap::SystemDefinedPixelMap(UDType type, ValueType value) : SystemDefinedRecord(type, value) in SystemDefinedPixelMap() function in OHOS::UDMF::SystemDefinedPixelMap
32 int64_t SystemDefinedPixelMap::GetSize() in GetSize()
37 std::vector<uint8_t> SystemDefinedPixelMap::GetRawData() const in GetRawData()
42 void SystemDefinedPixelMap::SetRawData(const std::vector<uint8_t> &rawData) in SetRawData()
46 void SystemDefinedPixelMap
[all...]
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/data/
H A Dsystem_defined_pixelmap.cpp15 #define LOG_TAG "SystemDefinedPixelMap"
22 SystemDefinedPixelMap::SystemDefinedPixelMap() in SystemDefinedPixelMap() function in OHOS::UDMF::SystemDefinedPixelMap
27 SystemDefinedPixelMap::SystemDefinedPixelMap(std::vector<uint8_t> &data) in SystemDefinedPixelMap() function in OHOS::UDMF::SystemDefinedPixelMap
33 SystemDefinedPixelMap::SystemDefinedPixelMap(UDType type, ValueType value) : SystemDefinedRecord(type, value) in SystemDefinedPixelMap() function in OHOS::UDMF::SystemDefinedPixelMap
62 int64_t SystemDefinedPixelMap::GetSize() in GetSize()
67 std::vector<uint8_t> SystemDefinedPixelMap::GetRawData() const in GetRawData()
72 void SystemDefinedPixelMap
[all...]
/foundation/distributeddatamgr/udmf/interfaces/innerkits/data/
H A Dsystem_defined_pixelmap.h23 class API_EXPORT SystemDefinedPixelMap : public SystemDefinedRecord { class
25 SystemDefinedPixelMap();
26 explicit SystemDefinedPixelMap(std::vector<uint8_t> &data);
27 SystemDefinedPixelMap(UDType type, ValueType value);
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/
H A Dsystem_defined_pixelmap_test.cpp56 * @tc.desc: Normal testcase of SystemDefinedPixelMap
63 SystemDefinedPixelMap systemDefinedPixelMap(data); in HWTEST_F()
71 * @tc.desc: Normal testcase of SystemDefinedPixelMap
79 SystemDefinedPixelMap systemDefinedPixelMap(type, value); in HWTEST_F()
87 * @tc.desc: Abnormal testcase of SystemDefinedPixelMap, because value is not of type std::vector<uint8_t>
95 SystemDefinedPixelMap systemDefinedPixelMap(type, value); in HWTEST_F()
H A Dndk_data_conversion_test.cpp283 auto systemDefinedPixelMap = std::static_pointer_cast<SystemDefinedPixelMap>(readRecord); in HWTEST_F()
309 std::shared_ptr<SystemDefinedPixelMap> systemDefinedPixelMap = in HWTEST_F()
310 std::make_shared<SystemDefinedPixelMap>(UDType::SYSTEM_DEFINED_PIXEL_MAP, pixelMapIn); in HWTEST_F()
370 std::shared_ptr<SystemDefinedPixelMap> systemDefinedPixelMap = in HWTEST_F()
371 std::make_shared<SystemDefinedPixelMap>(UDType::SYSTEM_DEFINED_PIXEL_MAP, buff); in HWTEST_F()
H A Dudmf_client_test.cpp846 SystemDefinedPixelMap systemDefinedPixelMap1; in HWTEST_F()
862 std::shared_ptr<UnifiedRecord> record1 = std::make_shared<SystemDefinedPixelMap>(systemDefinedPixelMap1); in HWTEST_F()
883 auto systemDefinedPixelMap2 = static_cast<SystemDefinedPixelMap *>(record2.get()); in HWTEST_F()
2036 SystemDefinedPixelMap systemDefinedPixelMap1; in HWTEST_F()
2043 std::shared_ptr<UnifiedRecord> record1 = std::make_shared<SystemDefinedPixelMap>(systemDefinedPixelMap1); in HWTEST_F()
2064 auto systemDefinedPixelMap2 = static_cast<SystemDefinedPixelMap *>(record2.get()); in HWTEST_F()
2087 SystemDefinedPixelMap systemDefinedPixelMap1; in HWTEST_F()
2094 std::shared_ptr<UnifiedRecord> record1 = std::make_shared<SystemDefinedPixelMap>(systemDefinedPixelMap1); in HWTEST_F()
2117 auto systemDefinedPixelMap2 = static_cast<SystemDefinedPixelMap *>(record3.get()); in HWTEST_F()
/foundation/distributeddatamgr/udmf/interfaces/jskits/data/
H A Dsystem_defined_pixelmap_napi.h28 class SystemDefinedPixelMap;
33 std::shared_ptr<SystemDefinedPixelMap> value_;
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/data/
H A Dsystem_defined_pixelmap_napi.cpp28 /* SystemDefinedPixelMap extends UnifiedRecord */ in Constructor()
31 /* SystemDefinedPixelMap extends SystemDefinedRecord */ in Constructor()
33 /* SystemDefinedPixelMap properties */ in Constructor()
37 return NapiDataUtils::DefineClass(env, "SystemDefinedPixelMap", properties, count, SystemDefinedPixelMapNapi::New); in Constructor()
49 sdPixelMap->value_ = std::make_shared<SystemDefinedPixelMap>(); in New()
60 sdPixelMap->value_ = std::static_pointer_cast<SystemDefinedPixelMap>(in); in NewInstance()
H A Dunified_record_napi.cpp103 [](UDType type, ValueType value) { return std::make_shared<SystemDefinedPixelMap>(type, value); }}, in GenerateNativeRecord()
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/convert/
H A Dudmf_conversion.cpp109 record = std::make_shared<SystemDefinedPixelMap>(type, value); in ConvertRecordToSubclass()
/foundation/distributeddatamgr/udmf/interfaces/cj/src/
H A Dunified_record_impl.cpp186 { return std::make_shared<SystemDefinedPixelMap>(type, value); }}, in CUnifiedRecord()
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/fuzztest/udmfclient_fuzzer/
H A Dudmf_client_fuzzer.cpp441 SystemDefinedPixelMap systemDefinedPixelMap1; in SetDataSystemDefinedPixelMapFuzz()
447 std::shared_ptr<UnifiedRecord> record1 = std::make_shared<SystemDefinedPixelMap>(systemDefinedPixelMap1); in SetDataSystemDefinedPixelMapFuzz()
/foundation/arkui/ace_engine/adapter/ohos/capability/udmf/
H A Dudmf_impl.cpp277 auto record = std::make_shared<UDMF::SystemDefinedPixelMap>(data); in AddPixelMapRecord()
/foundation/distributeddatamgr/udmf/framework/ndkimpl/data/
H A Dudmf.cpp599 AddUds<SystemDefinedPixelMap>(record, pixelMap, UDType::SYSTEM_DEFINED_PIXEL_MAP); in OH_UdmfRecord_AddPixelMap()
/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/
H A Dpasteboard_utils.cpp531 auto pixelMap = static_cast<UDMF::SystemDefinedPixelMap *>(record.get()); in PixelMap2PasteRecord()
/foundation/distributeddatamgr/udmf/framework/common/unittest/
H A Dtlv_util_test.cpp451 std::make_shared<SystemDefinedPixelMap>(UDType::SYSTEM_DEFINED_PIXEL_MAP, obj); in HWTEST_F()
/foundation/distributeddatamgr/pasteboard/framework/test/src/
H A Dpasteboard_utils_test.cpp245 std::make_shared<UDMF::SystemDefinedPixelMap>(UDMF::SYSTEM_DEFINED_PIXEL_MAP, pixelMapIn); in InitSystemPixelMapData()
H A Dpasteboard_unified_data_test.cpp241 std::make_shared<UDMF::SystemDefinedPixelMap>(UDMF::SYSTEM_DEFINED_PIXEL_MAP, pixelMapIn); in InitSystemPixelMapData()
H A Dpasteboard_client_udmf_delay_test.cpp326 std::make_shared<SystemDefinedPixelMap>(SYSTEM_DEFINED_PIXEL_MAP, pixelMapIn); in SetPixelMapUnifiedData()

Completed in 20 milliseconds