Home
last modified time | relevance | path

Searched refs:GetOpName (Results 1 – 23 of 23) sorted by relevance

/ohos5.0/base/telephony/core_service/test/fuzztest/updateiccdiallingnumbers_fuzzer/
H A Dupdateiccdiallingnumbers_fuzzer.cpp81 void GetOpName(const uint8_t *data, size_t size) in GetOpName() function
188 GetOpName(data, size); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/telephony/core_service/services/sim/include/
H A Dsim_file_manager.h68 std::u16string GetOpName();
H A Dsim_manager.h113 int32_t GetOpName(int32_t slotId, std::u16string &opname) override;
/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_core_service_test.cpp132 EXPECT_NE(mCoreService->GetOpName(0, testU16Str), TELEPHONY_ERR_SUCCESS);
290 EXPECT_NE(mCoreService->GetOpName(0, testU16Str), TELEPHONY_ERR_SUCCESS);
H A Dsim_test.cpp857 int32_t result = CoreServiceClient::GetInstance().GetOpName(SimTest::slotId_, opname);
873 int32_t result = CoreServiceClient::GetInstance().GetOpName(SimTest::slotId1_, opname);
H A Dzero_branch_test_core_service.cpp229 DelayedSingleton<CoreService>::GetInstance()->GetOpName(SLOT_ID, testU16Str);
H A Dzero_branch_test.cpp442 EXPECT_EQ(simFileManager.GetOpName(), u"46001");
1133 EXPECT_NE(mInner.GetOpName(0, test), TELEPHONY_ERR_SUCCESS);
1534 EXPECT_NE(simManager->GetOpName(0, testStr), TELEPHONY_ERR_SUCCESS);
1535 EXPECT_NE(simManager->GetOpName(INVALID_SLOTID, testStr), TELEPHONY_ERR_SUCCESS);
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Di_sim_manager.h101 virtual int32_t GetOpName(int32_t slotId, std::u16string &opname) = 0;
H A Dcore_service_client.h734 int32_t GetOpName(int32_t slotId, std::u16string &opname);
H A Di_core_service.h131 virtual int32_t GetOpName(int32_t slotId, std::u16string &opname) = 0;
H A Dcore_service_proxy.h129 int32_t GetOpName(int32_t slotId, std::u16string &opname) override;
H A Dcore_manager_inner.h278 int32_t GetOpName(int32_t slotId, std::u16string &opname);
/ohos5.0/base/telephony/core_service/services/sim/src/
H A Doperator_config_cache.cpp268 std::string operName = Str16ToStr8(simFileManager->GetOpName()); in SendSimMatchedOperatorInfo()
H A Dsim_manager.cpp825 int32_t SimManager::GetOpName(int32_t slotId, std::u16string &opname) in GetOpName() function in OHOS::Telephony::SimManager
835 opname = simFileManager_[slotId]->GetOpName(); in GetOpName()
H A Dsim_file_manager.cpp474 std::u16string SimFileManager::GetOpName() in GetOpName() function in OHOS::Telephony::SimFileManager
/ohos5.0/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp866 int32_t CoreServiceClient::GetOpName(int32_t slotId, std::u16string &opname) in GetOpName() function in OHOS::Telephony::CoreServiceClient
873 return proxy->GetOpName(slotId, opname); in GetOpName()
H A Dcore_manager_inner.cpp2096 int32_t CoreManagerInner::GetOpName(int32_t slotId, std::u16string &opname) in GetOpName() function in OHOS::Telephony::CoreManagerInner
2102 return simManager_->GetOpName(slotId, opname); in GetOpName()
H A Dcore_service_proxy.cpp2489 int32_t CoreServiceProxy::GetOpName(int32_t slotId, std::u16string &opname) in GetOpName() function in OHOS::Telephony::CoreServiceProxy
/ohos5.0/base/telephony/core_service/services/core/include/
H A Dcore_service.h213 int32_t GetOpName(int32_t slotId, std::u16string &opname) override;
/ohos5.0/base/telephony/core_service/services/core/src/
H A Dcore_service.cpp1315 int32_t CoreService::GetOpName(int32_t slotId, std::u16string &opname) in GetOpName() function in OHOS::Telephony::CoreService
1322 return simManager_->GetOpName(slotId, opname); in GetOpName()
H A Dcore_service_stub.cpp1643 int32_t result = GetOpName(slotId, opname); in OnGetOpName()
/ohos5.0/base/telephony/core_service/frameworks/js/sim/src/
H A Dnapi_sim.cpp2731 …int32_t code = DelayedRefSingleton<CoreServiceClient>::GetInstance().GetOpName(asyncContext->slotI… in NativeGetOpName()
2748 napi_value GetOpName(napi_env env, napi_callback_info info) in GetOpName() function
2774 DelayedRefSingleton<CoreServiceClient>::GetInstance().GetOpName(slotId, opName); in GetOpNameSync()
3183 DECLARE_NAPI_FUNCTION("getOpName", GetOpName), in InitSimInterface()
/ohos5.0/base/telephony/core_service/services/sim/test/
H A Dtest.cpp1234 int32_t result = g_telephonyService->GetOpName(testSlot, opname); in TestGetOpName()