Home
last modified time | relevance | path

Searched refs:tableData (Results 1 - 18 of 18) sorted by relevance

/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Ddelay_notify.cpp32 if (task_ != nullptr && changedData_.tableData.size() > 0) { in ~DelayNotify()
48 for (auto& [k, v] : changedData.tableData) { in UpdateNotify()
52 auto it = changedData_.tableData.find(k); in UpdateNotify()
53 if (it == changedData_.tableData.end()) { in UpdateNotify()
54 changedData_.tableData.insert_or_assign(k, v); in UpdateNotify()
82 changedData.tableData = changedData_.tableData; in StartTimer()
96 if (autoSyncInterval_ == AUTO_SYNC_INTERVAL || changedData.tableData.empty()) { in StartTimer()
137 changedData.tableData = std::move(changedData_.tableData); in ExecuteTask()
[all...]
H A Drdb_types_util.cpp187 return Marshal(data, input.tableData); in Marshalling()
192 return Unmarshal(data, output.tableData); in Unmarshalling()
H A Dsqlite_connection.cpp468 for (auto &[key, val] : clientData.tableData) { in SubscribeTableChanges()
H A Drdb_store_impl.cpp752 rdbChangedData.tableData[table].isTrackedDataChange = true; in RegisterDataChangeCallback()
/foundation/graphic/graphic_2d/rosen/modules/texgine/src/
H A Dfont_parser.cpp184 std::unique_ptr<char[]> tableData = nullptr; in ParseCmapTable() local
185 tableData = std::make_unique<char[]>(size); in ParseCmapTable()
186 auto retTableData = typeface->GetTableData(tag, 0, size, tableData.get()); in ParseCmapTable()
193 reinterpret_cast<const char*>(tableData.get()), size, HB_MEMORY_MODE_WRITABLE, tableData.get(), nullptr); in ParseCmapTable()
215 std::unique_ptr<char[]> tableData = nullptr; in ParseNameTable() local
216 tableData = std::make_unique<char[]>(size); in ParseNameTable()
217 auto retTableData = typeface->GetTableData(tag, 0, size, tableData.get()); in ParseNameTable()
224 reinterpret_cast<const char*>(tableData.get()), size, HB_MEMORY_MODE_WRITABLE, tableData in ParseNameTable()
251 std::unique_ptr<char[]> tableData = nullptr; ParsePostTable() local
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Dvirtual_cloud_db.cpp250 for (auto &tableData : cloudData_[tableName]) { in DeleteByGid()
251 if (std::get<std::string>(tableData.extend[g_gidField]) == std::get<std::string>(extend[g_gidField])) { in DeleteByGid()
252 tableData.extend[g_modifiedField] = (int64_t)TimeHelper::GetSysCurrentTime() / in DeleteByGid()
254 tableData.extend[g_deleteField] = true; in DeleteByGid()
255 tableData.extend[g_cursorField] = std::to_string(currentCursor_++); in DeleteByGid()
257 tableData.record.clear(); in DeleteByGid()
317 for (auto &tableData : allData) { in GetCloudData()
318 std::string srcCursor = std::get<std::string>(tableData.extend[g_cursorField]); in GetCloudData()
320 if ((!queryNodes.empty()) && (!IsCloudGidMatching(queryNodes, tableData.extend)) && in GetCloudData()
321 (!IsPrimaryKeyMatching(queryNodes, tableData in GetCloudData()
[all...]
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/
H A Dskia_typeface_test.cpp81 std::unique_ptr<char[]> tableData = nullptr; in HWTEST_F() local
82 tableData = std::make_unique<char[]>(size); in HWTEST_F()
83 auto retTableData = typeface1->GetTableData(tag, 0, size, tableData.get()); in HWTEST_F()
258 std::unique_ptr<char[]> tableData = nullptr; in HWTEST_F() local
259 tableData = std::make_unique<char[]>(size); in HWTEST_F()
260 auto retTableData = typeface->GetTableData(tag, 0, size, tableData.get()); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/test/texgine/unittest/
H A Dfont_parser_test.cpp199 std::unique_ptr<char[]> tableData = nullptr; in HWTEST_F() local
200 tableData = std::make_unique<char[]>(size); in HWTEST_F()
201 auto retTableData = typeface->GetTableData(tag, 0, size, tableData.get()); in HWTEST_F()
205 reinterpret_cast<const char *>(tableData.get()), size, HB_MEMORY_MODE_WRITABLE, tableData.get(), nullptr); in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/relational/
H A Drelational_store_client.h30 std::map<std::string, DistributedDB::ChangeProperties> tableData; member
/foundation/arkui/ace_engine/test/component_test/tools/previewer_host/main/
H A Dcollect_results_and_visualize.js282 var tableData = ${JSON.stringify(list)};
284 tableData.forEach(function(item){
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_web.h84 static void TableData(bool tableData);
H A Djs_web.cpp1916 JSClass<JSWeb>::StaticMethod("tableData", &JSWeb::TableData); in JSBind()
3845 void JSWeb::TableData(bool tableData) {} in TableData() argument
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Drdb_types.h305 std::map<std::string, RdbChangeProperties> tableData; member
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/relational/
H A Drelational_store_sqlite_ext.cpp673 auto itTable = g_clientChangedDataMap[hashFileName].tableData.find(tableName); in CloudDataChangedObserver()
674 if (itTable != g_clientChangedDataMap[hashFileName].tableData.end()) { in CloudDataChangedObserver()
679 g_clientChangedDataMap[hashFileName].tableData.insert_or_assign(tableName, properties); in CloudDataChangedObserver()
916 if (it != g_clientChangedDataMap.end() && !it->second.tableData.empty()) { in ClientObserverCallback()
922 g_clientChangedDataMap[hashFileName].tableData.clear(); in ClientObserverCallback()
1012 if (it != g_clientChangedDataMap.end() && !it->second.tableData.empty()) { in RollbackHookCallback()
1013 g_clientChangedDataMap[hashFileName].tableData.clear(); in RollbackHookCallback()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/fuzztest/storage_fuzzer/
H A Dstorage_fuzzer.cpp248 for (const auto &tableEntry : clientChangedData.tableData) { in ClientObserverFunc()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_cloud_interfaces_relational_ext_test.cpp60 for (const auto &tableEntry : clientChangedData.tableData) { in ClientObserverFunc()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_service_impl.cpp1081 for (const auto& [key, value] : rdbChangedData.tableData) {
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DarkComponent.js25359 tableData(tableData) {

Completed in 55 milliseconds