Home
last modified time | relevance | path

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

/base/telephony/data_storage/
DBUILD.gn35 "$SOURCE_DIR/opkey/src/opkey_ability.cpp",
36 "$SOURCE_DIR/opkey/src/rdb_opkey_callback.cpp",
37 "$SOURCE_DIR/opkey/src/rdb_opkey_helper.cpp",
53 "$SOURCE_DIR/opkey/include",
DREADME.md36 ├─ opkey # opkey framework
88 | opkey module| ohos.permission.GET_TELEPHONY_STATE<br>ohos.permission.SET_TELEPHONY_STATE |
DREADME_zh.md34 ├─ opkey # 随卡框架
/base/telephony/core_service/services/sim/src/
Doperator_config_cache.cpp81 std::string opkey = GetOpKey(slotId); in LoadOperatorConfig() local
82 if (opkey == std::string(INITIAL_OPKEY)) { in LoadOperatorConfig()
Doperator_config_loader.cpp44 std::string opkey = LoadOpKeyOnMccMnc(slotId); in LoadOperatorConfig() local
Dsim_manager.cpp703 int32_t SimManager::GetOpKey(int32_t slotId, std::u16string &opkey) in GetOpKey() argument
713 opkey = simFileManager_[slotId]->GetOpKey(); in GetOpKey()
/base/telephony/data_storage/test/unittest/data_test/
DBUILD.gn26 "$SOURCE_DIR/opkey/include",
Ddata_storage_test.cpp135 std::string opkey = "1435"; in OpKeyInsert() local
142 value.PutString(OpKeyData::OPERATOR_KEY, opkey); in OpKeyInsert()
/base/telephony/data_storage/test/unittest/data_gtest/
DBUILD.gn31 "$SOURCE_DIR/opkey/include",
Ddata_storage_gtest.cpp141 std::string opkey = "110"; in OpKeyInsert() local
148 value.PutString(OpKeyData::OPERATOR_KEY, opkey); in OpKeyInsert()
/base/telephony/core_service/interfaces/innerkits/include/
Dcore_service_client.h104 int32_t GetOpKey(int32_t slotId, std::u16string &opkey);
105 int32_t GetOpKeyExt(int32_t slotId, std::u16string &opkey);
Di_sim_manager.h93 virtual int32_t GetOpKey(int32_t slotId, std::u16string &opkey) = 0;
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/services/sim/include/
Dsim_manager.h99 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() argument
740 return proxy->GetOpKey(slotId, opkey); in GetOpKey()
Dcore_manager_inner.cpp1942 int32_t CoreManagerInner::GetOpKey(std::u16string &opkey) in GetOpKey() argument
1950 return GetOpKey(slotId, opkey); in GetOpKey()
1953 int32_t CoreManagerInner::GetOpKey(int32_t slotId, std::u16string &opkey) in GetOpKey() argument
1959 return simManager_->GetOpKey(slotId, opkey); in GetOpKey()
Dcore_service_proxy.cpp2075 int32_t CoreServiceProxy::GetOpKey(int32_t slotId, std::u16string &opkey) in GetOpKey() argument
2100 opkey = reply.ReadString16(); in GetOpKey()
/base/telephony/core_service/services/sim/test/
Dtest.cpp1074 std::u16string opkey; in TestGetOpKey() local
1075 int32_t result = g_telephonyService->GetOpKey(SLOT_ID, opkey); in TestGetOpKey()
1076 std::string str = Str16ToStr8(opkey); in TestGetOpKey()
/base/telephony/core_service/services/core/src/
Dcore_service.cpp958 int32_t CoreService::GetOpKey(int32_t slotId, std::u16string &opkey) in GetOpKey() argument
965 return simManager_->GetOpKey(slotId, opkey); in GetOpKey()
Dcore_service_stub.cpp1231 std::u16string opkey; in OnGetOpKey() local
1232 int32_t result = GetOpKey(slotId, opkey); in OnGetOpKey()
1241 if (!reply.WriteString16(opkey)) { in OnGetOpKey()
/base/telephony/core_service/test/unittest/core_service_gtest/
Dsim_test.cpp2942 std::u16string opkey; variable
2943 int32_t result = CoreServiceClient::GetInstance().GetOpKey(SimTest::slotId_, opkey);
2958 std::u16string opkey; variable
2959 int32_t result = CoreServiceClient::GetInstance().GetOpKey(SimTest::slotId1_, opkey);
/base/telephony/core_service/frameworks/js/sim/src/
Dnapi_sim.cpp2177 std::u16string opkey; in NativeGetOpKey() local
2178 …code = DelayedRefSingleton<CoreServiceClient>::GetInstance().GetOpKey(asyncContext->slotId, opkey); in NativeGetOpKey()
2180 asyncContext->callbackVal = NapiUtil::ToUtf8(opkey); in NativeGetOpKey()