Home
last modified time | relevance | path

Searched refs:GetModifyTime (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_store_impl_test.cpp113 store_->GetModifyTime("rdbstoreimpltest_integer", "ROWID", PKey);
142 store_->GetModifyTime("rdbstoreimpltest_integer", "ROWID", PKey);
147 result = store_->GetModifyTime("test", "ROWID", PKey);
173 …RdbStore::ModifyTime resultMapTmp = store_->GetModifyTime("rdbstoreimpltest_integer", "ROWID", PKe…
177 …RdbStore::ModifyTime resultPtrTmp = store_->GetModifyTime("rdbstoreimpltest_integer", "ROWID", PKe…
183 RdbStore::ModifyTime result = store_->GetModifyTime("rdbstoreimpltest_integer", "ROWID", PKey);
206 std::map<RdbStore::PRIKey, RdbStore::Date> result = store_->GetModifyTime("", "data_key", PKey);
211 result = store_->GetModifyTime("test", "data_key", PKey);
216 result = store_->GetModifyTime("test", "", PKey);
222 result = store_->GetModifyTime("test", "data_key", emptyPRIKey);
[all …]
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/clouddisk_database/include/
H A Dresult_set_mock.h62 MOCK_METHOD1(GetModifyTime, int(std::string &));
H A Dclouddisk_resultset_mock.h64 MOCK_METHOD1(GetModifyTime, int(std::string &));
H A Dclouddisk_rdbstore_mock.h145 MOCK_METHOD3(GetModifyTime, ModifyTime(const std::string &table, const std::string &columnName,
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/mock/
H A Dabs_shared_result_set_mock.h62 MOCK_METHOD1(GetModifyTime, int(std::string &));
H A Dresult_set_mock.h62 MOCK_METHOD1(GetModifyTime, int(std::string &));
H A Drdb_store_mock.h144 MOCK_METHOD3(GetModifyTime, ModifyTime(const std::string &table, const std::string &columnName,
/ohos5.0/foundation/bundlemanager/app_domain_verify/test/unittest/mock/include/
H A Dmock_rdb.h285 ModifyTime GetModifyTime( in GetModifyTime() function
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/include/
H A Dmock_app_provision_info.h290 virtual ModifyTime GetModifyTime( in GetModifyTime() function
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/include/
H A Dnapi_rdb_store.h80 static napi_value GetModifyTime(napi_env env, napi_callback_info info);
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Drdb_store.h646 …virtual ModifyTime GetModifyTime(const std::string &table, const std::string &column, std::vector<…
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Drdb_store_impl.h133 ModifyTime GetModifyTime(const std::string &table, const std::string &columnName,
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Drdb_store.cpp549 RdbStore::ModifyTime RdbStore::GetModifyTime(const std::string &table, const std::string &column, in GetModifyTime() function in OHOS::NativeRdb::RdbStore
H A Drdb_store_impl.cpp145 RdbStore::ModifyTime RdbStoreImpl::GetModifyTime(const std::string &table, const std::string &colum… in GetModifyTime() function in OHOS::NativeRdb::RdbStoreImpl
/ohos5.0/base/notification/distributed_notification_service/services/ans/test/unittest/notification_rdb_data_mgr_test/
H A Dnotification_rdb_data_mgr_test.cpp322 virtual ModifyTime GetModifyTime( in GetModifyTime() function in OHOS::Notification::RdbStoreTest
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/
H A Dnapi_rdb_store.cpp175 DECLARE_NAPI_FUNCTION("getModifyTime", GetModifyTime), in GetDescriptors()
1517 napi_value RdbStoreProxy::GetModifyTime(napi_env env, napi_callback_info info) in GetModifyTime() function in OHOS::RelationalStoreJsKit::RdbStoreProxy
1531 …context->modifyTime = context->rdbStore->GetModifyTime(context->tableName, context->columnName, co… in GetModifyTime()
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/ndk/src/
H A Drelational_store.cpp690 auto results = rdbStore->GetStore()->GetModifyTime(tableName, columnName, keys); in OH_Rdb_FindModifyTime()