/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/mock/ |
H A D | system_defined_pixelmap_mock.cpp | 20 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 D | system_defined_pixelmap.cpp | 15 #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 D | system_defined_pixelmap.h | 23 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 D | system_defined_pixelmap_test.cpp | 56 * @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 D | ndk_data_conversion_test.cpp | 283 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 D | udmf_client_test.cpp | 846 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 D | system_defined_pixelmap_napi.h | 28 class SystemDefinedPixelMap; 33 std::shared_ptr<SystemDefinedPixelMap> value_;
|
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/data/ |
H A D | system_defined_pixelmap_napi.cpp | 28 /* 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 D | unified_record_napi.cpp | 103 [](UDType type, ValueType value) { return std::make_shared<SystemDefinedPixelMap>(type, value); }}, in GenerateNativeRecord()
|
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/convert/ |
H A D | udmf_conversion.cpp | 109 record = std::make_shared<SystemDefinedPixelMap>(type, value);
in ConvertRecordToSubclass()
|
/foundation/distributeddatamgr/udmf/interfaces/cj/src/ |
H A D | unified_record_impl.cpp | 186 { return std::make_shared<SystemDefinedPixelMap>(type, value); }}, in CUnifiedRecord()
|
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/fuzztest/udmfclient_fuzzer/ |
H A D | udmf_client_fuzzer.cpp | 441 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 D | udmf_impl.cpp | 277 auto record = std::make_shared<UDMF::SystemDefinedPixelMap>(data); in AddPixelMapRecord()
|
/foundation/distributeddatamgr/udmf/framework/ndkimpl/data/ |
H A D | udmf.cpp | 599 AddUds<SystemDefinedPixelMap>(record, pixelMap, UDType::SYSTEM_DEFINED_PIXEL_MAP);
in OH_UdmfRecord_AddPixelMap()
|
/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/ |
H A D | pasteboard_utils.cpp | 531 auto pixelMap = static_cast<UDMF::SystemDefinedPixelMap *>(record.get()); in PixelMap2PasteRecord()
|
/foundation/distributeddatamgr/udmf/framework/common/unittest/ |
H A D | tlv_util_test.cpp | 451 std::make_shared<SystemDefinedPixelMap>(UDType::SYSTEM_DEFINED_PIXEL_MAP, obj); in HWTEST_F()
|
/foundation/distributeddatamgr/pasteboard/framework/test/src/ |
H A D | pasteboard_utils_test.cpp | 245 std::make_shared<UDMF::SystemDefinedPixelMap>(UDMF::SYSTEM_DEFINED_PIXEL_MAP, pixelMapIn); in InitSystemPixelMapData()
|
H A D | pasteboard_unified_data_test.cpp | 241 std::make_shared<UDMF::SystemDefinedPixelMap>(UDMF::SYSTEM_DEFINED_PIXEL_MAP, pixelMapIn); in InitSystemPixelMapData()
|
H A D | pasteboard_client_udmf_delay_test.cpp | 326 std::make_shared<SystemDefinedPixelMap>(SYSTEM_DEFINED_PIXEL_MAP, pixelMapIn);
in SetPixelMapUnifiedData()
|