Searched refs:cellList (Results 1 – 5 of 5) sorted by relevance
/base/telephony/ril_adapter/services/hril/src/ |
D | hril_network.cpp | 334 HDI::Ril::V1_0::CellListCurrentInfo cellList; in GetCurrentCellInfoResponse() local 341 cellList.itemNum = 0; in GetCurrentCellInfoResponse() 342 cellList.cellCurrentInfo.clear(); in GetCurrentCellInfoResponse() 343 if (BuildCurrentCellList(cellList, response, responseLen) != 0) { in GetCurrentCellInfoResponse() 348 …return Response(responseInfo, &HDI::Ril::V1_0::IRilCallback::GetCurrentCellInfoResponse, cellList); in GetCurrentCellInfoResponse() 536 HDI::Ril::V1_0::CellListCurrentInfo cellList; in NetworkCurrentCellUpdated() local 537 cellList.itemNum = 0; in NetworkCurrentCellUpdated() 538 cellList.cellCurrentInfo.clear(); in NetworkCurrentCellUpdated() 539 if (BuildCurrentCellList(cellList, response, responseLen) != 0) { in NetworkCurrentCellUpdated() 543 … return Notify(indType, error, &HDI::Ril::V1_0::IRilCallback::NetworkCurrentCellUpdated, cellList); in NetworkCurrentCellUpdated()
|
/base/telephony/core_service/test/unittest/core_service_gtest/ |
D | network_search_test.cpp | 86 void NetworkSearchTest::PrintCellInformation(std::vector<sptr<CellInformation>> cellList) in PrintCellInformation() argument 88 for (const auto &cell : cellList) { in PrintCellInformation() 773 std::vector<sptr<CellInformation>> cellList; variable 774 int32_t result = CoreServiceClient::GetInstance().GetCellInfoList(SLOT_ID, cellList); 776 PrintCellInformation(cellList); 777 ASSERT_TRUE(!cellList.empty()); 793 std::vector<sptr<CellInformation>> cellList; variable 794 int32_t result = CoreServiceClient::GetInstance().GetCellInfoList(SLOT_ID1, cellList); 796 PrintCellInformation(cellList); 797 ASSERT_TRUE(!cellList.empty()); [all …]
|
D | network_search_test.h | 196 void PrintCellInformation(std::vector<sptr<CellInformation>> cellList);
|
/base/telephony/core_service/services/network_search/test/ |
D | test.cpp | 574 std::vector<sptr<CellInformation>> cellList; in TestGetCellInfoList() local 575 if (g_telephonyService->GetCellInfoList(InputSlotId(), cellList) != TELEPHONY_ERR_SUCCESS) { in TestGetCellInfoList() 580 for (const auto &v : cellList) { in TestGetCellInfoList()
|
/base/telephony/ril_adapter/services/vendor/src/ |
D | at_network.c | 1410 CurrentCellInfoList cellList = {0, NULL}; in ProcessCurrentCellList() local 1418 if (ParseGetCurrentCellInfoResponseLine(pStr, &cciv[cellList.itemNum]) != 0) { in ProcessCurrentCellList() 1421 cellList.itemNum++; in ProcessCurrentCellList() 1423 cellList.currentCellInfo = cciv; in ProcessCurrentCellList() 1427 …OnNetworkReport(GetSlotId(NULL), reportInfo, (const uint8_t *)&cellList, sizeof(CurrentCellInfoLis… in ProcessCurrentCellList() 1428 if (cellList.currentCellInfo != NULL) { in ProcessCurrentCellList() 1429 free(cellList.currentCellInfo); in ProcessCurrentCellList()
|