/foundation/distributeddatamgr/preferences/frameworks/js/napi/system_storage/src/ |
H A D | napi_system_storage.cpp | 30 std::string key; member 64 std::string key = ""; in ParseString() local [all...] |
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/ |
H A D | unified_meta_test.cpp | 461 std::string key = "key"; in HWTEST_F() local 486 std::string key = "key"; in HWTEST_F() local [all...] |
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/common/include/ |
H A D | js_utils.h | 139 std::enable_if_t<!std::is_same_v<K, std::string>, std::string> ConvertMapKey(const K &key) in ConvertMapKey() argument 145 std::enable_if_t<std::is_same_v<K, std::string>, const std::string &> ConvertMapKey(const K &key) in ConvertMapKey() argument 268 std::string key; in Convert2Value() local [all...] |
/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/ |
H A D | rdb_store_impl_test.cpp | 184 RdbStore::PRIKey key = result.GetOriginKey(std::vector<uint8_t>{}); in HWTEST_F() local
|
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/data/ |
H A D | unified_data_channel_napi.cpp | 71 std::string key; in InsertData() member 110 std::string key; in UpdateData() member 113 std::string key; in UpdateData() local 144 std::string key; QueryData() member 197 std::string key; DeleteData() member 247 GetNamedProperty(napi_env env, napi_value &obj, const std::string &key, std::string &value) GetNamedProperty() argument [all...] |
/foundation/distributedhardware/device_manager/common/src/ |
H A D | dm_anonymous.cpp | 87 bool IsString(const nlohmann::json &jsonObj, const std::string &key) in IsString() argument 96 bool IsInt32(const nlohmann::json &jsonObj, const std::string &key) in IsInt32() argument 106 IsUint32(const nlohmann::json &jsonObj, const std::string &key) IsUint32() argument 116 IsInt64(const nlohmann::json &jsonObj, const std::string &key) IsInt64() argument 126 IsArray(const nlohmann::json &jsonObj, const std::string &key) IsArray() argument 135 IsBool(const nlohmann::json &jsonObj, const std::string &key) IsBool() argument [all...] |
/foundation/distributeddatamgr/preferences/frameworks/ndk/src/ |
H A D | oh_preferences.cpp | 179 int OH_Preferences_GetInt(OH_Preferences *preference, const char *key, int *value) in OH_Preferences_GetInt() argument 207 int OH_Preferences_GetString(OH_Preferences *preference, const char *key, char **value, in OH_Preferences_GetString() argument 270 OH_Preferences_GetBool(OH_Preferences *preference, const char *key, bool *value) OH_Preferences_GetBool() argument 298 OH_Preferences_SetInt(OH_Preferences *preference, const char *key, int value) OH_Preferences_SetInt() argument 314 OH_Preferences_SetBool(OH_Preferences *preference, const char *key, bool value) OH_Preferences_SetBool() argument 330 OH_Preferences_SetString(OH_Preferences *preference, const char *key, const char *value) OH_Preferences_SetString() argument 347 OH_Preferences_Delete(OH_Preferences *preference, const char *key) OH_Preferences_Delete() argument 458 OnChange(const std::string &key) OnChange() argument [all...] |
/foundation/distributeddatamgr/preferences/frameworks/native/src/ |
H A D | preferences_xml_utils.cpp | 235 xmlChar *key = xmlGetProp(node, reinterpret_cast<const xmlChar *>("key")); in ParsePrimitiveNodeElement() local 262 xmlChar *key = xmlGetProp(node, (const xmlChar *)"key"); in ParseStringNodeElement() local 289 xmlChar *key = xmlGetProp(node, (const xmlChar *)"key"); ParseArrayNodeElement() local 445 const char *key = element.key_.c_str(); CreatePrimitiveNode() local 463 const char *key = element.key_.c_str(); CreateStringNode() local 483 const char *key = element.key_.c_str(); CreateArrayNode() local [all...] |
H A D | preferences_impl.cpp | 188 PreferencesValue PreferencesImpl::Get(const std::string &key, const PreferencesValue &defValue) in Get() argument 402 bool PreferencesImpl::HasKey(const std::string &key) in HasKey() argument 412 int PreferencesImpl::Put(const std::string &key, const PreferencesValue &value) in Put() argument 435 Delete(const std::string &key) Delete() argument 522 GetValue(const std::string &key, const PreferencesValue &defValue) GetValue() argument [all...] |
H A D | preferences_enhance_impl.cpp | 60 PreferencesValue PreferencesEnhanceImpl::Get(const std::string &key, const PreferencesValue &defValue) in Get() argument 103 bool PreferencesEnhanceImpl::HasKey(const std::string &key) in HasKey() argument 145 Put(const std::string &key, const PreferencesValue &value) Put() argument 194 Delete(const std::string &key) Delete() argument 272 NotifyPreferencesObserver(std::shared_ptr<PreferencesEnhanceImpl> pref, const std::string &key, const PreferencesValue &value) NotifyPreferencesObserver() argument 365 GetValue(const std::string &key, const PreferencesValue &defValue) GetValue() argument [all...] |
H A D | preferences_base.cpp | 43 PreferencesValue PreferencesBase::Get(const std::string &key, const PreferencesValue &defValue) in Get() argument 48 int PreferencesBase::Put(const std::string &key, const PreferencesValue &value) in Put() argument 53 int PreferencesBase::GetInt(const std::string &key, const int &defValue = {}) in GetInt() argument 62 std::string PreferencesBase::GetString(const std::string &key, const std::string &defValue = {}) in GetString() argument 70 bool PreferencesBase::GetBool(const std::string &key, const bool &defValue = {}) in GetBool() argument 78 float PreferencesBase::GetFloat(const std::string &key, const float &defValue = {}) in GetFloat() argument 87 GetDouble(const std::string &key, const double &defValue = {}) GetDouble() argument 96 GetLong(const std::string &key, const int64_t &defValue = {}) GetLong() argument 110 HasKey(const std::string &key) HasKey() argument 115 PutInt(const std::string &key, int value) PutInt() argument 120 PutString(const std::string &key, const std::string &value) PutString() argument 125 PutBool(const std::string &key, bool value) PutBool() argument 130 PutLong(const std::string &key, int64_t value) PutLong() argument 135 PutFloat(const std::string &key, float value) PutFloat() argument 139 PutDouble(const std::string &key, double value) PutDouble() argument 143 Delete(const std::string &key) Delete() argument 222 GetValue(const std::string &key, const PreferencesValue &defValue) GetValue() argument 282 MakeUri(const std::string &key) MakeUri() argument [all...] |
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/ |
H A D | napi_rdb_js_utils.cpp | 279 std::string ToString(const PRIKey &key) in ToString() argument
|
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/service/ |
H A D | udmf_service_client.cpp | 104 int32_t UdmfServiceClient::SetData(CustomOption &option, UnifiedData &unifiedData, std::string &key) in SetData() argument [all...] |
/foundation/distributedhardware/device_manager/test/commonunittest/ |
H A D | UTTest_hichain_connector.cpp | 1108 std::string key; in HWTEST_F() local 1122 std::string key = "key"; in HWTEST_F() local 1139 std::string key; in HWTEST_F() local 1153 std::string key in HWTEST_F() local [all...] |
/foundation/distributeddatamgr/relational_store/rdbmock/frameworks/native/rdb/ |
H A D | lru_bucket.h | 66 bool Get(const _Key &key, _Tp &value, bool isLRU = true) in Get() argument 86 bool Set(const _Key &key, const _Tp &value) in Set() argument 119 bool Update(const _Key &key, const _Tp &value) in Update() argument 161 bool Delete(const _Key &key) in Delete() argument
|
/foundation/distributeddatamgr/relational_store/frameworks/cj/src/ |
H A D | relational_store_utils.cpp | 371 char** key = static_cast<char**>(malloc(sizeof(char*) * details.size())); in ToCDetails() local [all...] |
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/client/ |
H A D | udmf_client.cpp | 39 Status UdmfClient::SetData(CustomOption &option, UnifiedData &unifiedData, std::string &key) in SetData() argument [all...] |
/foundation/distributedhardware/distributed_audio/common/test/unittest/src/ |
H A D | daudio_utils_test.cpp | 217 std::string key = ""; in HWTEST_F() local 243 std::string key in HWTEST_F() local 323 std::string key = "123"; HWTEST_F() local 347 std::string key = "123"; HWTEST_F() local 371 std::string key = "123"; HWTEST_F() local 392 std::string key = "123"; HWTEST_F() local 405 char *key = nullptr; HWTEST_F() local [all...] |
/foundation/distributeddatamgr/pasteboard/test/fuzztest/pasteboardclient_fuzzer/ |
H A D | pasteboardclient_fuzzer.cpp | 347 std::string key = "id"; in FuzzPasteboardclientcreateData() local
|
/foundation/distributeddatamgr/preferences/test/ndk/unittest/ |
H A D | preferences_ndk_test.cpp | 216 const char *key = "test_key_int"; HWTEST_F() local 244 const char *key = "test_key_string"; HWTEST_F() local 275 const char *key = "test_key_bool"; HWTEST_F() local 358 const char *key = "ndktest_int_key_1"; HWTEST_F() local 387 const char *key = "ndktest_string_key_1"; HWTEST_F() local 418 const char *key = "ndktest_bool_key_1"; HWTEST_F() local [all...] |
/foundation/distributedhardware/device_manager/services/service/src/devicenamemgr/ |
H A D | local_device_name_mgr.cpp | 76 GetDeviceNameFromDataShareHelper( std::shared_ptr<DataShare::DataShareHelper> dataShareHelper, std::shared_ptr<Uri> uri, const char *key, std::string &deviceName) GetDeviceNameFromDataShareHelper() argument [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/av_transport/av_trans_engine/filters/av_transport_output/ |
H A D | av_transport_output_filter.cpp | 46 ErrorCode AVOutputFilter::SetParameter(int32_t key, const Any& value) in SetParameter() argument 63 ErrorCode AVOutputFilter::GetParameter(int32_t key, Any& value) in GetParameter() argument
|
/foundation/distributedhardware/distributed_screen/services/screendemo/ |
H A D | test.cpp | 236 NodeDeviceInfoKey key = NODE_KEY_UDID; in PrintNodeProperty() local
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/resourcemanager/ |
H A D | version_info_manager.cpp | 124 std::string key = versionInfo.deviceId; in AddVersion() local
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/componentmanager/component_manager/src/ |
H A D | component_manager_test.cpp | 524 std::string key = Sha256(UUID_TEST) + RESOURCE_SEPARATOR + DH_ID_1; in HWTEST_F() local
|