Searched refs:hashKeys (Results 1 - 7 of 7) sorted by relevance
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/ |
H A D | statement.h | 56 virtual int ModifyLockStatus(const std::string &table, const std::vector<std::vector<uint8_t>> &hashKeys, in ModifyLockStatus() argument
|
H A D | sqlite_statement.h | 59 int ModifyLockStatus(const std::string &table, const std::vector<std::vector<uint8_t>> &hashKeys,
|
H A D | rdb_store_impl.h | 201 int GetHashKeyForLockRow(const AbsRdbPredicates &predicates, std::vector<std::vector<uint8_t>> &hashKeys);
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | rdb_store_impl.cpp | 156 std::vector<ValueObject> hashKeys; in GetModifyTime() local 157 hashKeys.reserve(keys.size()); in GetModifyTime() 169 hashKeys.emplace_back(ValueObject(hashKey)); in GetModifyTime() 177 sql.append(SqliteSqlBuilder::GetSqlArgs(hashKeys.size())); in GetModifyTime() 179 auto resultSet = QueryByStep(sql, hashKeys); in GetModifyTime() 765 int RdbStoreImpl::GetHashKeyForLockRow(const AbsRdbPredicates &predicates, std::vector<std::vector<uint8_t>> &hashKeys) in GetHashKeyForLockRow() argument 799 hashKeys.push_back(std::move(hashKey)); in GetHashKeyForLockRow() 806 std::vector<std::vector<uint8_t>> hashKeys; in ModifyLockStatus() local 807 int ret = GetHashKeyForLockRow(predicates, hashKeys); in ModifyLockStatus() 816 int errCode = statement->ModifyLockStatus(predicates.GetTableName(), hashKeys, isLoc in ModifyLockStatus() [all...] |
H A D | sqlite_statement.cpp | 697 int SqliteStatement::ModifyLockStatus(const std::string &table, const std::vector<std::vector<uint8_t>> &hashKeys, in ModifyLockStatus() argument 706 ret = Lock(table, hashKeys, db); in ModifyLockStatus() 708 ret = UnLock(table, hashKeys, db); in ModifyLockStatus()
|
H A D | rdb_store.cpp | 21 RdbStore::ModifyTime::ModifyTime(std::shared_ptr<ResultSet> result, std::map<std::vector<uint8_t>, PRIKey> hashKeys, in ModifyTime() argument 23 : result_(std::move(result)), hash_(std::move(hashKeys)), isFromRowId_(isFromRowId) in ModifyTime()
|
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/ |
H A D | rdb_store.h | 125 API_EXPORT ModifyTime(std::shared_ptr<ResultSet> result, std::map<std::vector<uint8_t>, PRIKey> hashKeys,
|
Completed in 7 milliseconds