/base/telephony/core_service/test/unittest/esim_gtest/ |
H A D | esim_core_service_test.cpp | 339 EXPECT_NE(mCoreService->RemoveNotificationFromList( in HWTEST_F() 343 EXPECT_EQ(mCoreService->RemoveNotificationFromList( in HWTEST_F()
|
H A D | esim_manager_test.cpp | 553 HWTEST_F(EsimManagerTest, RemoveNotificationFromList, Function | MediumTest | Level1) in HWTEST_F() 561 int32_t ret = simManager->RemoveNotificationFromList(slotId, portIndex, seqNumber, enumResult); in HWTEST_F() 568 ret = simManager->RemoveNotificationFromList(slotId, portIndex, seqNumber, enumResult); in HWTEST_F() 578 ret = simManager->RemoveNotificationFromList(slotId, portIndex, seqNumber, enumResult); in HWTEST_F()
|
H A D | esim_core_service_client_branch_test.cpp | 272 int32_t result = CoreServiceClient::GetInstance().RemoveNotificationFromList(slotId, portIndex, in HWTEST_F()
|
H A D | esim_core_service_client_test.cpp | 239 int32_t result = CoreServiceClient::GetInstance().RemoveNotificationFromList( in HWTEST_F()
|
H A D | esim_file_manager_test.cpp | 425 ResultState res = simFileManager.RemoveNotificationFromList(portIndex, seqNumber); in HWTEST_F() 428 res = simFileManager.RemoveNotificationFromList(portIndex, seqNumber); in HWTEST_F()
|
H A D | esim_core_service_proxy_test.cpp | 755 EXPECT_EQ(proxy.RemoveNotificationFromList(SLOT_ID, portIndex, seqNumber, enumResult), in HWTEST_F() 767 EXPECT_EQ(proxy.RemoveNotificationFromList(SLOT_ID, portIndex, seqNumber, enumResult), in HWTEST_F() 779 EXPECT_EQ(proxy.RemoveNotificationFromList(SLOT_ID, portIndex, seqNumber, enumResult), 0); in HWTEST_F()
|
H A D | esim_test.cpp | 1436 EXPECT_EQ(removeNotifResult, esimFile->RemoveNotificationFromList(portIndex, seqNumber));
in HWTEST_F() 1442 EXPECT_EQ(removeNotifResult, esimFile->RemoveNotificationFromList(portIndex, seqNumber));
in HWTEST_F()
|
/base/telephony/core_service/services/sim/include/ |
H A D | sim_file_manager.h | 115 ResultState RemoveNotificationFromList(int32_t portIndex, int32_t seqNumber);
|
H A D | sim_manager.h | 188 int32_t RemoveNotificationFromList(
|
H A D | esim_file.h | 103 ResultState RemoveNotificationFromList(int32_t portIndex, int32_t seqNumber);
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | core_service_client.h | 1140 int32_t RemoveNotificationFromList(int32_t slotId, int32_t portIndex, int32_t seqNumber, ResultState &enumResult);
|
H A D | i_sim_manager.h | 187 virtual int32_t RemoveNotificationFromList(
|
H A D | core_service_proxy.h | 181 int32_t RemoveNotificationFromList(
|
H A D | i_core_service.h | 195 virtual int32_t RemoveNotificationFromList(
|
/base/telephony/core_service/frameworks/native/src/ |
H A D | core_service_client.cpp | 1289 int32_t CoreServiceClient::RemoveNotificationFromList( in RemoveNotificationFromList() function in OHOS::Telephony::CoreServiceClient 1294 TELEPHONY_LOGE("RemoveNotificationFromList proxy is null!"); in RemoveNotificationFromList() 1297 return proxy->RemoveNotificationFromList(slotId, portIndex, seqNumber, enumResult); in RemoveNotificationFromList()
|
H A D | core_service_proxy.cpp | 4038 int32_t CoreServiceProxy::RemoveNotificationFromList( in RemoveNotificationFromList() function in OHOS::Telephony::CoreServiceProxy 4045 TELEPHONY_LOGE("RemoveNotificationFromList WriteInterfaceToken is false"); in RemoveNotificationFromList() 4049 TELEPHONY_LOGE("RemoveNotificationFromList WriteInt32 slotId is false"); in RemoveNotificationFromList() 4053 TELEPHONY_LOGE("RemoveNotificationFromList WriteInt32 portIndex is false"); in RemoveNotificationFromList() 4057 TELEPHONY_LOGE("RemoveNotificationFromList WriteInt32 seqNumber is false"); in RemoveNotificationFromList() 4062 TELEPHONY_LOGE("RemoveNotificationFromList Remote is null"); in RemoveNotificationFromList() 4069 TELEPHONY_LOGE("RemoveNotificationFromList sendRequest failed, errcode is %{public}d", requestResult); in RemoveNotificationFromList()
|
/base/telephony/core_service/services/sim/src/ |
H A D | sim_file_manager.cpp | 1186 ResultState SimFileManager::RemoveNotificationFromList(int32_t portIndex, int32_t seqNumber) in RemoveNotificationFromList() function in OHOS::Telephony::SimFileManager 1189 TELEPHONY_LOGE("RemoveNotificationFromList eSimFile_ is nullptr"); in RemoveNotificationFromList() 1192 return eSimFile_->RemoveNotificationFromList(portIndex, seqNumber); in RemoveNotificationFromList()
|
H A D | sim_manager.cpp | 1470 int32_t SimManager::RemoveNotificationFromList(
in RemoveNotificationFromList() function in OHOS::Telephony::SimManager 1474 TELEPHONY_LOGE("RemoveNotificationFromList simFileManager is null!");
in RemoveNotificationFromList() 1477 enumResult = simFileManager_[slotId]->RemoveNotificationFromList(portIndex, seqNumber);
in RemoveNotificationFromList()
|
H A D | esim_file.cpp | 2193 ResultState EsimFile::RemoveNotificationFromList(int32_t portIndex, int32_t seqNumber)
in RemoveNotificationFromList() function in OHOS::Telephony::EsimFile
|
/base/telephony/core_service/services/core/include/ |
H A D | core_service.h | 315 int32_t RemoveNotificationFromList(
|
/base/telephony/core_service/test/unittest/esim_gtest/mock/include/ |
H A D | esim_core_service_stub_test.h | 665 int32_t RemoveNotificationFromList(
|
/base/telephony/core_service/services/core/src/ |
H A D | core_service.cpp | 1974 int32_t CoreService::RemoveNotificationFromList( in RemoveNotificationFromList() function in OHOS::Telephony::CoreService 1986 TELEPHONY_LOGE("RemoveNotificationFromList simManager_ is null"); in RemoveNotificationFromList() 1989 return simManager_->RemoveNotificationFromList(slotId, portIndex, seqNumber, enumResult); in RemoveNotificationFromList()
|
H A D | core_service_stub.cpp | 2438 int32_t result = RemoveNotificationFromList(slotId, portIndex, seqNumber, enumResult); in OnRemoveNotificationFromList()
|