Home
last modified time | relevance | path

Searched refs:lteCell (Results 1 – 5 of 5) sorted by relevance

/base/telephony/core_service/frameworks/native/src/
Dcell_information.cpp305 LteCellInformation::LteCellInformation(const LteCellInformation &lteCell) in LteCellInformation() argument
307 mcc_ = lteCell.mcc_; in LteCellInformation()
308 mnc_ = lteCell.mnc_; in LteCellInformation()
309 earfcn_ = lteCell.earfcn_; in LteCellInformation()
310 cellId_ = lteCell.cellId_; in LteCellInformation()
311 pci_ = lteCell.pci_; in LteCellInformation()
312 tac_ = lteCell.tac_; in LteCellInformation()
313 timeStamp_ = lteCell.timeStamp_; in LteCellInformation()
314 signalLevel_ = lteCell.signalLevel_; in LteCellInformation()
315 signalIntensity_ = lteCell.signalIntensity_; in LteCellInformation()
[all …]
/base/telephony/core_service/interfaces/innerkits/include/
Dcell_information.h150 LteCellInformation(const LteCellInformation &lteCell);
151 LteCellInformation &operator=(const LteCellInformation &lteCell);
/base/telephony/state_registry/test/unittest/state_test/
Dstate_registry_test.cpp651 std::unique_ptr<LteCellInformation> lteCell = std::make_unique<LteCellInformation>(); variable
652 ASSERT_TRUE(lteCell != nullptr);
653 vec.push_back(lteCell.release());
/base/telephony/core_service/services/network_search/src/
Dcell_info.cpp755 LteCellInformation &lteCell = *cell; in AddCellInformation() local
756 lteCell = *(static_cast<LteCellInformation *>(cellInfo.GetRefPtr())); in AddCellInformation()
/base/telephony/core_service/test/unittest/core_service_gtest/
Dnetwork_search_test.cpp230 sptr<LteCellInformation> lteCell = new LteCellInformation; in PrintLteCellInformation() local
231 lteCell->UpdateLocation(0, 0); in PrintLteCellInformation()
232 lteCell->SetLteParam(0, 0, 0); in PrintLteCellInformation()
234 TELEPHONY_LOGI("CellInformation lte is same as lteCell:%{public}d", *lteCell == *lte); in PrintLteCellInformation()