Home
last modified time | relevance | path

Searched refs:poc (Results 1 – 25 of 36) sorted by relevance

12

/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_test_util.cpp108 OperatorConfig poc; in ParseOperatorConf() local
122 CompareOperatorConfProcess(poc); in ParseOperatorConf()
137 if (poc.stringArrayValue.find("string") != poc.stringArrayValue.end()) { in CompareOperatorConfProcess()
138 EXPECT_EQ("JSON中国", poc.stringValue["string"]); in CompareOperatorConfProcess()
140 if (poc.stringArrayValue.find("long") != poc.stringArrayValue.end()) { in CompareOperatorConfProcess()
143 if (poc.stringArrayValue.find("int") != poc.stringArrayValue.end()) { in CompareOperatorConfProcess()
146 if (poc.stringArrayValue.find("bool") != poc.stringArrayValue.end()) { in CompareOperatorConfProcess()
147 EXPECT_EQ(true, poc.boolValue["bool"]); in CompareOperatorConfProcess()
149 if (poc.stringArrayValue.find("strA") != poc.stringArrayValue.end()) { in CompareOperatorConfProcess()
152 if (poc.intArrayValue.find("intA") != poc.intArrayValue.end()) { in CompareOperatorConfProcess()
[all …]
H A Dsim_operator_brocast_test.cpp32 OperatorConfig poc; in OnReceiveEvent() local
34 telephonyService_->GetOperatorConfigs(slotId, poc); in OnReceiveEvent()
35 … TELEPHONY_LOGI("SimOperatorBrocastTest::OnReceiveEvent:event=%{public}d", poc.intValue["int"]); in OnReceiveEvent()
H A Dsim_test.cpp112 OperatorConfig poc; variable
117 CoreServiceClient::GetInstance().GetOperatorConfigs(SimTest::slotId_, poc);
118 CoreManagerInner::GetInstance().GetOperatorConfigs(SimTest::slotId_, poc);
119 CompareOperatorConfProcess(poc);
166 OperatorConfig poc; variable
172 CoreServiceClient::GetInstance().GetOperatorConfigs(SimTest::slotId1_, poc);
173 CoreManagerInner::GetInstance().GetOperatorConfigs(SimTest::slotId1_, poc);
174 CompareOperatorConfProcess(poc);
H A Dsim_test_util.h181 static void CompareOperatorConfProcess(OperatorConfig poc);
/ohos5.0/base/telephony/core_service/services/sim/src/
H A Doperator_config_cache.cpp74 int32_t slotId, OperatorConfig &poc, int32_t state, bool needUpdateLoading) in UpdateCurrentOpc() argument
77 CopyOperatorConfig(poc, opc_); in UpdateCurrentOpc()
105 TELEPHONY_LOGI("load from file success opc size %{public}zu", poc.configValue.size()); in LoadOperatorConfig()
106 if (poc.configValue.size() > 0) { in LoadOperatorConfig()
108 UpdateCurrentOpc(slotId, poc, state, false); in LoadOperatorConfig()
114 if (parser_.ParseFromCustomSystem(slotId, poc, root)) { in LoadOperatorConfig()
118 if (poc.configValue.size() > 0) { in LoadOperatorConfig()
120 UpdateCurrentOpc(slotId, poc, state, true); in LoadOperatorConfig()
136 int32_t OperatorConfigCache::GetOperatorConfigs(int32_t slotId, OperatorConfig &poc) in GetOperatorConfigs() argument
141 CopyOperatorConfig(opc_, poc); in GetOperatorConfigs()
[all …]
H A Dsim_account_manager.cpp70 int32_t SimAccountManager::GetOperatorConfigs(int32_t slotId, OHOS::Telephony::OperatorConfig &poc) in GetOperatorConfigs() argument
77 return operatorConfigCache_->GetOperatorConfigs(static_cast<int32_t>(slotId), poc); in GetOperatorConfigs()
H A Dsim_manager.cpp591 int32_t SimManager::GetOperatorConfigs(int32_t slotId, OperatorConfig &poc) in GetOperatorConfigs() argument
597 return simAccountManager_[slotId]->GetOperatorConfigs(slotId, poc); in GetOperatorConfigs()
/ohos5.0/base/telephony/core_service/services/sim/include/
H A Doperator_file_parser.h32 OperatorConfig &poc, const std::string &path, cJSON *root, bool needSaveTempOpc = false);
40 void ParseOperatorConfigFromJson(const cJSON *root, OperatorConfig &poc, bool needSaveTempOpc);
43 void ParseArray(const std::string key, const cJSON *value, OperatorConfig &poc);
H A Doperator_config_cache.h32 int32_t LoadOperatorConfig(int32_t slotId, OperatorConfig &poc, int32_t state = 0);
33 int32_t GetOperatorConfigs(int32_t slotId, OperatorConfig &poc);
46 … void UpdateCurrentOpc(int32_t slotId, OperatorConfig &poc, int32_t state, bool needUpdateLoading);
H A Dsim_account_manager.h35 int32_t GetOperatorConfigs(int slotId, OperatorConfig &poc);
H A Dsim_manager.h88 int32_t GetOperatorConfigs(int32_t slotId, OperatorConfig &poc) override;
/ohos5.0/base/telephony/cellular_call/services/utils/src/
H A Dcellular_call_config.cpp390 int32_t CellularCallConfig::ParseAndCacheOperatorConfigs(int32_t slotId, OperatorConfig &poc) in ParseAndCacheOperatorConfigs() argument
400 ParseBoolOperatorConfigs(slotId, hideImsSwitch_, poc, KEY_HIDE_IMS_SWITCH_BOOL); in ParseAndCacheOperatorConfigs()
401 ParseBoolOperatorConfigs(slotId, volteSupported_, poc, KEY_VOLTE_SUPPORTED_BOOL); in ParseAndCacheOperatorConfigs()
403 ParseBoolOperatorConfigs(slotId, ssOverUtSupported_, poc, KEY_SS_OVER_UT_SUPPORTED_BOOL); in ParseAndCacheOperatorConfigs()
404 ParseBoolOperatorConfigs(slotId, imsGbaRequired_, poc, KEY_IMS_GBA_REQUIRED_BOOL); in ParseAndCacheOperatorConfigs()
409 if (poc.intArrayValue.count(KEY_NR_MODE_SUPPORTED_LIST_INT_ARRAY) > 0) { in ParseAndCacheOperatorConfigs()
412 if (poc.intValue.count(KEY_CALL_WAITING_SERVICE_CLASS_INT) > 0) { in ParseAndCacheOperatorConfigs()
413 callWaitingServiceClass_[slotId] = poc.intValue[KEY_CALL_WAITING_SERVICE_CLASS_INT]; in ParseAndCacheOperatorConfigs()
417 poc.stringArrayValue[KEY_IMS_CALL_DISCONNECT_REASONINFO_MAPPING_STRING_ARRAY]; in ParseAndCacheOperatorConfigs()
425 auto it = poc.boolValue.find(configName); in ParseBoolOperatorConfigs()
[all …]
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/common/
H A Dreference_parser.h52 uint32_t poc = 0; member
/ohos5.0/base/telephony/cellular_call/services/utils/include/
H A Dcellular_call_config.h428 int32_t ParseAndCacheOperatorConfigs(int32_t slotId, OperatorConfig &poc);
430 … int32_t slotId, std::map<int32_t, bool> &config, OperatorConfig &poc, std::string configName);
/ohos5.0/foundation/multimedia/av_codec/test/unittest/hcodec_test/helper/
H A Dtester_codecbase.cpp57 int32_t poc {}; in OnOutputBufferAvailable() local
58 if (buffer->meta_->GetData(OHOS::Media::Tag::VIDEO_PER_FRAME_POC, poc)) { in OnOutputBufferAvailable()
59 TLOGI("buffer->pts_[%" PRId64 "], poc[%d]", buffer->pts_, poc); in OnOutputBufferAvailable()
/ohos5.0/drivers/peripheral/codec/interfaces/include/
H A Dcodec_omx_ext.h439 uint32_t poc; member
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Di_sim_manager.h75 virtual int32_t GetOperatorConfigs(int slotId, OperatorConfig &poc) = 0;
H A Dcore_service_client.h441 int32_t GetOperatorConfigs(int32_t slotId, OperatorConfig &poc);
H A Di_core_service.h100 virtual int32_t GetOperatorConfigs(int32_t slotId, OperatorConfig &poc) = 0;
H A Dcore_service_proxy.h80 int32_t GetOperatorConfigs(int32_t slotId, OperatorConfig &poc) override;
H A Dcore_manager_inner.h267 int32_t GetOperatorConfigs(int32_t slotId, OperatorConfig &poc);
/ohos5.0/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp554 int32_t CoreServiceClient::GetOperatorConfigs(int32_t slotId, OperatorConfig &poc) in GetOperatorConfigs() argument
561 return proxy->GetOperatorConfigs(slotId, poc); in GetOperatorConfigs()
/ohos5.0/base/telephony/core_service/services/core/include/
H A Dcore_service.h174 int32_t GetOperatorConfigs(int32_t slotId, OperatorConfig &poc) override;
/ohos5.0/base/telephony/core_service/services/core/src/
H A Dcore_service.cpp805 int32_t CoreService::GetOperatorConfigs(int32_t slotId, OperatorConfig &poc) in GetOperatorConfigs() argument
820 return simManager_->GetOperatorConfigs(slotId, poc); in GetOperatorConfigs()
/ohos5.0/base/telephony/cellular_call/test/unittest/imstest/
H A Dzero_branch_test.cpp231 OperatorConfig poc; variable
232 config.ParseAndCacheOperatorConfigs(SIM1_SLOTID, poc);

12