Searched refs:exporter (Results 1 - 9 of 9) sorted by relevance
/foundation/graphic/graphic_3d/lume/metaobject/test/src/ |
H A D | serialisation_utils.cpp | 84 auto exporter = GetObjectRegistry().Create<IFileExporter>(META_NS::ClassId::JsonExporter); 85 bool ret = exporter->Export(data_, object);
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/ |
H A D | upgrade.cpp | 127 bool Upgrade::RegisterExporter(uint32_t version, Exporter exporter) in RegisterExporter() argument 130 exporter_ = std::move(exporter); in RegisterExporter()
|
H A D | upgrade.h | 39 API_EXPORT bool RegisterExporter(uint32_t version, Exporter exporter);
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/backup/include/ |
H A D | backup_manager.h | 42 void RegisterExporter(int32_t type, Exporter exporter);
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/ |
H A D | kvdb_service_test.cpp | 150 DistributedKv::Upgrade::Exporter exporter = [](const StoreMetaData &, DBPassword &) {
in HWTEST_F() local 153 upgrade.exporter_ = exporter;
in HWTEST_F() 169 EXPECT_TRUE(upgrade.RegisterExporter(oldMeta.version, exporter));
in HWTEST_F() 196 DistributedKv::Upgrade::Exporter exporter = [](const StoreMetaData &, DBPassword &) {
in HWTEST_F() local 199 EXPECT_TRUE(upgrade.RegisterExporter(oldMeta.version, exporter));
in HWTEST_F()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/backup/src/ |
H A D | backup_manager.cpp | 85 void BackupManager::RegisterExporter(int32_t type, Exporter exporter) in RegisterExporter() argument 88 exporters_[type] = exporter; in RegisterExporter() 90 ZLOGI("Auto backup exporter has registed, type:%{public}d.", type); in RegisterExporter()
|
/foundation/graphic/graphic_3d/lume/metaobject/src/ |
H A D | object_registry.cpp | 499 BASE_NS::string ObjectRegistry::ExportToString(const IObjectRegistryExporter::Ptr& exporter) const in ExportToString() 501 return exporter ? exporter->ExportRegistry(this) : ""; in ExportToString()
|
H A D | object_registry.h | 75 BASE_NS::string ExportToString(const IObjectRegistryExporter::Ptr& exporter) const override;
|
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/ |
H A D | intf_object_registry.h | 262 * @param exporter The exporter to use. 264 virtual BASE_NS::string ExportToString(const IObjectRegistryExporter::Ptr& exporter) const = 0;
|
Completed in 6 milliseconds