Home
last modified time | relevance | path

Searched refs:GetVoiceMailIdentifier (Results 1 – 21 of 21) sorted by relevance

/ohos5.0/base/telephony/core_service/test/fuzztest/simauthentication_fuzzer/
H A Dsimauthentication_fuzzer.cpp67 void GetVoiceMailIdentifier(const uint8_t *data, size_t size) in GetVoiceMailIdentifier() function
162 GetVoiceMailIdentifier(data, size); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/telephony/core_service/services/sim/include/
H A Dsim_file_manager.h63 std::u16string GetVoiceMailIdentifier();
H A Dsim_manager.h121 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) override;
/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_core_service_test.cpp124 EXPECT_NE(mCoreService->GetVoiceMailIdentifier(0, testU16Str), TELEPHONY_ERR_SUCCESS);
282 EXPECT_NE(mCoreService->GetVoiceMailIdentifier(0, testU16Str), TELEPHONY_ERR_SUCCESS);
H A Dsim_elementary_file_test.cpp438 … CoreServiceClient::GetInstance().GetVoiceMailIdentifier(SimTest::slotId_, voiceMailIdentifier);
457 … CoreServiceClient::GetInstance().GetVoiceMailIdentifier(SimTest::slotId1_, voiceMailIdentifier);
474 … CoreServiceClient::GetInstance().GetVoiceMailIdentifier(SimTest::slotId_, voiceMailIdentifier);
H A Dzero_branch_test.cpp425 EXPECT_EQ(simFileManager.GetVoiceMailIdentifier(), u"");
1071 EXPECT_GT(mInner.GetVoiceMailIdentifier(0, result), TELEPHONY_ERR_SUCCESS);
1528 EXPECT_GT(simManager->GetVoiceMailIdentifier(0, result), TELEPHONY_ERR_SUCCESS);
1529 EXPECT_GT(simManager->GetVoiceMailIdentifier(INVALID_SLOTID, result), TELEPHONY_ERR_SUCCESS);
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Di_sim_manager.h106 virtual int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) = 0;
H A Dcore_service_client.h603 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier);
H A Di_core_service.h112 virtual int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) = 0;
H A Dcore_service_proxy.h121 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) override;
H A Dcore_manager_inner.h284 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier);
/ohos5.0/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp721 int32_t CoreServiceClient::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifi… in GetVoiceMailIdentifier() function in OHOS::Telephony::CoreServiceClient
728 return proxy->GetVoiceMailIdentifier(slotId, voiceMailIdentifier); in GetVoiceMailIdentifier()
H A Dcore_manager_inner.cpp2152 int32_t CoreManagerInner::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifie… in GetVoiceMailIdentifier() function in OHOS::Telephony::CoreManagerInner
2158 return simManager_->GetVoiceMailIdentifier(slotId, voiceMailIdentifier); in GetVoiceMailIdentifier()
H A Dcore_service_proxy.cpp2074 int32_t CoreServiceProxy::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifie… in GetVoiceMailIdentifier() function in OHOS::Telephony::CoreServiceProxy
/ohos5.0/base/telephony/core_service/services/core/include/
H A Dcore_service.h180 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) override;
/ohos5.0/base/telephony/core_service/services/sim/src/
H A Dsim_manager.cpp885 int32_t SimManager::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) in GetVoiceMailIdentifier() function in OHOS::Telephony::SimManager
895 voiceMailIdentifier = simFileManager_[slotId]->GetVoiceMailIdentifier(); in GetVoiceMailIdentifier()
H A Dsim_file_manager.cpp373 std::u16string SimFileManager::GetVoiceMailIdentifier() in GetVoiceMailIdentifier() function in OHOS::Telephony::SimFileManager
/ohos5.0/base/telephony/core_service/services/core/src/
H A Dcore_service.cpp1113 int32_t CoreService::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) in GetVoiceMailIdentifier() function in OHOS::Telephony::CoreService
1128 return simManager_->GetVoiceMailIdentifier(slotId, voiceMailIdentifier); in GetVoiceMailIdentifier()
H A Dcore_service_stub.cpp1434 int32_t result = GetVoiceMailIdentifier(slotId, voiceMailIdentifier); in OnGetVoiceMailInfor()
/ohos5.0/base/telephony/core_service/frameworks/js/sim/src/
H A Dnapi_sim.cpp1056 … int32_t errorCode = DelayedRefSingleton<CoreServiceClient>::GetInstance().GetVoiceMailIdentifier( in NativeGetVoiceMailIdentifier()
1076 napi_value GetVoiceMailIdentifier(napi_env env, napi_callback_info info) in GetVoiceMailIdentifier() function
3136 DECLARE_NAPI_FUNCTION("getVoiceMailIdentifier", GetVoiceMailIdentifier), in InitSimInterfaceAboutVoice()
/ohos5.0/base/telephony/core_service/services/sim/test/
H A Dtest.cpp581 g_telephonyService->GetVoiceMailIdentifier(testSlot, result); in TestGetVoiceMailIdentifier()