Home
last modified time | relevance | path

Searched refs:GetShowName (Results 1 – 22 of 22) sorted by relevance

/ohos5.0/base/telephony/core_service/test/fuzztest/setshowname_fuzzer/
H A Dsetshowname_fuzzer.cpp49 void GetShowName(const uint8_t *data, size_t size) in GetShowName() function
145 GetShowName(data, size); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/telephony/core_service/services/sim/include/
H A Dmulti_sim_controller.h56 int32_t GetShowName(int32_t slotId, std::u16string &showName);
H A Dsim_manager.h84 int32_t GetShowName(int32_t slotId, std::u16string &showName) override;
/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_core_service_test.cpp82 EXPECT_NE(mCoreService->GetShowName(0, testU16Str), TELEPHONY_ERR_SUCCESS);
228 EXPECT_NE(mCoreService->GetShowName(0, testU16Str), TELEPHONY_ERR_SUCCESS);
H A Dsim_test.cpp483 CoreServiceClient::GetInstance().GetShowName(SimTest::slotId_, showName);
501 CoreServiceClient::GetInstance().GetShowName(SimTest::slotId1_, showName);
518 CoreServiceClient::GetInstance().GetShowName(SimTest::slotId_, showName);
H A Dzero_branch_test_core_service.cpp207 DelayedSingleton<CoreService>::GetInstance()->GetShowName(SLOT_ID, testU16Str);
210 …EXPECT_GE(DelayedSingleton<CoreService>::GetInstance()->GetShowName(SLOT_ID, testU16Str), TELEPHON…
H A Dzero_branch_test.cpp1061 EXPECT_GT(mInner.GetShowName(0, result), TELEPHONY_ERR_SUCCESS);
1369 EXPECT_NE(multiSimController->GetShowName(0, testU16Str), TELEPHONY_ERR_SUCCESS);
1522 EXPECT_GT(simManager->GetShowName(0, result), TELEPHONY_ERR_SUCCESS);
1523 EXPECT_GT(simManager->GetShowName(INVALID_SLOTID, result), TELEPHONY_ERR_SUCCESS);
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Di_sim_manager.h73 virtual int32_t GetShowName(int32_t slotId, std::u16string &showName) = 0;
H A Dcore_service_client.h424 int32_t GetShowName(int32_t slotId, std::u16string &showName);
H A Di_core_service.h98 virtual int32_t GetShowName(int32_t slotId, std::u16string &showName) = 0;
H A Dcore_service_proxy.h78 int32_t GetShowName(int32_t slotId, std::u16string &showName) override;
H A Dcore_manager_inner.h265 int32_t GetShowName(int32_t slotId, std::u16string &showName);
/ohos5.0/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp534 int32_t CoreServiceClient::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() function in OHOS::Telephony::CoreServiceClient
541 return proxy->GetShowName(slotId, showName); in GetShowName()
H A Dcore_manager_inner.cpp1968 int32_t CoreManagerInner::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() function in OHOS::Telephony::CoreManagerInner
1974 return simManager_->GetShowName(slotId, showName); in GetShowName()
H A Dcore_service_proxy.cpp1397 int32_t CoreServiceProxy::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() function in OHOS::Telephony::CoreServiceProxy
/ohos5.0/base/telephony/core_service/services/core/include/
H A Dcore_service.h156 int32_t GetShowName(int32_t slotId, std::u16string &showName) override;
/ohos5.0/base/telephony/core_service/services/sim/src/
H A Dsim_manager.cpp540 int32_t SimManager::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() function in OHOS::Telephony::SimManager
546 return multiSimController_->GetShowName(slotId, showName); in GetShowName()
H A Dmulti_sim_controller.cpp1077 int32_t MultiSimController::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() function in OHOS::Telephony::MultiSimController
/ohos5.0/base/telephony/core_service/services/core/src/
H A Dcore_service.cpp772 int32_t CoreService::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() function in OHOS::Telephony::CoreService
787 return simManager_->GetShowName(slotId, showName); in GetShowName()
H A Dcore_service_stub.cpp1348 int32_t result = GetShowName(slotId, showName); in OnGetShowName()
/ohos5.0/base/telephony/core_service/frameworks/js/sim/src/
H A Dnapi_sim.cpp1779 … DelayedRefSingleton<CoreServiceClient>::GetInstance().GetShowName(asyncContext->slotId, showName); in NativeGetShowName()
1797 napi_value GetShowName(napi_env env, napi_callback_info info) in GetShowName() function
3169 DECLARE_NAPI_FUNCTION("getShowName", GetShowName), in InitSimInterface()
/ohos5.0/base/telephony/core_service/services/sim/test/
H A Dtest.cpp928 g_telephonyService->GetShowName(slot, result); in TestGetShowName()