Home
last modified time | relevance | path

Searched refs:entry (Results 376 - 400 of 428) sorted by relevance

1...<<1112131415161718

/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/
H A Dkvdb_manager.cpp1045 for (const auto &entry : singleVerNaturalStores_) { in Dump()
1046 RefObject::IncObjRef(entry.second); in Dump()
1047 entry.second->Dump(fd); in Dump()
1048 RefObject::DecObjRef(entry.second); in Dump()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/multiver/
H A Dmulti_ver_natural_store.cpp535 // Put meta data as a key-value entry.
623 LOGE("deserialize data into kv entry failed:%d", errCode); in CreateKvEntry()
630 void MultiVerNaturalStore::ReleaseKvEntry(const MultiVerKvEntry *entry) in ReleaseKvEntry() argument
632 if (entry != nullptr) { in ReleaseKvEntry()
633 delete entry; in ReleaseKvEntry()
634 entry = nullptr; in ReleaseKvEntry()
/foundation/filemanagement/storage_service/services/storage_daemon/user/src/
H A Dmount_manager.cpp294 struct dirent *entry; in FindAndKillProcess() local
295 while ((entry = readdir(procDir.get())) != nullptr) { in FindAndKillProcess()
296 if (entry->d_type != DT_DIR) { in FindAndKillProcess()
299 std::string name = entry->d_name; in FindAndKillProcess()
/foundation/ability/ability_runtime/frameworks/native/ability/native/
H A Dfa_ability_thread.cpp319 std::string entry = "AbilityThread::Attach; the load lifecycle."; in CreateAbilityName() local
320 FreezeUtil::GetInstance().AddLifecycleEvent(flow, entry); in CreateAbilityName()
500 std::string entry = "AbilityThread::" + methodName + "; the foreground lifecycle."; in CreateAbilityName() local
501 FreezeUtil::GetInstance().AddLifecycleEvent(flow, entry); in CreateAbilityName()
505 std::string entry = "AbilityThread::" + methodName + "; the background lifecycle."; in CreateAbilityName() local
506 FreezeUtil::GetInstance().AddLifecycleEvent(flow, entry); in CreateAbilityName()
/foundation/graphic/graphic_3d/lume/LumeFont/src/
H A Dfont_manager.cpp255 auto entry = fileManager.GetEntry(path); in GetTypeFacesByFile() local
280 typeFaces.push_back(InitTypeFace(face, path, entry.name)); in GetTypeFacesByFile()
/foundation/filemanagement/storage_service/services/storage_daemon/utils/
H A Dfile_utils.cpp259 LOGE("Not numeric entry"); in StringToUint32()
329 FileList entry = { in ReadDigitDir() local
333 dirInfo.push_back(entry); in ReadDigitDir()
/foundation/multimodalinput/input/service/window_manager/src/
H A Dinput_display_bind_helper.cpp523 for (const auto& entry : fs::directory_iterator(DIRECTORY)) { in GetInputNode()
524 std::string node = fs::path(entry.path()).filename(); in GetInputNode()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/
H A Drdb_cursor_test.cpp105 DBStatus GetEntry(DistributedDB::Entry &entry) const override
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Drelational_result_set_impl.cpp132 DBStatus RelationalResultSetImpl::GetEntry(Entry &entry) const in GetEntry()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/cloud/
H A Ddistributeddb_cloud_interfaces_relational_sync_test.cpp553 auto entry = data[j].find(CloudDbConstant::DELETE_FIELD); in CheckCloudTotalCount() local
554 if (entry != data[j].end() && std::get<bool>(entry->second)) { in CheckCloudTotalCount()
837 Type entry; in CheckAllAssetAfterUpload() local
838 bool isExisted = CloudStorageUtils::GetTypeCaseInsensitive("assert", data1[j], entry); in CheckAllAssetAfterUpload()
840 Asset asset = std::get<Asset>(entry); in CheckAllAssetAfterUpload()
856 Type entry; in CheckAllAssetAfterUpload() local
857 bool isExisted = CloudStorageUtils::GetTypeCaseInsensitive("asserts", data2[j], entry); in CheckAllAssetAfterUpload()
859 Assets assets = std::get<Assets>(entry); in CheckAllAssetAfterUpload()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dauto_launch.cpp954 for (const auto &entry : entries) { in SetConflictNotifier()
956 uint32_t entryType = static_cast<uint32_t>(entry.type); in SetConflictNotifier()
960 dataImpl.SetConflictData(entry); in SetConflictNotifier()
1252 for (const auto &entry : userItem) { in Dump()
1253 DBDumpHelper::Dump(fd, "\t\t\t%s\n", entry.first.c_str()); in Dump()
H A Ddb_common.cpp103 for (auto &entry : inVec) { in VectorToHexString()
104 outString.push_back(CAP_HEX_CHAR_MAP[entry >> 4]); // high 4 bits to one hex. in VectorToHexString()
105 outString.push_back(CAP_HEX_CHAR_MAP[entry & 0x0F]); // low 4 bits to one hex. in VectorToHexString()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_web_controller.cpp999 for (auto& entry : methods_) { in InitJavascriptInterface()
1000 webController_->AddJavascriptInterface(entry.first, entry.second); in InitJavascriptInterface()
/foundation/communication/netmanager_ext/services/ethernetmanager/src/
H A Dethernet_configuration.cpp402 dirent *entry = nullptr; in DelDir() local
408 while ((entry = readdir(dir)) != nullptr) { in DelDir()
409 std::string filePath = dirPath + FILE_OBLIQUE_LINE + entry->d_name; in DelDir()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/
H A Dkvdb_general_store.cpp656 for (auto &entry : entries) { in ConvertChangeData()
657 auto value = std::vector<Value>{ entry.key, entry.value }; in ConvertChangeData()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/
H A Dgeneric_syncer.cpp1119 for (auto &entry : outData) { in GetSyncDataSize()
1120 delete entry; in GetSyncDataSize()
1121 entry = nullptr; in GetSyncDataSize()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/
H A Dkv_store_nb_delegate_impl.cpp722 for (const auto &entry : entries) { in SetConflictNotifier()
724 uint32_t entryType = static_cast<uint32_t>(entry.type); in SetConflictNotifier()
728 dataImpl.SetConflictData(entry); in SetConflictNotifier()
/foundation/arkui/ace_engine/adapter/ohos/capability/clipboard/
H A Dclipboard_impl.cpp215 auto entry = in AddMultiTypeRecord() local
218 MiscServices::PasteDataRecord::NewMultiTypeRecord(entry, GetMimeType(multiTypeDataMap))); in AddMultiTypeRecord()
/foundation/ability/ability_runtime/frameworks/native/ability/native/ability_runtime/
H A Djs_ui_ability.cpp346 auto entry = std::string("JsUIAbility::") + methodName + "; the " + methodName + " begin."; in AddLifecycleEventBeforeJSCall() local
347 FreezeUtil::GetInstance().AddLifecycleEvent(flow, entry); in AddLifecycleEventBeforeJSCall()
353 auto entry = std::string("JsUIAbility::") + methodName + "; the " + methodName + " end."; in AddLifecycleEventAfterJSCall() local
354 FreezeUtil::GetInstance().AddLifecycleEvent(flow, entry); in AddLifecycleEventAfterJSCall()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/
H A Dmedialibrary_data_manager.cpp1232 for (const auto& entry : filesystem::recursive_directory_iterator(cacheDir)) { in CacheAging()
1233 string filePath = entry.path().string(); in CacheAging()
1234 if (!entry.is_regular_file()) { in CacheAging()
1250 if (!filesystem::remove(entry.path(), errCode)) { in CacheAging()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/cloud/
H A Dcloud_storage_utils.cpp154 Type entry; in BindAsset() local
155 bool isExisted = GetTypeCaseInsensitive(field.colName, vBucket, entry); in BindAsset()
156 if (!isExisted || entry.index() == TYPE_INDEX<Nil>) { in BindAsset()
164 Type type = entry; in BindAsset()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/
H A Ddistributeddb_kv_create_test.cpp1946 DistributedDB::Entry entry; in HWTEST_F() local
1948 entry.value.assign(TWO_M_LONG_STRING, 'v'); in HWTEST_F()
1951 EXPECT_EQ(DistributedTestTools::Put(*result, iter->key, entry.value), OK); in HWTEST_F()
1976 EXPECT_TRUE(DistributedTestTools::IsValueEquals(valueResult, entry.value)); in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_storage_query_sync_test.cpp1389 std::vector<SingleVerKvEntry *> entry; in HWTEST_F() local
1392 EXPECT_EQ(errStore->PutSyncDataWithQuery(obj1, entry, deviceName), -E_INVALID_DB); in HWTEST_F()
1398 EXPECT_EQ(g_store->PutSyncDataWithQuery(obj1, entry, deviceName), -E_NOT_SUPPORT); in HWTEST_F()
1406 EXPECT_EQ(g_store->PutSyncDataWithQuery(obj1, entry, deviceName), -E_INVALID_ARGS); in HWTEST_F()
/foundation/distributeddatamgr/pasteboard/services/core/src/
H A Dpasteboard_service.cpp337 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_SERVICE, "pasteboard has no data or entry getter"); in GetRecordValueByType()
350 "entry getter is nullptr, dataId is %{public}d, recordId is %{public}d", dataId, recordId); in GetRecordValueByType()
886 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_SERVICE, "entry getter is nullptr, dataId is %{public}d", data.GetDataId()); in GetDelayPasteRecord()
2100 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_SERVICE, "entry getter is nullptr, userId is %{public}d", userId); in GetFullDelayPasteData()
2105 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_SERVICE, "entry getter is nullptr, dataId is %{public}d", data.GetDataId()); in GetFullDelayPasteData()
2114 for (auto entry : record->GetEntries()) { in GetFullDelayPasteData()
2115 if (!std::holds_alternative<std::monostate>(entry->GetValue())) { in GetFullDelayPasteData()
2118 auto result = getter.first->GetRecordValueByType(recordId, *entry); in GetFullDelayPasteData()
2122 data.GetDataId(), record->GetRecordId(), entry->GetMimeType().c_str()); in GetFullDelayPasteData()
2125 if (entry in GetFullDelayPasteData()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/
H A Doverlay_manager.cpp6743 for (const auto& entry : popupMap_) { in DumpPopupMapInfo()
6745 auto targetId = entry.first; in DumpPopupMapInfo()
6747 auto popupInfo = entry.second; in DumpPopupMapInfo()
6762 for (const auto& entry : map) { in DumpMapInfo()
6763 auto targetId = entry.first; in DumpMapInfo()
6765 auto node = entry.second; in DumpMapInfo()
6785 for (const auto& entry : map) { in DumpMapInfo()
6786 auto targetId = entry.first; in DumpMapInfo()
6788 auto node = entry.second.Upgrade(); in DumpMapInfo()
6808 for (const auto& entry in DumpSheetMapInfo()
[all...]

Completed in 57 milliseconds

1...<<1112131415161718