Home
last modified time | relevance | path

Searched defs:key (Results 976 - 1000 of 1739) sorted by relevance

1...<<31323334353637383940>>...70

/foundation/distributeddatamgr/preferences/frameworks/js/napi/system_storage/src/
H A Dnapi_system_storage.cpp30 std::string key; member
64 std::string key = ""; in ParseString() local
[all...]
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/
H A Dunified_meta_test.cpp461 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 Djs_utils.h139 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 Drdb_store_impl_test.cpp184 RdbStore::PRIKey key = result.GetOriginKey(std::vector<uint8_t>{}); in HWTEST_F() local
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/data/
H A Dunified_data_channel_napi.cpp71 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 Ddm_anonymous.cpp87 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 Doh_preferences.cpp179 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 Dpreferences_xml_utils.cpp235 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 Dpreferences_impl.cpp188 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 Dpreferences_enhance_impl.cpp60 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 Dpreferences_base.cpp43 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 Dnapi_rdb_js_utils.cpp279 std::string ToString(const PRIKey &key) in ToString() argument
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/service/
H A Dudmf_service_client.cpp104 int32_t UdmfServiceClient::SetData(CustomOption &option, UnifiedData &unifiedData, std::string &key) in SetData() argument
[all...]
/foundation/distributedhardware/device_manager/test/commonunittest/
H A DUTTest_hichain_connector.cpp1108 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 Dlru_bucket.h66 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 Drelational_store_utils.cpp371 char** key = static_cast<char**>(malloc(sizeof(char*) * details.size())); in ToCDetails() local
[all...]
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/client/
H A Dudmf_client.cpp39 Status UdmfClient::SetData(CustomOption &option, UnifiedData &unifiedData, std::string &key) in SetData() argument
[all...]
/foundation/distributedhardware/distributed_audio/common/test/unittest/src/
H A Ddaudio_utils_test.cpp217 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 Dpasteboardclient_fuzzer.cpp347 std::string key = "id"; in FuzzPasteboardclientcreateData() local
/foundation/distributeddatamgr/preferences/test/ndk/unittest/
H A Dpreferences_ndk_test.cpp216 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 Dlocal_device_name_mgr.cpp76 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 Dav_transport_output_filter.cpp46 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 Dtest.cpp236 NodeDeviceInfoKey key = NODE_KEY_UDID; in PrintNodeProperty() local
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/resourcemanager/
H A Dversion_info_manager.cpp124 std::string key = versionInfo.deviceId; in AddVersion() local
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/componentmanager/component_manager/src/
H A Dcomponent_manager_test.cpp524 std::string key = Sha256(UUID_TEST) + RESOURCE_SEPARATOR + DH_ID_1; in HWTEST_F() local

Completed in 20 milliseconds

1...<<31323334353637383940>>...70