Home
last modified time | relevance | path

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

/ohos5.0/base/telephony/core_service/frameworks/js/network_search/include/
H A Dnapi_radio.h248 struct SendUpdateCellLocationRequest : CallbackContext { struct
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Di_network_search.h102 virtual int32_t SendUpdateCellLocationRequest(int32_t slotId) = 0;
H A Dcore_service_client.h834 int32_t SendUpdateCellLocationRequest(int32_t slotId);
H A Di_core_service.h137 virtual int32_t SendUpdateCellLocationRequest(int32_t slotId) = 0;
H A Dcore_service_proxy.h135 int32_t SendUpdateCellLocationRequest(int32_t slotId) override;
H A Dcore_manager_inner.h220 int32_t SendUpdateCellLocationRequest(int32_t slotId);
/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_core_service_test.cpp105 mCoreService->SendUpdateCellLocationRequest(0);
250 mCoreService->SendUpdateCellLocationRequest(0);
H A Dnetwork_search_test.cpp1935 int32_t result = CoreServiceClient::GetInstance().SendUpdateCellLocationRequest(SLOT_ID);
1953 int32_t result = CoreServiceClient::GetInstance().SendUpdateCellLocationRequest(SLOT_ID1);
1971 int32_t result = CoreServiceClient::GetInstance().SendUpdateCellLocationRequest(SLOT_ID);
H A Dzero_branch_test_core_service.cpp146 DelayedSingleton<CoreService>::GetInstance()->SendUpdateCellLocationRequest(SLOT_ID);
H A Dzero_branch_test.cpp1101 EXPECT_NE(mInner.SendUpdateCellLocationRequest(0), TELEPHONY_ERR_SUCCESS);
2190 …EXPECT_NE(networkSearchManager->SendUpdateCellLocationRequest(INVALID_SLOTID), TELEPHONY_ERR_SUCCE…
2340 EXPECT_EQ(nsm->SendUpdateCellLocationRequest(INVALID_SLOTID), TELEPHONY_ERR_LOCAL_PTR_NULL);
/ohos5.0/base/telephony/core_service/services/network_search/include/
H A Dnetwork_search_handler.h64 int32_t SendUpdateCellLocationRequest();
H A Dnetwork_search_manager.h183 int32_t SendUpdateCellLocationRequest(int32_t slotId) override;
/ohos5.0/base/telephony/core_service/services/network_search/src/
H A Dnetwork_search_handler.cpp479 SendUpdateCellLocationRequest(); in ImsiLoadedReady()
822 SendUpdateCellLocationRequest(); in RadioOnState()
1119 int32_t NetworkSearchHandler::SendUpdateCellLocationRequest() in SendUpdateCellLocationRequest() function in OHOS::Telephony::NetworkSearchHandler
H A Dnetwork_search_state.cpp354 networkSearchManager->SendUpdateCellLocationRequest(slotId_); in NotifyPsRadioTechChange()
H A Dnetwork_search_manager.cpp1044 int32_t NetworkSearchManager::SendUpdateCellLocationRequest(int32_t slotId) in SendUpdateCellLocationRequest() function in OHOS::Telephony::NetworkSearchManager
1051 return inner->networkSearchHandler_->SendUpdateCellLocationRequest(); in SendUpdateCellLocationRequest()
/ohos5.0/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp979 int32_t CoreServiceClient::SendUpdateCellLocationRequest(int32_t slotId) in SendUpdateCellLocationRequest() function in OHOS::Telephony::CoreServiceClient
986 return proxy->SendUpdateCellLocationRequest(slotId); in SendUpdateCellLocationRequest()
H A Dcore_manager_inner.cpp1570 int32_t CoreManagerInner::SendUpdateCellLocationRequest(int32_t slotId) in SendUpdateCellLocationRequest() function in OHOS::Telephony::CoreManagerInner
1576 return networkSearchManager_->SendUpdateCellLocationRequest(slotId); in SendUpdateCellLocationRequest()
H A Dcore_service_proxy.cpp2764 int32_t CoreServiceProxy::SendUpdateCellLocationRequest(int32_t slotId) in SendUpdateCellLocationRequest() function in OHOS::Telephony::CoreServiceProxy
/ohos5.0/base/telephony/core_service/services/core/include/
H A Dcore_service.h225 int32_t SendUpdateCellLocationRequest(int32_t slotId) override;
/ohos5.0/base/telephony/core_service/services/core/src/
H A Dcore_service.cpp1432 int32_t CoreService::SendUpdateCellLocationRequest(int32_t slotId) in SendUpdateCellLocationRequest() function in OHOS::Telephony::CoreService
1446 return networkSearchManager_->SendUpdateCellLocationRequest(slotId); in SendUpdateCellLocationRequest()
H A Dcore_service_stub.cpp1758 int32_t result = SendUpdateCellLocationRequest(slotId); in OnGetCellLocation()
/ohos5.0/base/telephony/core_service/services/network_search/test/
H A Dtest.cpp707 int32_t result = g_telephonyService->SendUpdateCellLocationRequest(InputSlotId()); in TestSendUpdateCellLocationRequest()
/ohos5.0/base/telephony/core_service/frameworks/js/network_search/src/
H A Dnapi_radio.cpp1960 auto asyncContext = static_cast<SendUpdateCellLocationRequest *>(data); in NativeSendUpdateCellLocationRequest()
1967 …DelayedRefSingleton<CoreServiceClient>::GetInstance().SendUpdateCellLocationRequest(asyncContext->… in NativeSendUpdateCellLocationRequest()
1976 auto asyncContext = static_cast<SendUpdateCellLocationRequest *>(data); in SendUpdateCellLocationRequestCallback()
1989 static napi_value SendUpdateCellLocationRequest(napi_env env, napi_callback_info info) in SendUpdateCellLocationRequest() function
3630 DECLARE_NAPI_FUNCTION("sendUpdateCellLocationRequest", SendUpdateCellLocationRequest), in CreateFunctions()