Home
last modified time | relevance | path

Searched refs:dataKey (Results 1 – 14 of 14) sorted by relevance

/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
Ddistributeddb_data_transformer_test.cpp82 logInfo.dataKey = i; in GenerateTableDataWithLog()
89 if (origin.dataKey != target.dataKey) { in Equal()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
Dsqlite_single_ver_relational_storage_executor.h177 int64_t dataKey = DBConstant::DEFAULT_ROW_ID);
274 int64_t dataKey);
340 int RemoveDataAndLog(const std::string &tableName, int64_t dataKey);
374 int64_t dataKey, OpType opType);
388 … GetAssetOnTable(const std::string &tableName, const std::string &fieldName, const int64_t dataKey,
393 …GetAssetsOnTable(const std::string &tableName, const std::string &fieldName, const int64_t dataKey,
402 int UpdateAssetId(const TableSchema &tableSchema, int64_t dataKey, const VBucket &vBucket);
Dsqlite_single_ver_relational_storage_extend_executor.cpp984 …SingleVerRelationalStorageExecutor::RemoveDataAndLog(const std::string &tableName, int64_t dataKey) in RemoveDataAndLog() argument
988 std::to_string(dataKey); in RemoveDataAndLog()
995 std::to_string(dataKey); in RemoveDataAndLog()
1415 const TableSchema &tableSchema, const VBucket &vBucket, int64_t dataKey, OpType opType) in OnlyUpdateAssetId() argument
1424 int errCode = UpdateAssetId(tableSchema, dataKey, vBucket); in OnlyUpdateAssetId()
1522 const std::string &fieldName, const int64_t dataKey, Asset &asset) in GetAssetOnTable() argument
1526 … "' WHERE " + std::string(DBConstant::SQLITE_INNER_ROWID) + " = " + std::to_string(dataKey) + ";"; in GetAssetOnTable()
1562 const std::string &fieldName, const int64_t dataKey, Assets &assets) in GetAssetsOnTable() argument
1566 … "' WHERE " + std::string(DBConstant::SQLITE_INNER_ROWID) + " = " + std::to_string(dataKey) + ";"; in GetAssetsOnTable()
1636 …eSingleVerRelationalStorageExecutor::UpdateAssetId(const TableSchema &tableSchema, int64_t dataKey, in UpdateAssetId() argument
[all …]
Dsqlite_single_ver_relational_storage_executor_extend.cpp91 logInfo.dataKey = sqlite3_column_int64(statement, 0); in GetLogInfoByStatement()
514 const TrackerTable &trackerTable, int64_t dataKey) in InsertCloudData() argument
517 if (dataKey > 0) { in InsertCloudData()
518 errCode = RemoveDataAndLog(tableSchema.name, dataKey); in InsertCloudData()
Dsqlite_single_ver_relational_storage_executor.cpp515 logInfo.dataKey = sqlite3_column_int64(logStatement, 0); // 0 means dataKey index in GetLogData()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
Ddata_transformer.h30 int64_t dataKey = -1; member
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/
Dcloud_sync_utils.cpp24 …::GetCloudPkVals(const VBucket &datum, const std::vector<std::string> &pkColNames, int64_t dataKey, in GetCloudPkVals() argument
35 cloudPkVals.emplace_back(dataKey); in GetCloudPkVals()
181 cloudLogInfo.dataKey = 0; in GetCloudLogInfo()
195 …CloudSyncUtils::GetCloudPkVals(localInfo.primaryKeys, changedData.field, localInfo.logInfo.dataKey, in SaveChangedDataByType()
198 …ret = CloudSyncUtils::GetCloudPkVals(datum, changedData.field, localInfo.logInfo.dataKey, cloudPkV… in SaveChangedDataByType()
Dcloud_sync_utils.h34 …t GetCloudPkVals(const VBucket &datum, const std::vector<std::string> &pkColNames, int64_t dataKey,
Dcloud_syncer_extend.cpp448 param.downloadData.existDataKey[index] = logInfo.logInfo.dataKey; in GetLocalInfo()
Dcloud_syncer.cpp634 param.downloadData.data[idx], param.pkColNames, dataInfo.localInfo.logInfo.dataKey, pkVals); in HandleTagAssets()
/foundation/graphic/graphic_2d/frameworks/vulkan_layers/swapchain_layer/
Dswapchain_layer.cpp118 LayerData* GetLayerDataPtr(DispatchKey dataKey) in GetLayerDataPtr() argument
121 auto it = g_layerDataMap.find(dataKey); in GetLayerDataPtr()
124 g_layerDataMap[dataKey] = layerData; in GetLayerDataPtr()
131 void FreeLayerDataPtr(DispatchKey dataKey) in FreeLayerDataPtr() argument
133 auto it = g_layerDataMap.find(dataKey); in FreeLayerDataPtr()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
Ddistributeddb_interfaces_relational_sync_test.cpp758 virtualRowData.logInfo.dataKey = 3; // 3 fake datakey in operator ()()
978 virtualRowData.logInfo.dataKey = 4; // 4 fake datakey in operator ()()
Ddistributeddb_interfaces_relational_test.cpp1181 rowData.logInfo.dataKey = rowid; in operator ()()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/relational/
Drelational_sync_able_storage.cpp1741 downloadData.existDataKey.push_back(dataInfoWithLog.logInfo.dataKey); in UpsertDataInTransaction()