Home
last modified time | relevance | path

Searched refs:burstKey (Results 1 – 25 of 43) sorted by relevance

12

/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/operation/
H A Dphoto_burst_operation.cpp60 std::string burstKey = this->QueryBurstKeyFromDB(rdbStore, photoAssetInfo); in FindBurstKey() local
61 if (burstKey.empty()) { in FindBurstKey()
62 burstKey = this->GenerateUuid(); in FindBurstKey()
64 burstKey.c_str(), in FindBurstKey()
67 return burstKey; in FindBurstKey()
132 std::string burstKey = GetStringVal(PhotoColumn::PHOTO_BURST_KEY, resultSet); in QueryBurstKeyFromDB() local
133 return burstKey; in QueryBurstKeyFromDB()
H A Dphoto_asset_copy_operation.cpp89 …std::string burstKey = PhotoBurstOperation().SetTargetPhotoInfo(photoAssetInfo).FindBurstKey(rdbSt… in CopyPhotoAsset() local
90 if (!burstKey.empty()) { in CopyPhotoAsset()
91 values.PutString(PhotoColumn::PHOTO_BURST_KEY, burstKey); in CopyPhotoAsset()
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_photo_operations_test/src/operation/
H A Dphoto_burst_operation_test.cpp60 …std::string burstKey = PhotoBurstOperation().SetTargetPhotoInfo(photoAssetInfo).FindBurstKey(rdbSt… variable
61 EXPECT_TRUE(burstKey.empty());
77 …std::string burstKey = PhotoBurstOperation().SetTargetPhotoInfo(photoAssetInfo).FindBurstKey(rdbSt… variable
78 EXPECT_TRUE(burstKey.empty());
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/server/src/
H A Dhcapture_session_stub.cpp276 std::string burstKey; in HandleCreateMediaLibrary() local
277 int32_t ret = CreateMediaLibrary(photoProxy, uri, cameraShotType, burstKey, timestamp); in HandleCreateMediaLibrary()
278 …_RET_LOG(reply.WriteString(uri) && reply.WriteInt32(cameraShotType) && reply.WriteString(burstKey), in HandleCreateMediaLibrary()
296 std::string burstKey; in HandleCreateMediaLibraryForPicture() local
297 …int32_t ret = CreateMediaLibrary(std::move(picture), photoProxy, uri, cameraShotType, burstKey, ti… in HandleCreateMediaLibraryForPicture()
298 …_RET_LOG(reply.WriteString(uri) && reply.WriteInt32(cameraShotType) && reply.WriteString(burstKey), in HandleCreateMediaLibraryForPicture()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/
H A Dphoto_listener_impl.cpp203 std::string burstKey = ""; in ExecutePhotoAsset() local
205 uri, cameraShotType, burstKey, timestamp); in ExecutePhotoAsset()
211 auto mediaAsset = mediaAssetHelper->GetMediaAsset(uri, cameraShotType, burstKey); in ExecutePhotoAsset()
243 int32_t &cameraShotType, std::string &burstKey, int64_t timestamp) in CreateMediaLibrary() argument
271 …photoOutput->GetSession()->CreateMediaLibrary(photoProxy, uri, cameraShotType, burstKey, timestamp… in CreateMediaLibrary()
H A Dphoto_listener_impl.h63 int32_t &cameraShotType, std::string &burstKey, int64_t timestamp);
/ohos5.0/foundation/multimedia/media_library/frameworks/js/src/
H A Dmedia_library_comm_napi.cpp34 napi_env env, const string &uri, int32_t cameraShotType, const string &burstKey) in CreatePhotoAssetNapi() argument
57 fileAsset->SetBurstKey(burstKey); in CreatePhotoAssetNapi()
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_backup_clone_test/src/
H A Dmedialibrary_backup_clone_test.cpp565 string burstKey; variable
567 if (burstKey.empty()) {
568 burstKey = burstKeyGenerator.FindBurstKey(fileInfos[i]);
571 EXPECT_EQ(burstKey, burstKeyGenerator.FindBurstKey(fileInfos[i]));
594 string burstKey; variable
596 if (burstKey.empty()) {
597 burstKey = burstKeyGenerator.FindBurstKey(fileInfos[i]);
600 EXPECT_NE(burstKey, burstKeyGenerator.FindBurstKey(fileInfos[i]));
623 string burstKey; variable
625 if (burstKey.empty()) {
[all …]
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/base/include/
H A Dicapture_session.h81 std::string &uri, int32_t &cameraShotType, std::string &burstKey, int64_t timestamp) = 0;
84 std::string &uri, int32_t &cameraShotType, std::string &burstKey, int64_t timestamp) = 0;
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/client/include/
H A Dhcapture_session_proxy.h69 … std::string &uri, int32_t &cameraShotType, std::string &burstKey, int64_t timestamp) override;
72 … std::string &uri, int32_t &cameraShotType, std::string &burstKey, int64_t timestamp) override;
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/media_library_manager_test/include/
H A Dphoto_proxy_test.h184 void SetBurstKey(std::string burstKey) in SetBurstKey() argument
186 this->burstKey_ = burstKey; in SetBurstKey()
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/src/restore/
H A Dphotos_restore.cpp148 if (fileInfo.burstKey.size() > 0) { in FindBurstKey()
149 return fileInfo.burstKey; in FindBurstKey()
180 if (fileInfo.burstKey.size() > 0) { in FindSubtype()
H A Dphotos_clone.cpp210 info.burstKey = GetStringVal("burst_key", resultSet); in FindDuplicateBurstKey()
264 if (info.burstKey.empty()) { in FixDuplicateBurstKeyInDifferentAlbum()
268 … std::vector<NativeRdb::ValueObject> bindArgs = {burstKeyNew, info.ownerAlbumId, info.burstKey}; in FixDuplicateBurstKeyInDifferentAlbum()
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/client/src/
H A Dhcapture_session_proxy.cpp365 std::string &uri, int32_t &cameraShotType, std::string &burstKey, int64_t timestamp) in CreateMediaLibrary() argument
382 burstKey = reply.ReadString(); in CreateMediaLibrary()
388 std::string &burstKey, int64_t timestamp) in CreateMediaLibrary() argument
409 burstKey = reply.ReadString(); in CreateMediaLibrary()
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/src/avcodec/
H A Dcamera_server_photo_proxy.cpp238 void CameraServerPhotoProxy::SetBurstInfo(std::string burstKey, bool isCoverPhoto) in SetBurstInfo() argument
241 burstKey_ = burstKey; in SetBurstInfo()
/ohos5.0/foundation/multimedia/media_library/interfaces/kits/js/include/
H A Dmedia_library_comm_napi.h32 … napi_env env, const std::string &uri, int32_t cameraShotType, const std::string &burstKey = "");
/ohos5.0/foundation/multimedia/media_library/interfaces/inner_api/media_library_helper/include/
H A Dmedia_asset_helper.h28 …al OH_MediaAsset* GetMediaAsset(std::string uri, int32_t cameraShotType, std::string burstKey) = 0;
H A Dmedia_asset_helper_impl.h31 …OH_MediaAsset* GetMediaAsset(std::string uri, int32_t cameraShotType, std::string burstKey) overri…
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H A Dptp_media_sync_observer.cpp124 vector<string> burstKey; in GetHandlesFromPhotosInfoBurstKeys() local
126 burstKey.push_back(GetStringVal(PhotoColumn::PHOTO_BURST_KEY, resultSet)); in GetHandlesFromPhotosInfoBurstKeys()
129 CHECK_AND_RETURN_RET_LOG(!burstKey.empty(), handlesResult, in GetHandlesFromPhotosInfoBurstKeys()
137 predicatesHandles.In(PhotoColumn::PHOTO_BURST_KEY, burstKey); in GetHandlesFromPhotosInfoBurstKeys()
/ohos5.0/foundation/multimedia/media_library/frameworks/native/c_api/
H A Dmedia_asset_helper_impl.cpp41 … MediaAssetHelperImpl::GetMediaAsset(std::string uri, int32_t cameraShotType, std::string burstKey) in GetMediaAsset() argument
61 fileAsset->SetBurstKey(burstKey); in GetMediaAsset()
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/include/restore/
H A Dphotos_dao.h31 std::string burstKey; member
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/include/
H A Dhcapture_session.h262 … std::string& uri, int32_t& cameraShotType, std::string& burstKey, int64_t timestamp) override;
264 … std::string &uri, int32_t &cameraShotType, std::string& burstKey, int64_t timestamp) override;
266 bool &isBursting, std::string &burstKey);
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/include/avcodec/
H A Dcamera_server_photo_proxy.h80 void SetBurstInfo(std::string burstKey, bool isCoverPhoto);
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/src/
H A Dhstream_capture.cpp280 std::string burstKey = BURST_UUID_UNSET; in GetBurstKey() local
284 burstKey = iter->second; in GetBurstKey()
285 MEDIA_DEBUG_LOG("HStreamCapture::GetBurstKey %{public}s", burstKey.c_str()); in GetBurstKey()
289 return burstKey; in GetBurstKey()
/ohos5.0/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/output/
H A Dphoto_output_napi.h150 const std::string burstKey) const;
158 std::string& uri, int32_t& cameraShotType, std::string &burstKey, int64_t timestamp) const;
276 std::string burstKey = ""; member

12