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.cpp271 LteCellInformation::LteCellInformation(const LteCellInformation &lteCell) in LteCellInformation() argument
273 mcc_ = lteCell.mcc_; in LteCellInformation()
274 mnc_ = lteCell.mnc_; in LteCellInformation()
275 earfcn_ = lteCell.earfcn_; in LteCellInformation()
276 cellId_ = lteCell.cellId_; in LteCellInformation()
277 pci_ = lteCell.pci_; in LteCellInformation()
278 tac_ = lteCell.tac_; in LteCellInformation()
279 timeStamp_ = lteCell.timeStamp_; in LteCellInformation()
280 signalLevel_ = lteCell.signalLevel_; in LteCellInformation()
281 signalIntensity_ = lteCell.signalIntensity_; in LteCellInformation()
[all …]
/base/telephony/core_service/interfaces/innerkits/include/
Dcell_information.h98 LteCellInformation(const LteCellInformation &lteCell);
99 LteCellInformation &operator=(const LteCellInformation &lteCell);
/base/telephony/state_registry/test/unittest/state_test/
Dstate_registry_test.cpp539 std::unique_ptr<LteCellInformation> lteCell = std::make_unique<LteCellInformation>(); variable
540 ASSERT_TRUE(lteCell != nullptr);
541 vec.push_back(lteCell.release());
/base/telephony/core_service/services/network_search/src/
Dcell_info.cpp730 LteCellInformation &lteCell = *cell; in AddCellInformation() local
731 lteCell = *(static_cast<LteCellInformation *>(cellInfo.GetRefPtr())); in AddCellInformation()
/base/telephony/core_service/test/unittest/core_service_gtest/
Dnetwork_search_test.cpp229 sptr<LteCellInformation> lteCell = new LteCellInformation; in PrintLteCellInformation() local
230 lteCell->UpdateLocation(0, 0); in PrintLteCellInformation()
231 lteCell->SetLteParam(0, 0, 0); in PrintLteCellInformation()
233 TELEPHONY_LOGI("CellInformation lte is same as lteCell:%{public}d", *lteCell == *lte); in PrintLteCellInformation()