Home
last modified time | relevance | path

Searched refs:GetOpKey (Results 1 – 24 of 24) sorted by relevance

/base/telephony/core_service/services/sim/include/
Doperator_config_cache.h43 std::string GetOpKey(int32_t slotId);
Doperator_config_loader.h59 std::string GetOpKey(std::shared_ptr<NativeRdb::AbsSharedResultSet> resultSet, int32_t slotId);
Dsim_file_manager.h59 std::u16string GetOpKey();
Dsim_manager.h99 int32_t GetOpKey(int32_t slotId, std::u16string &opkey) override;
/base/telephony/core_service/services/sim/src/
Doperator_config_loader.cpp71 return GetOpKey(resultSet, slotId); in LoadOpKeyOnMccMnc()
76 std::string OperatorConfigLoader::GetOpKey(std::shared_ptr<NativeRdb::AbsSharedResultSet> resultSet… in GetOpKey() function in OHOS::Telephony::OperatorConfigLoader
Doperator_config_cache.cpp81 std::string opkey = GetOpKey(slotId); in LoadOperatorConfig()
155 std::string OperatorConfigCache::GetOpKey(int32_t slotId) in GetOpKey() function in OHOS::Telephony::OperatorConfigCache
Dsim_manager.cpp703 int32_t SimManager::GetOpKey(int32_t slotId, std::u16string &opkey) in GetOpKey() function in OHOS::Telephony::SimManager
713 opkey = simFileManager_[slotId]->GetOpKey(); in GetOpKey()
Dsim_file_manager.cpp324 std::u16string SimFileManager::GetOpKey() in GetOpKey() function in OHOS::Telephony::SimFileManager
/base/telephony/core_service/test/fuzztest/updateiccdiallingnumbers_fuzzer/
Dupdateiccdiallingnumbers_fuzzer.cpp73 void GetOpKey(const uint8_t *data, size_t size) in GetOpKey() function
196 GetOpKey(data, size); in DoSomethingInterestingWithMyAPI()
/base/telephony/core_service/interfaces/innerkits/include/
Di_sim_manager.h93 virtual int32_t GetOpKey(int32_t slotId, std::u16string &opkey) = 0;
Dcore_service_client.h104 int32_t GetOpKey(int32_t slotId, std::u16string &opkey);
Di_core_service.h115 virtual int32_t GetOpKey(int32_t slotId, std::u16string &opkey) = 0;
Dcore_service_proxy.h110 int32_t GetOpKey(int32_t slotId, std::u16string &opkey) override;
Dcore_manager_inner.h263 int32_t GetOpKey(std::u16string &opkey);
264 int32_t GetOpKey(int32_t slotId, std::u16string &opkey);
/base/telephony/core_service/services/core/include/
Dcore_service.h185 int32_t GetOpKey(int32_t slotId, std::u16string &opkey) override;
/base/telephony/core_service/frameworks/native/src/
Dcore_service_client.cpp733 int32_t CoreServiceClient::GetOpKey(int32_t slotId, std::u16string &opkey) in GetOpKey() function in OHOS::Telephony::CoreServiceClient
740 return proxy->GetOpKey(slotId, opkey); in GetOpKey()
Dcore_manager_inner.cpp1942 int32_t CoreManagerInner::GetOpKey(std::u16string &opkey) in GetOpKey() function in OHOS::Telephony::CoreManagerInner
1950 return GetOpKey(slotId, opkey); in GetOpKey()
1953 int32_t CoreManagerInner::GetOpKey(int32_t slotId, std::u16string &opkey) in GetOpKey() function in OHOS::Telephony::CoreManagerInner
1959 return simManager_->GetOpKey(slotId, opkey); in GetOpKey()
Dcore_service_proxy.cpp2075 int32_t CoreServiceProxy::GetOpKey(int32_t slotId, std::u16string &opkey) in GetOpKey() function in OHOS::Telephony::CoreServiceProxy
/base/telephony/core_service/test/unittest/core_service_gtest/
Dzero_branch_test.cpp261 EXPECT_EQ(simFileManager.GetOpKey(), u"CMCC");
756 EXPECT_NE(mInner.GetOpKey(test), TELEPHONY_ERR_SUCCESS);
757 EXPECT_NE(mInner.GetOpKey(0, test), TELEPHONY_ERR_SUCCESS);
880 EXPECT_NE(simManager->GetOpKey(0, testStr), TELEPHONY_ERR_SUCCESS);
881 EXPECT_NE(simManager->GetOpKey(INVALID_SLOTID, testStr), TELEPHONY_ERR_SUCCESS);
Dsim_test.cpp2943 int32_t result = CoreServiceClient::GetInstance().GetOpKey(SimTest::slotId_, opkey);
2959 int32_t result = CoreServiceClient::GetInstance().GetOpKey(SimTest::slotId1_, opkey);
2992 int32_t result = CoreServiceClient::GetInstance().GetOpKey(SimTest::slotId1_, opkeyExt);
/base/telephony/core_service/services/core/src/
Dcore_service.cpp958 int32_t CoreService::GetOpKey(int32_t slotId, std::u16string &opkey) in GetOpKey() function in OHOS::Telephony::CoreService
965 return simManager_->GetOpKey(slotId, opkey); in GetOpKey()
Dcore_service_stub.cpp1232 int32_t result = GetOpKey(slotId, opkey); in OnGetOpKey()
/base/telephony/core_service/frameworks/js/sim/src/
Dnapi_sim.cpp2178 …int32_t code = DelayedRefSingleton<CoreServiceClient>::GetInstance().GetOpKey(asyncContext->slotId… in NativeGetOpKey()
2195 napi_value GetOpKey(napi_env env, napi_callback_info info) in GetOpKey() function
2613 DECLARE_NAPI_FUNCTION("getOpKey", GetOpKey), in InitSimInterface()
/base/telephony/core_service/services/sim/test/
Dtest.cpp1075 int32_t result = g_telephonyService->GetOpKey(SLOT_ID, opkey); in TestGetOpKey()