Home
last modified time | relevance | path

Searched refs:GetMetaData (Results 1 – 25 of 84) sorted by relevance

1234

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Ddistributeddb_cloud_syncer_download_test.cpp255 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillOnce(Return(E_OK));
307 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillOnce(Return(-E_BUSY));
313 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillOnce(Return(-E_NOT_FOUND));
343 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
376 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
434 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
478 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
523 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
579 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
611 EXPECT_CALL(*g_iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
[all …]
H A Ddistributeddb_cloud_syncer_upload_test.cpp49 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK)); in CommonExpectCall()
166 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
234 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillOnce(Return(E_OK));
272 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillOnce(Return(-E_INVALID_DB));
303 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
338 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
390 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
511 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
688 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
737 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
[all …]
H A Dmock_icloud_sync_storage_interface.h24 MOCK_CONST_METHOD2(GetMetaData, int(const Key &, Value &));
H A Ddistributeddb_cloud_syncer_progress_manager_test.cpp82 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
139 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
196 EXPECT_CALL(*iCloud, GetMetaData(_, _)).WillRepeatedly(Return(E_OK));
/ohos5.0/foundation/multimedia/media_foundation/tests/unittest/meta/
H A Dmeta_func_unit_test.cpp80 GetMetaData(*metaIn, "width", valueOut);
262 GetMetaData(*metaIn, Tag::APP_PID, valueOut);
275 GetMetaData(*metaIn, Tag::APP_PID, valueOut);
289 GetMetaData(*metaIn, Tag::VIDEO_ROTATION, valueOut);
308 GetMetaData(*metaOut, Tag::APP_PID, valueOut);
327 GetMetaData(*metaOut, Tag::VIDEO_ROTATION, valueIntOut);
528 ASSERT_TRUE(GetMetaData(*metaOut, item.first, valueOut));
591 GetMetaData(*metaOut, item.first, valueOut);
791 GetMetaData(*outMeta, item.first, valueOutInt32); in CheckOutMeta()
1107 EXPECT_TRUE(GetMetaData(*meta, item.first, valueOut));
[all …]
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/data_share/
H A Ddata_share_db_config.cpp46 std::pair<int, DistributedData::StoreMetaData> DataShareDbConfig::GetMetaData(const DbConfig &dbCon… in GetMetaData() function in OHOS::DataShare::DataShareDbConfig
68 auto [errCode, metaData] = GetMetaData(dbConfig); in GetDbConfig()
H A Ddata_share_db_config.h42 std::pair<int, DistributedData::StoreMetaData> GetMetaData(const DbConfig &dbConfig);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dkv_storage_handle.h30 virtual int GetMetaData(const Key &key, Value &value) const = 0;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_storage_single_ver_natural_store_testcase.cpp1585 EXPECT_EQ(store->GetMetaData(key1, valueRead), E_OK); in TestMetaDataPutAndGet()
1602 EXPECT_EQ(store->GetMetaData(key1, valueRead), E_OK); in TestMetaDataPutAndGet()
1624 EXPECT_EQ(store->GetMetaData(key2, valueRead), E_OK); in TestMetaDataPutAndGet()
1637 EXPECT_EQ(store->GetMetaData(sizeKey, valueRead), E_OK); in TestMetaDataPutAndGet()
1656 EXPECT_EQ(store->GetMetaData(key1, valueRead), -E_NOT_FOUND); in TestMetaDataPutAndGet()
1657 EXPECT_EQ(store->GetMetaData(key2, valueRead), -E_NOT_FOUND); in TestMetaDataPutAndGet()
1665 EXPECT_EQ(store->GetMetaData(key2, valueRead), -E_NOT_FOUND); in TestMetaDataPutAndGet()
1886 EXPECT_EQ(store->GetMetaData(Key {'a', '1'}, value), E_OK); in TestMetaDataDeleteByPrefixKey()
1887 EXPECT_EQ(store->GetMetaData(Key {'a', '2'}, value), E_OK); in TestMetaDataDeleteByPrefixKey()
1888 EXPECT_EQ(store->GetMetaData(Key {'b', '1'}, value), -E_NOT_FOUND); in TestMetaDataDeleteByPrefixKey()
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/
H A Dvirtual_multi_ver_sync_db_interface.cpp57 int VirtualMultiVerSyncDBInterface::GetMetaData(const Key &key, Value &value) const in GetMetaData() function in DistributedDB::VirtualMultiVerSyncDBInterface
59 return kvStore_->GetMetaData(key, value); in GetMetaData()
H A Dvirtual_multi_ver_sync_db_interface.h39 int GetMetaData(const Key &key, Value &value) const override;
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/util/
H A Dproperty_util.cpp76 constexpr MetaData GetMetaData(const PropertyTypeDecl& typeDecl) in GetMetaData() function
218 GetMetaData(typeDecl), // metaData in AddOffsetProperty()
244 GetMetaData(typeDecl), // metaData in AddOffsetProperty()
625 GetMetaData(typeDecl), // metaData in AddOffsetProperty()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/
H A Disync_interface.h55 virtual int GetMetaData(const Key &key, Value &value) const = 0;
/ohos5.0/foundation/graphic/graphic_surface/surface/src/
H A Dbuffer_queue_consumer.cpp198 GSError BufferQueueConsumer::GetMetaData(uint32_t sequence, std::vector<GraphicHDRMetaData> &metaDa… in GetMetaData() function in OHOS::BufferQueueConsumer
203 return bufferQueue_->GetMetaData(sequence, metaData); in GetMetaData()
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/audio_decoder/lbvc/
H A Daudio_lbvc_decoder_plugin.cpp121 Status ret = GetMetaData(parameter); in SetParameter()
236 Status AudioLbvcDecoderPlugin::GetMetaData(const std::shared_ptr<Meta> &meta) in GetMetaData() function in OHOS::Media::Plugins::Lbvc::AudioLbvcDecoderPlugin
H A Daudio_lbvc_decoder_plugin.h64 Status GetMetaData(const std::shared_ptr<Meta> &meta);
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/audio_encoder/lbvc/
H A Daudio_lbvc_encoder_plugin.cpp123 Status ret = GetMetaData(parameter); in SetParameter()
239 Status AudioLbvcEncoderPlugin::GetMetaData(const std::shared_ptr<Meta> &meta) in GetMetaData() function in OHOS::Media::Plugins::Lbvc::AudioLbvcEncoderPlugin
H A Daudio_lbvc_encoder_plugin.h64 Status GetMetaData(const std::shared_ptr<Meta> &meta);
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dproperty_util.cpp79 constexpr MetaData GetMetaData(const PropertyTypeDecl& typeDecl) in GetMetaData() function
223 GetMetaData(typeDecl), // metaData in AddOffsetProperty()
249 GetMetaData(typeDecl), // metaData in AddOffsetProperty()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/multiver/
H A Dmulti_ver_kvdata_storage.h64 int GetMetaData(const Key &key, Value &value) const;
/ohos5.0/foundation/multimedia/media_foundation/src/meta/
H A Dformat.cpp239 return GetMetaData(*meta_, std::string(key), value); in GetIntValue()
244 return GetMetaData(*meta_, std::string(key), value); in GetLongValue()
321 bool isLongValue = GetMetaData(*meta_, std::string(key), valueTemp); in GetValueType()
/ohos5.0/foundation/graphic/graphic_surface/surface/include/
H A Dbuffer_queue_consumer.h57 GSError GetMetaData(uint32_t sequence, std::vector<GraphicHDRMetaData> &metaData) const;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/
H A Drd_single_ver_natural_store.h61 int GetMetaData(const Key &key, Value &value) const override;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/include/
H A Dhdi_layer_info.h367 std::vector<GraphicHDRMetaData> &GetMetaData() in GetMetaData() function
486 metaData_ = layerInfo->GetMetaData(); in CopyLayerInfo()
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/audio_encoder/aac/
H A Dffmpeg_aac_encoder_plugin.h105 Status GetMetaData(const std::shared_ptr<Meta> &meta);

1234