Home
last modified time | relevance | path

Searched refs:selectionArgs (Results 1 – 25 of 79) sorted by relevance

1234

/ohos5.0/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_sqlite_shared_result_set_test.cpp213 std::vector<std::string> selectionArgs; variable
242 std::vector<std::string> selectionArgs; variable
308 std::vector<std::string> selectionArgs; variable
407 std::vector<std::string> selectionArgs; variable
442 std::vector<std::string> selectionArgs; variable
495 std::vector<std::string> selectionArgs; variable
539 std::vector<std::string> selectionArgs; variable
593 std::vector<std::string> selectionArgs; variable
646 std::vector<std::string> selectionArgs; variable
686 std::vector<std::string> selectionArgs; variable
[all …]
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/
H A Dmedialibrary_file_operations.cpp396 if (argIndex > selectionArgs.size() - 1) { in ReplaceSelectionAndArgsInQuery()
401 const string &arg = selectionArgs[argIndex]; in ReplaceSelectionAndArgsInQuery()
408 selectionArgs[argIndex] = argInstead; in ReplaceSelectionAndArgsInQuery()
414 vector<string> &selectionArgs, string &sql) in BuildCompatQuerySql() argument
433 selectionArgs.insert(selectionArgs.end(), whereArgs.begin(), whereArgs.end()); in BuildCompatQuerySql()
500 for (const auto &arg : selectionArgs) { in CampatQueryDebug()
503 auto resultSet = store->QuerySql(sql, selectionArgs); in CampatQueryDebug()
546 vector<string> selectionArgs; in QueryFileOperation() local
547 BuildQueryFileSql(cmd, selectionArgs, sql); in QueryFileOperation()
548 CampatQueryDebug(sql, selectionArgs, uniStore); in QueryFileOperation()
[all …]
H A Dmedialibrary_album_operations.cpp138 if (argIndex > selectionArgs.size() - 1) { in ReplaceRelativePath()
143 const string &arg = selectionArgs[argIndex]; in ReplaceRelativePath()
151 selectionArgs[argIndex] = "1"; in ReplaceRelativePath()
173 if (argIndex > selectionArgs.size() - 1) { in ReplaceMediaType()
181 selectionArgs[argIndex] = "1"; in ReplaceMediaType()
201 ReplaceRelativePath(clause, selectionArgs); in GetSqlArgs()
202 ReplaceMediaType(clause, selectionArgs); in GetSqlArgs()
239 for (const auto &arg : selectionArgs) { in QuerySqlDebug()
306 vector<string> selectionArgs; in QueryAlbumOperation() local
307 GetSqlArgs(cmd, sql, selectionArgs, columns); in QueryAlbumOperation()
[all …]
/ohos5.0/foundation/multimedia/ringtone_library/test/unittest/ringtone_test/src/
H A Dringtone_unittest.cpp103 vector<string> selectionArgs = { ZERO }; variable
105 predicates.SetWhereArgs(selectionArgs);
153 vector<string> selectionArgs = { ZERO }; variable
155 predicates.SetWhereArgs(selectionArgs);
203 vector<string> selectionArgs = { ZERO }; variable
205 predicates.SetWhereArgs(selectionArgs);
279 predicates.SetWhereArgs(selectionArgs);
321 predicates.SetWhereArgs(selectionArgs);
352 predicates.SetWhereArgs(selectionArgs);
394 predicates.SetWhereArgs(selectionArgs);
[all …]
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_file_extension/src/
H A Dmedia_file_extention_utils.cpp474 vector<string> &selectionArgs) in GetListFilePredicates() argument
495 selectionArgs.push_back(displayName[0]); in GetListFilePredicates()
531 const vector<string> &selectionArgs) in GetResult() argument
536 predicates.SetWhereArgs(selectionArgs); in GetResult()
609 vector<string> selectionArgs; in GetListDirResult() local
625 vector<string> selectionArgs; in GetListAlbumResult() local
802 const vector<string> &selectionArgs) in GetScanFileResult() argument
807 predicates.SetWhereArgs(selectionArgs); in GetScanFileResult()
827 vector<string> selectionArgs; in SetScanFileSelection() local
830 selectionArgs.push_back(filePath + "%"); in SetScanFileSelection()
[all …]
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.8.2/
H A Dchangelogs-mediaLibrary.md50 selectionArgs: [albumId.toString()],
76 selectionArgs: [imageType.toString()], // 查询所有图片类型的文件。
110 selectionArgs: ['新建相册1'], // 获取albumName为新建相册1的相册。
135 selectionArgs: ['Camera', 'Screenshots'], // 获取相机相册和截屏录屏相册。
174 selectionArgs: [imageType.toString()],
/ohos5.0/foundation/multimedia/media_library/
H A DREADME_zh.md56 3. 使用 **GetAudioAssets** 接口来查询音频文件。输入参数 *selectionArgs* 暂无作用,接口会返回 *AudioAsset* 的列表。
58 vector<string> selectionArgs;
59 …ue_ptr<AudioAsset>> audioAssets = mediaLibClientInstance->GetAudioAssets(selection, selectionArgs);
H A DREADME.md57 3. Use the **GetAudioAssets** API to query for audio files. The input argument *selectionArgs* does…
59 vector<string> selectionArgs;
60 …ue_ptr<AudioAsset>> audioAssets = mediaLibClientInstance->GetAudioAssets(selection, selectionArgs);
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Drd_result_set.cpp30 const std::vector<ValueObject>& selectionArgs) in RdSharedResultSet() argument
31 : statement_(nullptr), args_(std::move(selectionArgs)), sql_(sql), in RdSharedResultSet()
41 const std::vector<ValueObject>& selectionArgs, int rowCount) in RdSharedResultSet() argument
42 : statement_(nullptr), args_(std::move(selectionArgs)), sql_(sql_), in RdSharedResultSet()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Drd_result_set.h36 const std::vector<ValueObject>& selectionArgs);
38 const std::vector<ValueObject>& selectionArgs, int rowCount);
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.8.2/
H A Dchangelogs-mediaLibrary.md50 selectionArgs: [albumId.toString()],
76 selectionArgs: [imageType.toString()], // Query all files of the image type.
110 selectionArgs:['New album 1'], //Obtain the album named New album 1.
135 selectionArgs: ['Camera', 'Screenshots'], // Obtain the camera and screenshot albums.
174 selectionArgs: [imageType.toString()],
/ohos5.0/foundation/resourceschedule/device_usage_statistics/test/unittest/mock/
H A Dbundle_active_usage_database_mock.cpp23 const string &sql, const vector<string> &selectionArgs) in QueryStatsInfoByStep() argument
/ohos5.0/foundation/multimedia/ringtone_library/services/ringtone_data_extension/src/
H A Dringtone_rdbstore.cpp186 …eRdb::ResultSet> RingtoneRdbStore::QuerySql(const string &sql, const vector<string> &selectionArgs) in QuerySql() argument
195 auto resultSet = rdbStore_->QuerySql(sql, selectionArgs); in QuerySql()
/ohos5.0/foundation/bundlemanager/app_domain_verify/test/unittest/mock/include/
H A Dmock_rdb.h101 const std::string& sql, const std::vector<std::string>& selectionArgs) override in QuerySql() argument
106 const std::string& sql, const std::vector<ValueObject>& selectionArgs) override in QuerySql() argument
111 const std::string& sql, const std::vector<std::string>& selectionArgs) override in QueryByStep() argument
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/include/
H A Dmock_app_provision_info.h90 const std::string &sql, const std::vector<std::string> &selectionArgs) in QuerySql() argument
95 const std::string &sql, const std::vector<ValueObject> &selectionArgs = {})
100 const std::string &sql, const std::vector<std::string> &selectionArgs) in QueryByStep() argument
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_service_stub.cpp209 std::vector<std::string> selectionArgs; in OnRemoteDoRemoteQuery() local
210 if (!ITypesUtil::Unmarshal(data, param, device, sql, selectionArgs)) { in OnRemoteDoRemoteQuery()
214 Anonymous::Change(sql).c_str(), selectionArgs.size()); in OnRemoteDoRemoteQuery()
218 auto [status, resultSet] = RemoteQuery(param, device, sql, selectionArgs); in OnRemoteDoRemoteQuery()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/ndktest/camera_ndk_demo/entry/src/main/ets/model/
H A DMediaUtils.ts58 selectionArgs: [args],
89 selectionArgs: [`${mediaType}`],
/ohos5.0/foundation/multimedia/media_library/interfaces/kits/js/include/sendable/
H A Dsendable_photo_access_helper_napi.h54 static void ReplaceSelection(std::string &selection, std::vector<std::string> &selectionArgs,
124 std::vector<std::string> selectionArgs; member
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_rdb_test/src/
H A Dmedialibrary_rdb_test.cpp215 vector<string> selectionArgs; variable
217 selectionArgs.push_back(to_string(rowId));
218 selectionArgs.push_back(to_string(rowId));
219 cmd.GetAbsRdbPredicates()->SetWhereArgs(selectionArgs);
/ohos5.0/foundation/communication/netmanager_ext/services/netfirewallmanager/src/
H A Dnetfirewall_database.cpp175 const std::vector<std::string> &selectionArgs) in QuerySql() argument
181 return store_->QuerySql(sql, selectionArgs); in QuerySql()
/ohos5.0/foundation/multimedia/ringtone_library/services/ringtone_data_extension/include/
H A Dringtone_unistore.h49 const std::vector<std::string> &selectionArgs = std::vector<std::string>())
H A Dringtone_rdbstore.h45 const std::vector<std::string> &selectionArgs = std::vector<std::string>()) override;
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/clouddisk_database/include/
H A Dclouddisk_rdbstore_mock.h125 … const std::vector<std::string> &selectionArgs));
130 …std::shared_ptr<ResultSet>(const std::string &sql, const std::vector<std::string> &selectionArgs));
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/mock/
H A Drdb_store_mock.h124 … const std::vector<std::string> &selectionArgs));
129 …std::shared_ptr<ResultSet>(const std::string &sql, const std::vector<std::string> &selectionArgs));
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_queryperf_test/src/
H A Dmedialibrary_queryperf_test.cpp423 vector<string> selectionArgs = { "0" }; variable
425 predicates.SetWhereArgs(selectionArgs);
551 vector<string> selectionArgs = { "0" }; variable
553 predicates.SetWhereArgs(selectionArgs);

1234