Home
last modified time | relevance | path

Searched refs:configValue (Results 1 – 15 of 15) sorted by relevance

/base/hiviewdfx/hiview/plugins/sysevent_source/
Dmonitor_config.cpp55 … uint32_t configValue = static_cast<uint32_t>(atol(std::string(result[configValueField]).c_str())); in Parse() local
56 configs_[configItem] = configValue; in Parse()
57 HIVIEW_LOGD("config=%{public}s value=%{public}u", configItem.c_str(), configValue); in Parse()
/base/telephony/core_service/services/sim/src/
Doperator_config_cache.cpp68 opc_.configValue.clear(); in ClearMemoryCache()
90 TELEPHONY_LOGI("load from file success opc size %{public}zu", poc.configValue.size()); in LoadOperatorConfig()
91 if (poc.configValue.size() > 0) { in LoadOperatorConfig()
105 if (poc.configValue.size() > 0) { in LoadOperatorConfig()
120 if (opc_.configValue.size() > 0) { in GetOperatorConfigs()
133 for (const auto &it : from.configValue) { in CopyOperatorConfig()
134 to.configValue[it.first] = it.second; in CopyOperatorConfig()
Doperator_file_parser.cpp139 std::map<std::u16string, std::u16string> &configValue = opc.configValue; in ParseOperatorConfigFromJson() local
143 configValue[Str8ToStr16(keyStr8)] = Str8ToStr16(value.toStyledString()); in ParseOperatorConfigFromJson()
157 configValue[Str8ToStr16(keyStr8)] = Str8ToStr16(value.asString()); in ParseOperatorConfigFromJson()
163 configValue[Str8ToStr16(keyStr8)] = Str8ToStr16(value.asString()); in ParseOperatorConfigFromJson()
176 configValue[Str8ToStr16(keyStr8)] = Str8ToStr16(value.asString()); in ParseOperatorConfigFromJson()
Doperator_config_loader.cpp46 TELEPHONY_LOGI("LoadOperatorConfig %{public}zu", opc.configValue.size()); in LoadOperatorConfig()
/base/telephony/core_service/frameworks/native/src/
Doperator_config_types.cpp53 if (!parcel.WriteInt32(configValue.size())) { in MarshallingU16StringMap()
56 auto valueIt = configValue.begin(); in MarshallingU16StringMap()
57 while (valueIt != configValue.end()) { in MarshallingU16StringMap()
235 configValue.clear(); in ReadFromU16StringMap()
244 configValue.emplace(std::pair<std::u16string, std::u16string>(first, second)); in ReadFromU16StringMap()
/base/telephony/core_service/frameworks/js/sim/include/
Dnapi_sim.h65 std::vector<ConfigInfo> configValue {};
/base/request/request/frameworks/js/napi/src/upload/
Djs_util.cpp205 bool JSUtil::ParseHeader(napi_env env, napi_value configValue, std::map<std::string, std::string> &… in ParseHeader() argument
207 if (!NapiUtils::HasNamedProperty(env, configValue, "header")) { in ParseHeader()
213 napi_value jsHeader = NapiUtils::GetNamedProperty(env, configValue, "header"); in ParseHeader()
/base/telephony/core_service/interfaces/innerkits/include/
Doperator_config_types.h96 std::map<std::u16string, std::u16string> configValue {};
/base/request/request/frameworks/js/napi/include/upload/
Djs_util.h63 …static bool ParseHeader(napi_env env, napi_value configValue, std::map<std::string, std::string> &…
/base/request/request/frameworks/js/napi/include/
Dnapi_utils.h89 Action GetRequestAction(napi_env env, napi_value configValue);
/base/request/request/frameworks/js/napi/src/
Dnapi_utils.cpp622 Action GetRequestAction(napi_env env, napi_value configValue) in GetRequestAction() argument
624 …if (HasNamedProperty(env, configValue, PARAM_KEY_METHOD) || HasNamedProperty(env, configValue, PAR… in GetRequestAction()
625 HasNamedProperty(env, configValue, PARAM_KEY_DATA)) { in GetRequestAction()
/base/telephony/sms_mms/frameworks/js/napi/src/
Dnapi_mms.cpp1671 napi_value configValue = NapiUtil::GetNamedProperty(env, param, "mmsConfig"); in GetMmsNameProperty() local
1672 if (configValue != nullptr) { in GetMmsNameProperty()
1673 napi_value uaValue = NapiUtil::GetNamedProperty(env, configValue, "userAgent"); in GetMmsNameProperty()
1681 napi_value uaprofValue = NapiUtil::GetNamedProperty(env, configValue, "userAgentProfile"); in GetMmsNameProperty()
/base/telephony/cellular_data/services/src/
Dcellular_data_handler.cpp1245 if (configsFor5G.configValue.count(configName) > 0) { in ParseOperatorConfig()
1246 std::string flag = Str16ToStr8(configsFor5G.configValue[configName]); in ParseOperatorConfig()
/base/telephony/core_service/services/sim/test/
Dtest.cpp950 std::map<std::u16string, std::u16string>::iterator valueIt = oc.configValue.begin(); in TestGetOperatorConfig()
951 while (valueIt != oc.configValue.end()) { in TestGetOperatorConfig()
/base/telephony/core_service/frameworks/js/sim/src/
Dnapi_sim.cpp1864 for (const auto &val : config.configValue) { in NativeGetOperatorConfigs()
1866 info->configValue.push_back(config); in NativeGetOperatorConfigs()
1883 for (size_t i = 0; i < operatorConfig->configValue.size(); i++) { in GetOperatorConfigsCallback()
1884 napi_value val = OperatorConfigAnalyze(env, operatorConfig->configValue.at(i)); in GetOperatorConfigsCallback()