/foundation/multimedia/media_library/frameworks/services/media_multistages_capture/src/ |
H A D | multistages_capture_manager.cpp | 44 string where = predicates.GetWhereClause() + " AND " + PhotoColumn::PHOTO_QUALITY + "=" +
in RemovePhotos() local 47 predicatesNew.SetWhereClause(where);
in RemovePhotos() 88 string where = predicates.GetWhereClause() + " AND " + PhotoColumn::PHOTO_QUALITY + "=" +
in RestorePhotos() local 90 predicatesNew.SetWhereClause(where);
in RestorePhotos()
|
H A D | multistages_video_capture_manager.cpp | 109 string where = MEDIA_DATA_DB_ID + " = ? ";
in AddVideo() local 111 cmd.GetAbsRdbPredicates()->SetWhereClause(where);
in AddVideo() 139 string where = MEDIA_DATA_DB_PHOTO_ID + " is not null and " +
in SyncWithDeferredVideoProcSessionInternal() local 142 cmd.GetAbsRdbPredicates()->SetWhereClause(where);
in SyncWithDeferredVideoProcSessionInternal() 203 string where = PhotoColumn::PHOTO_ID + " = ? ";
in RemoveVideo() local 205 cmd.GetAbsRdbPredicates()->SetWhereClause(where);
in RemoveVideo()
|
H A D | multistages_photo_capture_manager.cpp | 379 string where = MEDIA_DATA_DB_PHOTO_ID + " is not null and " +
in SyncWithDeferredProcSessionInternal() local 382 cmd.GetAbsRdbPredicates()->SetWhereClause(where);
in SyncWithDeferredProcSessionInternal()
|
/foundation/window/window_manager/window_scene/session_manager/src/ |
H A D | extension_session_manager.cpp | 213 const char* const where = __func__; in RequestExtensionSessionDestructionDone() local 214 auto task = [this, where, weakExtSession = wptr<ExtensionSession>(extensionSession)] { in RequestExtensionSessionDestructionDone() 217 TLOGNE(WmsLogTag::WMS_UIEXT, "%{public}s session is nullptr", where); in RequestExtensionSessionDestructionDone() 222 HITRACE_METER_FMT(HITRACE_TAG_WINDOW_MANAGER, "esm:%{public}s", where); in RequestExtensionSessionDestructionDone() 225 where, persistentId); in RequestExtensionSessionDestructionDone()
|
/foundation/multimedia/media_library/frameworks/services/media_multistages_capture/src/deferred_processing/ |
H A D | multistages_capture_deferred_photo_proc_session_callback.cpp | 113 string where = PhotoColumn::PHOTO_ID + " = ? "; in QuerySubType() local 115 cmd.GetAbsRdbPredicates()->SetWhereClause(where); in QuerySubType() 153 string where = PhotoColumn::PHOTO_ID + " = ? "; in QueryPhotoData() local 155 cmd.GetAbsRdbPredicates()->SetWhereClause(where); in QueryPhotoData() 225 string where = ""; in GetCommandByImageId() local 236 where = PhotoColumn::MEDIA_ID + " = ? "; in GetCommandByImageId() 239 cmd.GetAbsRdbPredicates()->SetWhereClause(where); in GetCommandByImageId()
|
H A D | multistages_capture_deferred_video_proc_session_callback.cpp | 60 string where = PhotoColumn::PHOTO_ID + " = ? ";
in OnProcessVideoDone() local 62 cmd.GetAbsRdbPredicates()->SetWhereClause(where);
in OnProcessVideoDone()
|
/foundation/window/window_manager/window_scene/session/host/src/ |
H A D | multi_instance_manager.cpp | 57 const char* const where = __func__; in SetCurrentUserId() local 58 auto task = [this, where] { in SetCurrentUserId() 62 TLOGNE(WmsLogTag::WMS_LIFE, "%{public}s:get application infos fail", where); in SetCurrentUserId() 70 TLOGNI(WmsLogTag::WMS_LIFE, "%{public}s:application infos init", where); in SetCurrentUserId() 72 taskScheduler_->PostAsyncTask(task, where); in SetCurrentUserId()
|
H A D | scene_session.cpp | 352 const char* const where = __func__; in ClearSpecificSessionCbMap() local 353 auto task = [weakThis = wptr(this), where] { in ClearSpecificSessionCbMap() 356 TLOGNE(WmsLogTag::WMS_SYSTEM, "%{public}s: session is null", where); in ClearSpecificSessionCbMap() 544 const char* const where = __func__; in OnSessionModalTypeChange() local 545 auto task = [weakThis = wptr(this), subWindowModalType, where]() { in OnSessionModalTypeChange() 548 TLOGNE(WmsLogTag::WMS_LIFE, "%{public}s session is null", where); in OnSessionModalTypeChange() 552 where, static_cast<uint32_t>(subWindowModalType)); in OnSessionModalTypeChange() 564 const char* const where = __func__; in SetSessionModalTypeChangeCallback() local 565 auto task = [weakThis = wptr(this), func, where]() { in SetSessionModalTypeChangeCallback() 568 TLOGNE(WmsLogTag::WMS_LIFE, "%{public}s session or SessionModalTypeChangeFunc is null", where); in SetSessionModalTypeChangeCallback() [all...] |
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | trans_db.cpp | 107 std::pair<int, int> TransDB::Update(const std::string &table, const Row &row, const std::string &where, in Update() argument 134 if (!where.empty()) { in Update() 135 sql.append(" WHERE ").append(where); in Update()
|
H A D | transaction_impl.cpp | 199 std::pair<int, int> TransactionImpl::Update(const std::string &table, const Row &row, const std::string &where, in Update() argument 207 return store->Update(table, row, where, args, resolution); in Update()
|
H A D | rdb_store.cpp | 159 std::pair<int, int> RdbStore::Update(const std::string &table, const Row &row, const std::string &where, in Update() argument 164 (void)where; in Update()
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_common_utils_test/src/ |
H A D | medialibrary_common_utils_test.cpp | 61 string where = "CheckWhereClause;"; in HWTEST_F() local 62 ret = MediaLibraryCommonUtils::CheckWhereClause(where); in HWTEST_F()
|
/foundation/multimedia/media_library/frameworks/services/media_multistages_capture/src/utils/ |
H A D | file_utils.cpp | 100 string where = PhotoColumn::PHOTO_ID + " = ? ";
in SavePicture() local 102 cmd.GetAbsRdbPredicates()->SetWhereClause(where);
in SavePicture()
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/ |
H A D | trans_db.h | 29 std::pair<int, int> Update(const std::string &table, const Row &row, const std::string &where, const Values &args,
|
H A D | transaction_impl.h | 39 std::pair<int, int> Update(const std::string &table, const Row &row, const std::string &where,
|
H A D | rdb_store_impl.h | 86 std::pair<int, int> Update(const std::string &table, const Row &row, const std::string &where, const Values &args,
|
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/ |
H A D | transaction.h | 121 * @param whereClause Indicates the where clause. 122 * @param args Indicates the where arguments. 124 virtual std::pair<int, int> Update(const std::string &table, const Row &row, const std::string &where = "", 141 * @param whereClause Indicates the where clause. 142 * @param args Indicates the where arguments.
|
H A D | rdb_store.h | 205 * @param whereClause Indicates the where clause. 206 * @param args Indicates the where arguments. 208 virtual std::pair<int, int> Update(const std::string &table, const Row &row, const std::string &where = "", 217 * @param whereClause Indicates the where clause. 218 * @param args Indicates the where arguments. 238 * @param whereClause Indicates the where clause. 239 * @param args Indicates the where arguments. 251 * @param whereClause Indicates the where clause. 252 * @param args Indicates the where arguments. 266 * @param whereClause Indicates the where claus [all...] |
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/ |
H A D | medialibrary_subscriber.cpp | 391 string where = PhotoColumn::PHOTO_IS_TEMP + " = 1 AND (" + PhotoColumn::MEDIA_DATE_ADDED + " <= " + in DeleteTemporaryPhotos() local 396 " where " + PhotoColumn::PHOTO_IS_TEMP + " = 1) > 100) "; in DeleteTemporaryPhotos() 397 predicates.SetWhereClause(where); in DeleteTemporaryPhotos()
|
/foundation/multimedia/media_library/frameworks/services/media_cloud_enhancement/src/enhancement_service/ |
H A D | enhancement_service_callback.cpp | 224 string where = PhotoColumn::PHOTO_ID + " = ? ";
in DealWithSuccessedTask() local 227 servicePredicates.SetWhereClause(where);
in DealWithSuccessedTask()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/ |
H A D | sqlite_single_ver_relational_storage_executor_extend.cpp | 388 std::string sql = "SELECT value FROM " + DBConstant::RELATIONAL_PREFIX + "metadata where key = ?;"; in GetCursor() 418 std::string sql = "UPDATE " + DBConstant::RELATIONAL_PREFIX + "metadata SET VALUE = ? where KEY = ?;"; in SetCursor() 880 std::string where = " WHERE"; in GetWhereConditionForDataTable() local 882 where += " " + std::string(DBConstant::SQLITE_INNER_ROWID) + " = (SELECT data_key FROM " + in GetWhereConditionForDataTable() 887 where += " OR"; in GetWhereConditionForDataTable() 889 where += " (1 = 1"; in GetWhereConditionForDataTable() 891 where += (" AND " + pk + " = ?"); in GetWhereConditionForDataTable() 893 where += ");"; in GetWhereConditionForDataTable() 895 return where; in GetWhereConditionForDataTable() 1231 " SET timestamp=? where hash_ke in ReviseLocalModTime() [all...] |
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_stage_napi/ |
H A D | js_window_stage.cpp | 669 const char* const where = __func__; in OnCreateSubWindowWithOptions() local 671 [where, windowScene, windowName = std::move(windowName), option] in OnCreateSubWindowWithOptions() 678 TLOGNE(WmsLogTag::WMS_SUB, "%{public}s [NAPI]Get window failed", where); in OnCreateSubWindowWithOptions() 685 where, windowName.c_str()); in OnCreateSubWindowWithOptions()
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/mock/include/ |
H A D | rdb_store_impl.h | 41 std::pair<int, int> Update(const std::string &table, const Row &row, const std::string &where, const Values &args,
|
/foundation/window/window_manager/window_scene/interfaces/kits/napi/scene_session_manager/ |
H A D | js_scene_session.cpp | 814 const char* const where = __func__; in ClearCbMap() local 815 auto task = [weakThis = wptr(this), where] { in ClearCbMap() 818 TLOGNE(WmsLogTag::WMS_LIFE, "%{public}s: jsSceneSession is null", where); in ClearCbMap() 821 TLOGNI(WmsLogTag::WMS_LIFE, "%{public}s: persistent id %{public}d", where, jsSceneSession->persistentId_); in ClearCbMap() 833 where, jsSceneSession->persistentId_); in ClearCbMap() 1298 const char* const where = __func__; in ProcessSessionModalTypeChangeRegister() local 1300 [weakThis = wptr(this), where](SubWindowModalType subWindowModalType) { in ProcessSessionModalTypeChangeRegister() 1303 TLOGNE(WmsLogTag::WMS_LIFE, "%{public}s jsSceneSession is null", where); in ProcessSessionModalTypeChangeRegister() 2986 const char* const where = __func__; in OnSessionModalTypeChange() local 2987 auto task = [weakThis = wptr(this), persistentId = persistentId_, subWindowModalType, env = env_, where] { in OnSessionModalTypeChange() [all...] |
/foundation/window/window_manager/interfaces/kits/napi/extension_window/ |
H A D | js_extension_window.cpp | 937 const char* const where = __func__;
in OnCreateSubWindowWithOptions() local 939 [where, extensionWindow = extensionWindow_, windowName = std::move(windowName),
in OnCreateSubWindowWithOptions() 962 where, windowName.c_str());
in OnCreateSubWindowWithOptions()
|