/base/telephony/core_service/test/unittest/core_service_gtest/ |
H A D | sim_elementary_file_test.cpp | 437 std::u16string voiceMailIdentifier; in HWTEST_F() local 438 CoreServiceClient::GetInstance().GetVoiceMailIdentifier(SimTest::slotId_, voiceMailIdentifier); in HWTEST_F() 439 std::string result = Str16ToStr8(voiceMailIdentifier); in HWTEST_F() 456 std::u16string voiceMailIdentifier; in HWTEST_F() local 457 CoreServiceClient::GetInstance().GetVoiceMailIdentifier(SimTest::slotId1_, voiceMailIdentifier); in HWTEST_F() 458 std::string result = Str16ToStr8(voiceMailIdentifier); in HWTEST_F() 473 std::u16string voiceMailIdentifier; in HWTEST_F() local 474 CoreServiceClient::GetInstance().GetVoiceMailIdentifier(SimTest::slotId_, voiceMailIdentifier); in HWTEST_F() 475 std::string result = Str16ToStr8(voiceMailIdentifier); in HWTEST_F()
|
H A D | core_service_test.cpp | 533 std::u16string voiceMailIdentifier = u""; in HWTEST_F() local 534 auto result = DelayedSingleton<CoreService>::GetInstance()->GetVoiceMailIdentifier(0, voiceMailIdentifier); in HWTEST_F()
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | core_service_client.h | 600 * @param voiceMailIdentifier[out], voiceMail identifier of the SIM card 603 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier);
|
H A D | i_sim_manager.h | 118 virtual int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) = 0;
|
H A D | core_service_proxy.h | 121 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) override;
|
H A D | i_core_service.h | 123 virtual int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) = 0;
|
H A D | core_manager_inner.h | 285 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier);
|
/base/telephony/cellular_data/test/mock/ |
H A D | mock_core_service.h | 122 MOCK_METHOD(int32_t, GetVoiceMailIdentifier, (int32_t slotId, std::u16string &voiceMailIdentifier), (override));
|
/base/telephony/core_service/frameworks/native/src/ |
H A D | core_service_client.cpp | 722 int32_t CoreServiceClient::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) in GetVoiceMailIdentifier() argument 729 return proxy->GetVoiceMailIdentifier(slotId, voiceMailIdentifier); in GetVoiceMailIdentifier()
|
H A D | core_manager_inner.cpp | 2152 int32_t CoreManagerInner::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) in GetVoiceMailIdentifier() argument 2158 return simManager_->GetVoiceMailIdentifier(slotId, voiceMailIdentifier); in GetVoiceMailIdentifier()
|
H A D | core_service_proxy.cpp | 2077 int32_t CoreServiceProxy::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) in GetVoiceMailIdentifier() argument 2102 voiceMailIdentifier = reply.ReadString16(); in GetVoiceMailIdentifier()
|
/base/telephony/core_service/services/sim/include/ |
H A D | sim_manager.h | 122 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) override;
|
/base/telephony/core_service/services/core/include/ |
H A D | core_service.h | 180 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) override;
|
/base/telephony/core_service/test/unittest/esim_gtest/mock/include/ |
H A D | esim_core_service_stub_test.h | 368 int32_t GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) override
|
/base/telephony/core_service/services/core/src/ |
H A D | core_service.cpp | 1112 int32_t CoreService::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier) in GetVoiceMailIdentifier() argument 1127 return simManager_->GetVoiceMailIdentifier(slotId, voiceMailIdentifier); in GetVoiceMailIdentifier()
|
H A D | core_service_stub.cpp | 1495 std::u16string voiceMailIdentifier; in OnGetVoiceMailInfor() local 1496 int32_t result = GetVoiceMailIdentifier(slotId, voiceMailIdentifier); in OnGetVoiceMailInfor() 1499 ret = (ret && reply.WriteString16(voiceMailIdentifier)); in OnGetVoiceMailInfor()
|
/base/telephony/core_service/services/sim/src/ |
H A D | sim_manager.cpp | 896 int32_t SimManager::GetVoiceMailIdentifier(int32_t slotId, std::u16string &voiceMailIdentifier)
in GetVoiceMailIdentifier() argument 906 voiceMailIdentifier = simFileManager_[slotId]->GetVoiceMailIdentifier();
in GetVoiceMailIdentifier()
|
/base/telephony/core_service/frameworks/js/sim/src/ |
H A D | napi_sim.cpp | 1057 std::u16string voiceMailIdentifier; in NativeGetVoiceMailIdentifier() local 1059 asyncContext->slotId, voiceMailIdentifier); in NativeGetVoiceMailIdentifier() 1062 asyncContext->callbackVal = NapiUtil::ToUtf8(voiceMailIdentifier); in NativeGetVoiceMailIdentifier()
|