├── .gitignore ├── ABOX └── OC │ └── NVSS │ ├── Chipset │ └── S5123 │ │ └── Src │ │ ├── VHM_Crash.c │ │ ├── VHM_Main.c │ │ ├── VHM_SRC.c │ │ ├── VHM_Task.c │ │ └── VHM_VAR_Api.c │ ├── DM │ └── S5123 │ │ └── Src │ │ ├── VHM_CrossDM.c │ │ ├── VHM_DmVocDump.c │ │ └── VHM_PRINTF.c │ ├── main │ └── Src │ │ ├── VHM_Control.c │ │ ├── VHM_FW_Func.c │ │ ├── VHM_Ipc.c │ │ └── VHM_Irq.c │ └── sup │ └── Src │ ├── ctmbaudt.c │ ├── ctmbaugn.c │ ├── ctmdl.c │ ├── ctmrx.c │ ├── ctmsync.c │ ├── ctmtx.c │ ├── ctmul.c │ └── l1ctm.c ├── ABOX_IPC └── OC │ └── A2C │ └── Chipset │ └── S5123 │ └── Src │ └── VSS_A2CHandler.c ├── ADVCP ├── CLM │ └── Code │ │ └── Src │ │ ├── clm_cs.c │ │ ├── clm_main.c │ │ ├── clm_mobility_info.c │ │ ├── clm_tt_api.c │ │ ├── clm_tt_coarse_pos.c │ │ ├── clm_tt_comm.c │ │ ├── clm_tt_db_manage.c │ │ ├── clm_tt_lib.c │ │ ├── clm_tt_proc.c │ │ └── clm_tt_service_api.c ├── PROXIMITY │ └── Code │ │ └── Src │ │ └── proximity_task.c └── SCLAP │ ├── CMMO │ └── src │ │ └── sclap_cmmo.c │ ├── CPCOP │ └── src │ │ ├── sclap_cpcop.c │ │ └── sclap_cpcop_context_mgr.c │ └── sensorhub │ └── src │ ├── drv_sensorhub.c │ └── drv_sensorhub_uart.c ├── CALPSS ├── CalpssExport │ ├── LteRrc_CommUtilDef_exportH.h │ ├── LteRrc_SuppSvcLogMeasScenarioDef_exportH.h │ └── LteRrc_SuppSvcLppScenarioDef_exportH.h ├── LteCommon │ └── Code │ │ └── src │ │ ├── lte_Serialise.c │ │ ├── lte_assert.c │ │ └── lte_dm.c ├── LteL2 │ ├── L1RX │ │ └── Code │ │ │ └── src │ │ │ ├── L1RXMAC_CiProcessor.c │ │ │ ├── L1RXMAC_Demux.c │ │ │ ├── L1RXMAC_MBMS.c │ │ │ ├── L1RXRLC_MBMS.c │ │ │ ├── L1RXRLC_demux.c │ │ │ ├── L1RX_CfgController.c │ │ │ └── L1RX_Task.c │ ├── L1TX │ │ └── Code │ │ │ └── src │ │ │ ├── L1TXMAC_CiProcessor.c │ │ │ ├── L1TXMAC_MUX.c │ │ │ ├── L1TXMAC_RAController.c │ │ │ ├── L1TXMAC_scheduler.c │ │ │ ├── L1TXPHY_TxChController.c │ │ │ ├── L1TXRLC_DataGenerator.c │ │ │ ├── L1TXRLC_TxController.c │ │ │ ├── L1TX_CfgController.c │ │ │ └── L1TX_Task.c │ ├── L2Common │ │ └── Code │ │ │ └── src │ │ │ ├── L2_Common.c │ │ │ ├── UBuffer.c │ │ │ └── l2_shared_ringbuffer.c │ ├── L2RX │ │ └── Code │ │ │ └── src │ │ │ ├── L2RXPDCP_Controller.c │ │ │ ├── L2RXPDCP_Processor.c │ │ │ ├── L2RXRLC_Controller.c │ │ │ ├── L2RXRLC_Processor.c │ │ │ └── L2RX_Task.c │ └── L2TX │ │ └── Code │ │ └── src │ │ ├── L2TXPDCP_Processor.c │ │ ├── L2TXPdcp_Controller.c │ │ ├── L2TX_Scheduler.c │ │ └── L2TX_Task.c └── LteL3 │ ├── LPP │ ├── Code │ │ └── Src │ │ │ ├── LPP_AssistanceData.c │ │ │ ├── LPP_Capability.c │ │ │ ├── LPP_CommonDB.c │ │ │ ├── LPP_CommonUtil.c │ │ │ ├── LPP_EmmConManagement.c │ │ │ ├── LPP_LcsManagement.c │ │ │ ├── LPP_Measurement.c │ │ │ ├── LPP_MsgHandler.c │ │ │ └── LPP_TimerManagement.c │ └── asn │ │ └── arm │ │ └── Code │ │ └── Rel12 │ │ └── Src │ │ └── LPP_Codec.c │ ├── LteRrc │ ├── Code │ │ ├── inc │ │ │ └── LteRrc_CommDb.h │ │ └── src │ │ │ ├── LteRrc_CommDb.c │ │ │ ├── LteRrc_CommMsgSend.c │ │ │ ├── LteRrc_CommMsgTable.c │ │ │ ├── LteRrc_CommTimer.c │ │ │ ├── LteRrc_CommUtil.c │ │ │ ├── LteRrc_DbForConn.c │ │ │ ├── LteRrc_DbForSi.c │ │ │ ├── LteRrc_MgrAcc.c │ │ │ ├── LteRrc_MgrConn.c │ │ │ ├── LteRrc_MgrIdle.c │ │ │ ├── LteRrc_MgrInit.c │ │ │ ├── LteRrc_MgrSusp.c │ │ │ ├── LteRrc_ProcConfig.c │ │ │ ├── LteRrc_ProcDsds.c │ │ │ ├── LteRrc_ProcMbsfn.c │ │ │ ├── LteRrc_ProcMeas.c │ │ │ ├── LteRrc_ProcPlmn.c │ │ │ ├── LteRrc_ProcSec.c │ │ │ ├── LteRrc_ProcSysInfo.c │ │ │ ├── LteRrc_SuppSvcFrameworkCore.c │ │ │ ├── LteRrc_SuppSvcLogMeasProc.c │ │ │ ├── LteRrc_SuppSvcLppProc.c │ │ │ └── LteRrc_Task.c │ └── asn │ │ └── arm │ │ └── Code │ │ └── NrRel1530 │ │ └── src │ │ └── LteRrcNr_Codec.c │ ├── LteRrm │ └── Code │ │ └── src │ │ ├── LteRrm_ConnMeasure.c │ │ ├── LteRrm_ConnMobility.c │ │ ├── LteRrm_IdleMeasure.c │ │ ├── LteRrm_IdleMobility.c │ │ ├── LteRrm_InfoRx.c │ │ ├── LteRrm_MbsfnController.c │ │ ├── LteRrm_MsgHandler.c │ │ ├── LteRrm_SetManager.c │ │ ├── LteRrm_StateController.c │ │ ├── LteRrm_SyncController.c │ │ ├── LteRrm_Task.c │ │ └── LteRrm_TimerController.c │ ├── LteSae │ ├── SAECOMM │ │ └── Code │ │ │ ├── inc │ │ │ └── SAECOMM_FlashItems.h │ │ │ └── src │ │ │ ├── SAECOMM_DbManagement.c │ │ │ ├── SAECOMM_DmManagement.c │ │ │ ├── SAECOMM_MsgManagement.c │ │ │ └── SAECOMM_Utility.c │ ├── SAEMAIN │ │ └── Code │ │ │ └── src │ │ │ └── SAEL3_Task.c │ ├── SAEMM │ │ └── Code │ │ │ ├── inc │ │ │ ├── SAEMM_ContextDB.h │ │ │ ├── SAEMM_PreDefHandlerTable.h │ │ │ ├── SAEMM_ProcDB.h │ │ │ └── SAEMM_ProcedureManagement.h │ │ │ └── src │ │ │ ├── SAEMM_AsLinkControl.c │ │ │ ├── SAEMM_ClientServiceProvision.c │ │ │ ├── SAEMM_CommonProcedure.c │ │ │ ├── SAEMM_ContextManagement.c │ │ │ ├── SAEMM_MMCIFManagement.c │ │ │ ├── SAEMM_Main.c │ │ │ ├── SAEMM_ProcedureManagement.c │ │ │ ├── SAEMM_RadioMessageCodec.c │ │ │ ├── SAEMM_RegistrationProcedure.c │ │ │ ├── SAEMM_SecurityProcedure.c │ │ │ └── SAEMM_TimerManagement.c │ ├── SAEQM │ │ └── Code │ │ │ └── src │ │ │ ├── SAEQM_CheckRadioMsg.c │ │ │ ├── SAEQM_ClientServiceProvision.c │ │ │ ├── SAEQM_ExtMsgHandler.c │ │ │ ├── SAEQM_InstanceManagement.c │ │ │ ├── SAEQM_IntMsgMainHandler.c │ │ │ ├── SAEQM_Main.c │ │ │ ├── SAEQM_RadioMessageCodec.c │ │ │ ├── SAEQM_SendMsgDescription.c │ │ │ ├── SAEQM_SrvcVzwHandler.c │ │ │ └── SAEQM_TimerManagement.c │ └── SAERC │ │ └── Code │ │ └── src │ │ ├── SAERC_Main.c │ │ ├── SAERC_PLMNControl.c │ │ └── SAERC_RatControl.c │ └── PdnMgr │ ├── PDNMGR │ └── Code │ │ ├── inc │ │ ├── PDNMGR_FlashItems.h │ │ ├── PDNMGR_PdnContextDb.h │ │ └── PDNMGR_PdnStaticDb.h │ │ └── src │ │ ├── PDNMGR_DbManagement.c │ │ ├── PDNMGR_MsgManagement.c │ │ ├── PDNMGR_Task.c │ │ ├── PDNMGR_TimerManagement.c │ │ └── PDNMGR_Utility.c │ └── PMPM │ └── Code │ └── src │ ├── PMPM_ApnManager.c │ ├── PMPM_InstanceManagement.c │ ├── PMPM_Main.c │ ├── PMPM_RcvMsgHandler.c │ └── PMPM_SendMsgDescription.c ├── HEDGE ├── GSM │ ├── GCommon │ │ └── Code │ │ │ └── Src │ │ │ ├── rr_SiDatabase.c │ │ │ └── rr_UtilDb.c │ ├── GL1 │ │ ├── GHAL │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── ghal_AgcCfg.c │ │ │ │ ├── ghal_AntSwitching.c │ │ │ │ ├── ghal_BgAmr.c │ │ │ │ ├── ghal_BndCfg.c │ │ │ │ ├── ghal_Diversity.c │ │ │ │ ├── ghal_FrAfc.c │ │ │ │ ├── ghal_FrAgc.c │ │ │ │ ├── ghal_FrAmr.c │ │ │ │ ├── ghal_FrLoop.c │ │ │ │ ├── ghal_FrSeq.c │ │ │ │ ├── ghal_FrSortbc.c │ │ │ │ ├── ghal_FrTds.c │ │ │ │ ├── ghal_Interrupts.c │ │ │ │ ├── ghal_IratLteTsk.c │ │ │ │ ├── ghal_Sar.c │ │ │ │ └── ghal_Stubs.c │ │ └── GPHY │ │ │ ├── L1C │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── l1c_LmmMessageHandlers.c │ │ │ │ ├── l1c_LmmMisAccess.c │ │ │ │ ├── l1c_QualityMeasSys.c │ │ │ │ ├── l1c_UmmMessageHandlers.c │ │ │ │ ├── l1c_UmmMisAccess.c │ │ │ │ ├── l1c_gprs_eval.c │ │ │ │ ├── l1c_gprs_idle.c │ │ │ │ ├── l1c_gprs_ra.c │ │ │ │ ├── l1c_gprs_rel.c │ │ │ │ ├── l1c_gprs_sdl.c │ │ │ │ ├── l1c_gprs_tbf.c │ │ │ │ ├── l1c_msgpro.c │ │ │ │ ├── l1c_op1.c │ │ │ │ ├── l1c_op2.c │ │ │ │ ├── l1c_op3.c │ │ │ │ ├── l1c_op4.c │ │ │ │ ├── l1c_op5.c │ │ │ │ ├── l1c_op6.c │ │ │ │ ├── l1c_op7.c │ │ │ │ ├── l1c_op8.c │ │ │ │ └── l1c_wrapfunc.c │ │ │ ├── L1F │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── l1f_core.c │ │ │ │ ├── l1f_event.c │ │ │ │ ├── l1f_fn.c │ │ │ │ └── l1f_prcfr.c │ │ │ ├── L1OS │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ └── l1os_debug.c │ │ │ ├── L1PS │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── l1ps_cal32k.c │ │ │ │ ├── l1ps_l1_activity.c │ │ │ │ ├── l1ps_main.c │ │ │ │ ├── l1ps_notify.c │ │ │ │ ├── l1ps_pse_client.c │ │ │ │ └── l1ps_timebase.c │ │ │ ├── L1RT │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── l1rt_common.c │ │ │ │ ├── l1rt_fch.c │ │ │ │ ├── l1rt_hisr.c │ │ │ │ ├── l1rt_rssi_mess.c │ │ │ │ ├── l1rt_rssi_sched.c │ │ │ │ ├── l1rt_rssi_serv.c │ │ │ │ ├── l1rt_sch_sched.c │ │ │ │ ├── l1rt_sch_serv.c │ │ │ │ ├── l1rt_sid.c │ │ │ │ └── l1rt_time.c │ │ │ ├── L1ST │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── l1st_AmrConfigManager.c │ │ │ │ ├── l1st_DsL1Rc.c │ │ │ │ ├── l1st_QualityMeasSys.c │ │ │ │ ├── l1st_ab.c │ │ │ │ ├── l1st_cch.c │ │ │ │ ├── l1st_comfct.c │ │ │ │ ├── l1st_gprsCipher.c │ │ │ │ ├── l1st_hisr.c │ │ │ │ ├── l1st_pdch.c │ │ │ │ ├── l1st_pdchrx.c │ │ │ │ ├── l1st_pdchtx.c │ │ │ │ ├── l1st_ptcch.c │ │ │ │ ├── l1st_pwr.c │ │ │ │ ├── l1st_sil_if_convert.c │ │ │ │ ├── l1st_statechange.c │ │ │ │ ├── l1st_sync_fb.c │ │ │ │ ├── l1st_sync_sb.c │ │ │ │ ├── l1st_tch.c │ │ │ │ ├── l1st_tch_process.c │ │ │ │ └── l1st_tx.c │ │ │ ├── L1X │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── l1x_InterferenceMeas.c │ │ │ │ ├── l1x_LmsMeasurement.c │ │ │ │ ├── l1x_QualityReportManager.c │ │ │ │ ├── l1x_UmmMeasurement.c │ │ │ │ ├── l1x_UmtsCallback.c │ │ │ │ ├── l1x_gprs_job.c │ │ │ │ ├── l1x_gprs_msr.c │ │ │ │ ├── l1x_gprs_rx.c │ │ │ │ ├── l1x_gprs_rx_IRAM.c │ │ │ │ ├── l1x_gprs_srch.c │ │ │ │ ├── l1x_gprs_sync.c │ │ │ │ ├── l1x_gprs_tgl.c │ │ │ │ ├── l1x_gprs_tx.c │ │ │ │ ├── l1x_gprs_tx_IRAM.c │ │ │ │ ├── l1x_gsm_srch.c │ │ │ │ ├── l1x_mma.c │ │ │ │ ├── l1x_nsynch_rep.c │ │ │ │ ├── l1x_sa1.c │ │ │ │ ├── l1x_sa10.c │ │ │ │ ├── l1x_sa2.c │ │ │ │ ├── l1x_sa4.c │ │ │ │ ├── l1x_sa5.c │ │ │ │ ├── l1x_sa6.c │ │ │ │ ├── l1x_sa8.c │ │ │ │ ├── l1x_sa9.c │ │ │ │ ├── l1x_srch_dsptch.c │ │ │ │ ├── l1x_srch_gen.c │ │ │ │ ├── l1x_srch_lib.c │ │ │ │ ├── l1x_srch_tch.c │ │ │ │ ├── l1x_suspres.c │ │ │ │ ├── l1x_to_l1c.c │ │ │ │ ├── l1x_to_l1sm.c │ │ │ │ └── l1x_to_mac.c │ │ │ └── SIL │ │ │ └── Code │ │ │ └── Src │ │ │ ├── sil_ArfcnDataStore.c │ │ │ ├── sil_ArfcnInfo.c │ │ │ ├── sil_Cch.c │ │ │ ├── sil_Common.c │ │ │ ├── sil_DtmRx.c │ │ │ ├── sil_DtmTx.c │ │ │ ├── sil_Hal_convert.c │ │ │ ├── sil_IRATSignalGenerate.c │ │ │ ├── sil_PowerSaving.c │ │ │ ├── sil_Synch.c │ │ │ ├── sil_Tch.c │ │ │ ├── sil_TchRx.c │ │ │ ├── sil_ab.c │ │ │ ├── sil_afc.c │ │ │ ├── sil_amr.c │ │ │ ├── sil_pdch.c │ │ │ ├── sil_sync_fb.c │ │ │ └── sil_sync_sb.c │ ├── GL2 │ │ ├── GLAPD │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── dl_conpg.c │ │ │ │ ├── dl_ctrl.c │ │ │ │ ├── dl_idle.c │ │ │ │ ├── dl_main.c │ │ │ │ ├── dl_mfe.c │ │ │ │ ├── dl_os.c │ │ │ │ ├── dl_relpg.c │ │ │ │ ├── dl_timrc.c │ │ │ │ ├── dl_uti.c │ │ │ │ ├── dlsconpg.c │ │ │ │ ├── dlsidle.c │ │ │ │ ├── dlsmfe.c │ │ │ │ ├── dlsrelpg.c │ │ │ │ ├── dlssusp.c │ │ │ │ └── dlstimrc.c │ │ ├── GMAC │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── mac_access.c │ │ │ │ ├── mac_ccch.c │ │ │ │ ├── mac_ctrl.c │ │ │ │ ├── mac_dtm.c │ │ │ │ ├── mac_ie.c │ │ │ │ ├── mac_l1al.c │ │ │ │ ├── mac_log.c │ │ │ │ ├── mac_main.c │ │ │ │ ├── mac_multi_slot.c │ │ │ │ ├── mac_packnack.c │ │ │ │ ├── mac_pda.c │ │ │ │ ├── mac_poll.c │ │ │ │ ├── mac_process_data.c │ │ │ │ ├── mac_ptsr.c │ │ │ │ ├── mac_pua.c │ │ │ │ ├── mac_rach.c │ │ │ │ ├── mac_sm.c │ │ │ │ ├── mac_tbf.c │ │ │ │ ├── mac_trigger.c │ │ │ │ ├── mac_tx.c │ │ │ │ ├── mac_ul_msg.c │ │ │ │ └── mac_util.c │ │ └── GRLC │ │ │ └── Code │ │ │ └── Src │ │ │ ├── rlc_EgprsUlDatablock.c │ │ │ ├── rlc_control.c │ │ │ ├── rlc_dl_datablock.c │ │ │ ├── rlc_log.c │ │ │ ├── rlc_main.c │ │ │ ├── rlc_pdu.c │ │ │ ├── rlc_puan.c │ │ │ ├── rlc_resource.c │ │ │ ├── rlc_sm.c │ │ │ ├── rlc_tbf.c │ │ │ ├── rlc_test_mode.c │ │ │ ├── rlc_ul_datablock.c │ │ │ └── rlc_util.c │ ├── GL3 │ │ └── GRR │ │ │ └── Code │ │ │ └── Src │ │ │ ├── Rr_EIratMeas.c │ │ │ ├── Rr_IratMeas.c │ │ │ ├── rr_ba.c │ │ │ ├── rr_ccn.c │ │ │ ├── rr_cdc.c │ │ │ ├── rr_csnie.c │ │ │ ├── rr_ctx.c │ │ │ ├── rr_decsysmsgs.c │ │ │ ├── rr_dedi.c │ │ │ ├── rr_dl.c │ │ │ ├── rr_dm.c │ │ │ ├── rr_dtm.c │ │ │ ├── rr_emr.c │ │ │ ├── rr_ext.c │ │ │ ├── rr_hop.c │ │ │ ├── rr_idle.c │ │ │ ├── rr_init.c │ │ │ ├── rr_l1c.c │ │ │ ├── rr_lcsm.c │ │ │ ├── rr_list.c │ │ │ ├── rr_lte.c │ │ │ ├── rr_mac.c │ │ │ ├── rr_main.c │ │ │ ├── rr_meas.c │ │ │ ├── rr_measinfo.c │ │ │ ├── rr_mm.c │ │ │ ├── rr_mmi.c │ │ │ ├── rr_nc.c │ │ │ ├── rr_os.c │ │ │ ├── rr_pcco.c │ │ │ ├── rr_pcd.c │ │ │ ├── rr_plmn.c │ │ │ ├── rr_pmo.c │ │ │ ├── rr_psi3bis.c │ │ │ ├── rr_psi3quater.c │ │ │ ├── rr_psi3ter.c │ │ │ ├── rr_psysin.c │ │ │ ├── rr_rat.c │ │ │ ├── rr_resel.c │ │ │ ├── rr_rlc.c │ │ │ ├── rr_selec.c │ │ │ ├── rr_si2q.c │ │ │ ├── rr_si2ter.c │ │ │ ├── rr_si3478.c │ │ │ ├── rr_si9.c │ │ │ ├── rr_sim.c │ │ │ ├── rr_sms.c │ │ │ ├── rr_srrc_main.c │ │ │ ├── rr_status.c │ │ │ ├── rr_sysin.c │ │ │ ├── rr_tim.c │ │ │ ├── rr_urrc.c │ │ │ ├── rr_ut_d.c │ │ │ ├── rr_ut_g.c │ │ │ └── rr_ut_i.c │ └── Interface │ │ ├── GL1 │ │ └── Src │ │ │ ├── ghal_Audsq.c │ │ │ ├── ghal_BbcH1004.c │ │ │ ├── ghal_BgInit.c │ │ │ ├── ghal_Cfg.c │ │ │ ├── ghal_Cipher.c │ │ │ ├── ghal_FrSort.c │ │ │ ├── ghal_FrTcu.c │ │ │ ├── ghal_HwSorter_Import.c │ │ │ ├── ghal_Hw_Import.c │ │ │ ├── ghal_RegMap.c │ │ │ ├── ghal_Rf_Import.c │ │ │ ├── ghal_SlowCal.c │ │ │ ├── ghal_SqAfc.c │ │ │ ├── ghal_SqAgc.c │ │ │ ├── ghal_SqFb.c │ │ │ ├── ghal_SqLpc.c │ │ │ ├── ghal_SqNb.c │ │ │ ├── ghal_SqRssi.c │ │ │ ├── ghal_SqRx.c │ │ │ ├── ghal_SqRxtc.c │ │ │ ├── ghal_SqSb.c │ │ │ ├── ghal_SqTxdc.c │ │ │ ├── ghal_SqTxra.c │ │ │ ├── ghal_SqTxtc.c │ │ │ ├── gphy_BuildSwitch_Interwork.c │ │ │ ├── gphy_L1rc_Import.c │ │ │ ├── gphy_PALCommon_Import.c │ │ │ ├── gphy_PSS_Import.c │ │ │ ├── gphy_RfCal.c │ │ │ ├── gphy_RfCal_Actfunc.c │ │ │ ├── gphy_RfCal_Wrapfunc.c │ │ │ ├── gphy_UtraTdd_Interwork.c │ │ │ ├── l1ps_UmmClient.c │ │ │ ├── l1st_Umm.c │ │ │ ├── l1x_TDDUmsMeasurement.c │ │ │ ├── l1x_UmsMeasurement.c │ │ │ ├── l1x_srch_if.c │ │ │ ├── sil_Pwr.c │ │ │ ├── sil_QualityMeasSys.c │ │ │ ├── sil_StateChange.c │ │ │ ├── sil_gprsCipher.c │ │ │ ├── sil_irat_fch.c │ │ │ ├── sil_irat_rssi.c │ │ │ ├── sil_irat_sch.c │ │ │ ├── sil_pdchrx.c │ │ │ ├── sil_pdchtx.c │ │ │ └── sil_ptcch.c │ │ └── GL3 │ │ └── Src │ │ ├── rr_import.c │ │ ├── rr_srrc_main_import.c │ │ ├── rr_srrc_receive.c │ │ └── rr_srrc_send.c ├── HCommon │ ├── HFunction │ │ └── Code │ │ │ └── Src │ │ │ └── hfcn_write.c │ ├── UCommon │ │ ├── ASN1 │ │ │ └── Cortex │ │ │ │ └── v1114_c861 │ │ │ │ └── src │ │ │ │ └── Urrc_Codec.c │ │ ├── Code │ │ │ └── Src │ │ │ │ └── Ul1Ul2Gateway.c │ │ └── List │ │ │ └── Code │ │ │ └── Src │ │ │ └── uphy_CList.c │ └── UFramework │ │ └── Code │ │ ├── Inc │ │ └── smc_list.inl │ │ └── Src │ │ ├── smc_core.c │ │ ├── smc_evt.c │ │ ├── smc_osal.c │ │ └── smc_timer.c ├── HedgeExport │ └── UMAC_DB.inl ├── NASL3 │ ├── BC │ │ └── Code │ │ │ └── Src │ │ │ ├── bc_code_cbst.c │ │ │ └── bc_utilities.c │ ├── CC │ │ └── Code │ │ │ └── Src │ │ │ ├── cc_AocManagement.c │ │ │ ├── cc_AutoRetryCall.c │ │ │ ├── cc_BearerManagement.c │ │ │ ├── cc_CallClearManagement.c │ │ │ ├── cc_CallHoldManagement.c │ │ │ ├── cc_CcbsManagement.c │ │ │ ├── cc_CodeId.c │ │ │ ├── cc_CugManagement.c │ │ │ ├── cc_DtmfManagement.c │ │ │ ├── cc_EctManagement.c │ │ │ ├── cc_EmlppManagement.c │ │ │ ├── cc_GapiIntfManagement.c │ │ │ ├── cc_Main.c │ │ │ ├── cc_MmConManagement.c │ │ │ ├── cc_MoCallEstablishment.c │ │ │ ├── cc_MsgDescription.c │ │ │ ├── cc_MtCallEstablishment.c │ │ │ ├── cc_MultiPartyManagement.c │ │ │ ├── cc_PduCodec.c │ │ │ ├── cc_RabmIntfManagement.c │ │ │ ├── cc_StatusManagement.c │ │ │ ├── cc_TimerManagement.c │ │ │ ├── cc_Utilities.c │ │ │ └── cc_VcgIntfManagement.c │ ├── LLC │ │ └── Code │ │ │ └── Src │ │ │ ├── llc_Crc.c │ │ │ ├── llc_Data.c │ │ │ ├── llc_DlDataTxManagement.c │ │ │ ├── llc_FlowControlManagement.c │ │ │ ├── llc_LleEstblRelManagement.c │ │ │ ├── llc_Main.c │ │ │ ├── llc_SendMessage.c │ │ │ ├── llc_SusResManagement.c │ │ │ ├── llc_TimerManagement.c │ │ │ ├── llc_TlliManagement.c │ │ │ ├── llc_UlDataTxManagement.c │ │ │ └── llc_rlc.c │ ├── MM │ │ └── Code │ │ │ └── Src │ │ │ ├── mm_AnrManagement.c │ │ │ ├── mm_Authentication.c │ │ │ ├── mm_CellIndication.c │ │ │ ├── mm_GapiIntfManagement.c │ │ │ ├── mm_GmmAttach.c │ │ │ ├── mm_GmmCellIndication.c │ │ │ ├── mm_GmmCoordination.c │ │ │ ├── mm_GmmDetach.c │ │ │ ├── mm_GmmPduCodec.c │ │ │ ├── mm_GmmRabmIntfManagement.c │ │ │ ├── mm_GmmRlcIntfManagement.c │ │ │ ├── mm_GmmRrConManagement.c │ │ │ ├── mm_GmmServiceReq.c │ │ │ ├── mm_GmmSigConManagement.c │ │ │ ├── mm_GmmSmIntfManagement.c │ │ │ ├── mm_GmmSmsIntfManagement.c │ │ │ ├── mm_GmmSndcpIntfManagement.c │ │ │ ├── mm_GmmSsIntfManagement.c │ │ │ ├── mm_GmmTimerManagement.c │ │ │ ├── mm_Identification.c │ │ │ ├── mm_Information.c │ │ │ ├── mm_LlcManagement.c │ │ │ ├── mm_LocationUpdate.c │ │ │ ├── mm_LteInterRatManagement.c │ │ │ ├── mm_Main.c │ │ │ ├── mm_MmConManagement.c │ │ │ ├── mm_MmcIntfManagement.c │ │ │ ├── mm_PduCodec.c │ │ │ ├── mm_Plmncoordination.c │ │ │ ├── mm_PtmsiReallocation.c │ │ │ ├── mm_RadioAccesTechManagement.c │ │ │ ├── mm_RadioCaps.c │ │ │ ├── mm_RoutingAreaUpdate.c │ │ │ ├── mm_RrConManagement.c │ │ │ ├── mm_SimDataManagement.c │ │ │ ├── mm_SrncIntfManagement.c │ │ │ ├── mm_Status.c │ │ │ ├── mm_TestModeManagement.c │ │ │ ├── mm_TimerManagement.c │ │ │ ├── mm_TmsiReallocation.c │ │ │ └── mm_Utilities.c │ ├── RABM │ │ └── Code │ │ │ └── Src │ │ │ ├── rabm_ActivationManagement.c │ │ │ ├── rabm_Data.c │ │ │ ├── rabm_DataTransferManagement.c │ │ │ ├── rabm_DeactivationManagement.c │ │ │ ├── rabm_Main.c │ │ │ ├── rabm_ModificationManagement.c │ │ │ ├── rabm_SendMessage.c │ │ │ └── rabm_TimerManagement.c │ ├── SM │ │ └── Code │ │ │ └── Src │ │ │ ├── sm_CodeId.c │ │ │ ├── sm_GmmIntfManagement.c │ │ │ ├── sm_Main.c │ │ │ ├── sm_MmcIntfManagement.c │ │ │ ├── sm_PdnMngrUtil.c │ │ │ ├── sm_PdpContextActivation.c │ │ │ ├── sm_PdpContextDeactivation.c │ │ │ ├── sm_PdpContextModification.c │ │ │ ├── sm_PduCodec.c │ │ │ ├── sm_PmInterface.c │ │ │ ├── sm_RabmIntfManagement.c │ │ │ ├── sm_SnIntfManagement.c │ │ │ ├── sm_Status.c │ │ │ ├── sm_TimerManagement.c │ │ │ └── sm_Utilities.c │ ├── SNDCP │ │ └── Code │ │ │ └── Src │ │ │ ├── Snp_Sv42bis.c │ │ │ ├── V42b_enc.c │ │ │ ├── V42b_int.c │ │ │ ├── V42bdict.c │ │ │ ├── pppcompress.c │ │ │ ├── snp_Data.c │ │ │ ├── snp_LlcLink.c │ │ │ ├── snp_Main.c │ │ │ ├── snp_PdpContext.c │ │ │ ├── snp_TimerManagement.c │ │ │ ├── snp_rfc1144.c │ │ │ ├── snp_rfc2507.c │ │ │ ├── snp_v42b.c │ │ │ └── snp_xid.c │ └── SS │ │ └── Code │ │ └── Src │ │ ├── ss_CallBarring.c │ │ ├── ss_CallCompleteBusy.c │ │ ├── ss_CallForwarding.c │ │ ├── ss_CallWaiting.c │ │ ├── ss_CallerLineIdent.c │ │ ├── ss_CallerNamePresent.c │ │ ├── ss_Emlpp.c │ │ ├── ss_GapiIntfManagement.c │ │ ├── ss_LcsManagement.c │ │ ├── ss_Main.c │ │ ├── ss_MmConManagement.c │ │ ├── ss_MultiCall.c │ │ ├── ss_OssAsnManagement.c │ │ ├── ss_PduCodec.c │ │ ├── ss_TimerManagement.c │ │ ├── ss_UssdManagement.c │ │ └── ss_Utilities.c ├── TL1 │ ├── Interface │ │ ├── Common │ │ │ └── src │ │ │ │ └── pal_api_3g_Import.c │ │ └── THAL │ │ │ └── src │ │ │ ├── hal_dmover_3g_Import.c │ │ │ ├── hal_interrupt_3g_Import.c │ │ │ ├── hal_modem_3g_Import.c │ │ │ └── pal_hpcm_3g_Import.c │ ├── THAL_3XXAP │ │ ├── common │ │ │ └── src │ │ │ │ ├── thal_CCmd.c │ │ │ │ ├── thal_CCmdHandler.c │ │ │ │ ├── thal_CCmdPool.c │ │ │ │ ├── thal_CDlUarfcnCmdHandler.c │ │ │ │ ├── thal_CNormalCmdHandler.c │ │ │ │ └── thal_common.c │ │ ├── dl │ │ │ └── src │ │ │ │ ├── thal_CHmcpData.c │ │ │ │ ├── thal_CHmcpDataCommon.c │ │ │ │ ├── thal_CHmcpDedicatedCommonConfig.c │ │ │ │ ├── thal_CHmcpDedicatedCommonInfo.c │ │ │ │ ├── thal_CHmcpDlCctrchEnable.c │ │ │ │ ├── thal_CHmcpDlCctrchRelease.c │ │ │ │ ├── thal_CHmcpDlCctrchStop.c │ │ │ │ ├── thal_CHmcpDlPhychConfig.c │ │ │ │ ├── thal_CHmcpDlPhychProc.c │ │ │ │ ├── thal_CHmcpDlPhychRelease.c │ │ │ │ ├── thal_CHmcpDlPhychStart.c │ │ │ │ ├── thal_CHmcpDlPhychStop.c │ │ │ │ ├── thal_CHmcpDlTrchCommon.c │ │ │ │ ├── thal_CHmcpDlTrchConfig.c │ │ │ │ ├── thal_CHmcpDlTrchRelease.c │ │ │ │ ├── thal_CHmcpPichEnable.c │ │ │ │ └── thal_CTfc.c │ │ ├── eUL │ │ │ └── src │ │ │ │ ├── thal_CHmcpEDchTrchCommon.c │ │ │ │ ├── thal_CHmcpEdchCctrchToEncode.c │ │ │ │ ├── thal_CHmcpEdpchConfig.c │ │ │ │ ├── thal_CHmcpEdpchRelease.c │ │ │ │ └── thal_CHmcpEdpchStart.c │ │ ├── hsdpa │ │ │ └── src │ │ │ │ ├── thal_CHmcpHsPdschEnable.c │ │ │ │ ├── thal_CHmcpHsPdschHarqConfig.c │ │ │ │ ├── thal_CHmcpHsScchConfig.c │ │ │ │ ├── thal_CHmcpHsSichConfig.c │ │ │ │ └── thal_CHmcpHsdpaCommonInfo.c │ │ ├── irat │ │ │ ├── iratMux │ │ │ │ └── src │ │ │ │ │ └── thal_CHmcpGsmTimeLatch.c │ │ │ └── measurementServer │ │ │ │ └── src │ │ │ │ ├── thal_CMeasurementQueue.c │ │ │ │ ├── thal_CMeasurementRequest.c │ │ │ │ ├── thal_CMeasurementServer.c │ │ │ │ └── thal_MeasurementServer.c │ │ ├── platform │ │ │ └── src │ │ │ │ ├── thal_Hmcp.c │ │ │ │ ├── thal_HmcpInterrupt.c │ │ │ │ └── thal_HmcpIpc.c │ │ ├── powerSave │ │ │ ├── CAL │ │ │ │ └── src │ │ │ │ │ └── thal_CSlowCLKCal.c │ │ │ ├── HW │ │ │ │ └── src │ │ │ │ │ ├── thal_HpcmComponent.c │ │ │ │ │ └── thal_HpcmHW.c │ │ │ └── SLEEP │ │ │ │ └── src │ │ │ │ ├── thal_CSleepStart.c │ │ │ │ └── thal_CWakeUpStart.c │ │ ├── rf │ │ │ └── src │ │ │ │ ├── thal_CHmcpRf.c │ │ │ │ ├── thal_CHmcpRfAPI.c │ │ │ │ ├── thal_CHmcpRfCal.c │ │ │ │ ├── thal_CHmcpRfInfo.c │ │ │ │ ├── thal_CHmcpRfOn.c │ │ │ │ ├── thal_CHmcpRfSynth.c │ │ │ │ ├── thal_CHmcpRfWithUs.c │ │ │ │ ├── thal_CHmcpRxDiv.c │ │ │ │ ├── thal_CHmcpRxOff.c │ │ │ │ ├── thal_CHmcpRxOn.c │ │ │ │ ├── thal_CHmcpRxRssi.c │ │ │ │ ├── thal_CHmcpRxUarfcn.c │ │ │ │ ├── thal_CHmcpTxOff.c │ │ │ │ ├── thal_CHmcpTxOn.c │ │ │ │ └── thal_CHmcpTxPower.c │ │ ├── searcher │ │ │ └── src │ │ │ │ ├── thal_CHmcpSrchAfc.c │ │ │ │ ├── thal_CHmcpSrchDwPtsMultiPath.c │ │ │ │ ├── thal_CHmcpSrchFreqRssiScan.c │ │ │ │ ├── thal_CHmcpSrchMidambleScrCode.c │ │ │ │ ├── thal_CHmcpSrchMultiPathMode0.c │ │ │ │ ├── thal_CHmcpSrchPccpchFrameSync.c │ │ │ │ └── thal_CHmcpSrchSIC.c │ │ └── ul │ │ │ └── src │ │ │ ├── thal_CHmcpCctrchToEncode.c │ │ │ ├── thal_CHmcpPrach.c │ │ │ ├── thal_CHmcpPrachConfig.c │ │ │ ├── thal_CHmcpPrachRelease.c │ │ │ ├── thal_CHmcpPrachStart.c │ │ │ ├── thal_CHmcpUlDpch.c │ │ │ ├── thal_CHmcpUlDpchConfig.c │ │ │ ├── thal_CHmcpUlDpchRelease.c │ │ │ ├── thal_CHmcpUlDpchStart.c │ │ │ ├── thal_CHmcpUlTrchCommon.c │ │ │ ├── thal_CHmcpUlTrchConfig.c │ │ │ ├── thal_CHmcpUlTrchRelease.c │ │ │ └── thal_CHmcpUlUtility.c │ └── TL1C │ │ ├── ChMgt │ │ ├── bch │ │ │ └── src │ │ │ │ ├── tphy_CBchResources.c │ │ │ │ ├── tphy_CBchResourcesController.c │ │ │ │ └── tphy_CCellSFNServer.c │ │ ├── bplmn │ │ │ └── src │ │ │ │ └── tphy_CBplmnController.c │ │ ├── dataTRx │ │ │ └── src │ │ │ │ └── tphy_CDlUserPlaneMiniRouter.c │ │ ├── dch │ │ │ └── src │ │ │ │ ├── tphy_CActivationTimeQueue.c │ │ │ │ ├── tphy_CDedicatedModeController.c │ │ │ │ ├── tphy_CDedicatedModeModificationUtilities.c │ │ │ │ ├── tphy_CDedicatedModeResources.c │ │ │ │ ├── tphy_CDlDchProcessor.c │ │ │ │ └── tphy_CUlDchProcessor.c │ │ ├── edch │ │ │ └── src │ │ │ │ ├── tphy_CEdchResourceController.c │ │ │ │ └── tphy_CEdchResources.c │ │ ├── genChCtrl │ │ │ └── src │ │ │ │ ├── tphy_CChannelsConfigurationUtility.c │ │ │ │ ├── tphy_CConfigurationController.c │ │ │ │ ├── tphy_CConfigurationVerifier.c │ │ │ │ ├── tphy_CFSM.c │ │ │ │ ├── tphy_CFSMEventDeadlineList.c │ │ │ │ ├── tphy_CMappingDatabase.c │ │ │ │ └── tphy_CResourcesConfigurationController.c │ │ ├── hsdsch │ │ │ └── src │ │ │ │ ├── tphy_CHsdschResources.c │ │ │ │ ├── tphy_CHsdschResourcesController.c │ │ │ │ └── tphy_CHsdschResourcesModificationUtilities.c │ │ ├── pchFach │ │ │ └── src │ │ │ │ ├── tphy_CFachResources.c │ │ │ │ ├── tphy_CFachResourcesController.c │ │ │ │ ├── tphy_CPchAndDrxResources.c │ │ │ │ ├── tphy_CPchAndDrxResourcesController.c │ │ │ │ └── tphy_CStartStopDecodingController.c │ │ └── rach │ │ │ └── src │ │ │ ├── tphy_CRachResources.c │ │ │ └── tphy_CRachResourcesController.c │ │ ├── messaging │ │ └── src │ │ │ ├── buildTphyUrrcMessages.c │ │ │ ├── tphy_CMessageCentre.c │ │ │ ├── tphy_CMessageProcessor.c │ │ │ ├── tphy_CMessageTransceiver.c │ │ │ ├── tphy_CMsgDeadlineList.c │ │ │ ├── tphy_CTphyDsl1rcMessageInterface.c │ │ │ ├── tphy_CTphyMmcMessageInterface.c │ │ │ ├── tphy_CTphyUmacMessageInterface.c │ │ │ └── tphy_CTphyUrrcMessageInterface.c │ │ ├── misc │ │ └── src │ │ │ ├── tl1_CreateDestroy.c │ │ │ ├── tphy_CInterRatCoordinator.c │ │ │ ├── tphy_IsUlDchReadyForData.c │ │ │ ├── tphy_LmacGateway.c │ │ │ └── tphy_timeout.c │ │ ├── powerSave │ │ └── Src │ │ │ └── tphy_CPsManager.c │ │ └── rrm │ │ ├── TDD_GsmSpace │ │ └── src │ │ │ └── tphy_CGsmTimeReference.c │ │ ├── cellSrchScheduler │ │ └── src │ │ │ ├── tphy_CArfcnList.c │ │ │ ├── tphy_CArfcnListsCollector.c │ │ │ ├── tphy_CEutraCellSearchStepFsm.c │ │ │ ├── tphy_CEutraMeasureStepFsm.c │ │ │ ├── tphy_CEutraSearchMeasureStepFsm.c │ │ │ ├── tphy_CEutraStepFsm.c │ │ │ ├── tphy_CFbFsm.c │ │ │ ├── tphy_CFbFsmHandler.c │ │ │ ├── tphy_CGsmFchStepFsm.c │ │ │ ├── tphy_CGsmRssiStepFsm.c │ │ │ ├── tphy_CGsmSchStepFsm.c │ │ │ ├── tphy_CGsmStepFsm.c │ │ │ ├── tphy_CRfRssiStepFsm.c │ │ │ ├── tphy_CSchedulingManager.c │ │ │ ├── tphy_CSearcherAfcStepFsm.c │ │ │ ├── tphy_CSearcherDwptsStepFsm.c │ │ │ ├── tphy_CSearcherMidambleStepFsm.c │ │ │ ├── tphy_CSearcherMultipathStepFsm.c │ │ │ ├── tphy_CSearcherPccpchFrameSyncStepFsm.c │ │ │ ├── tphy_CThalFbStepFsm.c │ │ │ ├── tphy_SchedulerMsgs.c │ │ │ └── tphy_SchedulerUtil.c │ │ ├── iratMsmt │ │ ├── inc │ │ │ └── tphy_CEutraCellReselectionMeasurementMidServer.inl │ │ └── src │ │ │ ├── tphy_CEutraBaseMeasurementMidServer.c │ │ │ ├── tphy_CEutraCellReselMeasMidServer.c │ │ │ ├── tphy_CEutraCellSearchController.c │ │ │ ├── tphy_CEutraCellSearchManager.c │ │ │ ├── tphy_CEutraMeasureController.c │ │ │ ├── tphy_CEutraMeasureManager.c │ │ │ ├── tphy_CEutraMeasurementController.c │ │ │ ├── tphy_CEutraMeasurementMidServer.c │ │ │ ├── tphy_CEutraSearchMeasureController.c │ │ │ ├── tphy_CEutraSearchMeasureManager.c │ │ │ ├── tphy_CEutraTimeReference.c │ │ │ ├── tphy_CGsmBaseMeasurementMidServer.c │ │ │ ├── tphy_CGsmBsicController.c │ │ │ ├── tphy_CGsmBsicManager.c │ │ │ ├── tphy_CGsmCellManager.c │ │ │ ├── tphy_CGsmCellReselMeasMidServer.c │ │ │ ├── tphy_CGsmMeasurementController.c │ │ │ ├── tphy_CGsmMeasurementMidServer.c │ │ │ ├── tphy_CGsmRssiController.c │ │ │ └── tphy_CGsmRssiManager.c │ │ ├── searcher │ │ └── src │ │ │ ├── tphy_CCarrierFreqSearcher.c │ │ │ ├── tphy_CCellSynchroniser.c │ │ │ ├── tphy_CInitialCellSearcher.c │ │ │ ├── tphy_CInterGroupCellSynchroniser.c │ │ │ ├── tphy_CIntraGroupCellSynchroniser.c │ │ │ └── tphy_CSearcherController.c │ │ └── tddMsmt │ │ └── src │ │ ├── tphy_CCellDatabase.c │ │ ├── tphy_CCellDatabaseAger.c │ │ ├── tphy_CCellDatabaseUpdatingUtility.c │ │ ├── tphy_CInterFreqCellReselectionMeasurementMidServer.c │ │ ├── tphy_CInterFreqMeasurementMidServer.c │ │ ├── tphy_CInternalMeasurementMidServer.c │ │ ├── tphy_CIntraFreqCellReselectionMeasurementMidServer.c │ │ ├── tphy_CIntraFreqMeasurementMidServer.c │ │ ├── tphy_CMaxUlTxPowerController.c │ │ ├── tphy_CMeasurementController.c │ │ ├── tphy_CMeasurementGapManager.c │ │ ├── tphy_CMeasurementMidServer.c │ │ ├── tphy_CMeasurementResources.c │ │ ├── tphy_CQualityMeasurementMidServer.c │ │ ├── tphy_CTransactIdUarfcnMidambleIndexMap.c │ │ ├── tphy_CUeTxPowerController.c │ │ ├── tphy_CUmtsCellSelectionMeasurementMidServer.c │ │ └── tphy_MeasurementUtility.c ├── UL1 │ ├── DSCOMMON │ │ └── Code │ │ │ └── Src │ │ │ ├── CommonRakeRtgController.c │ │ │ ├── CommonSleepController.c │ │ │ └── DsCommon.c │ ├── Interface │ │ └── UHAL │ │ │ └── Src │ │ │ ├── hal_interrupt_3gf_Import.c │ │ │ └── hal_rx_filter_3gf_Import.c │ ├── UHAL │ │ ├── CPC │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CHmcpUeDrxConfig.c │ │ │ │ ├── uhal_CHmcpUeDrxRelease.c │ │ │ │ ├── uhal_CHmcpUeDtxConfig.c │ │ │ │ └── uhal_CHmcpUeDtxRelease.c │ │ ├── Irat │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CMeasurementQueue.c │ │ │ │ ├── uhal_CMeasurementRequest.c │ │ │ │ ├── uhal_CMeasurementServer.c │ │ │ │ └── uhal_MeasurementServer.c │ │ ├── Misc │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_Cmd.c │ │ │ │ ├── uhal_CmdHandler.c │ │ │ │ ├── uhal_CmdPool.c │ │ │ │ ├── uhal_DlUarfcnCmdHandler.c │ │ │ │ ├── uhal_NormalCmdHandler.c │ │ │ │ └── uhal_common.c │ │ ├── RxFilter │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CHmcpAfcEnable.c │ │ │ │ ├── uhal_CHmcpAfcMeasure.c │ │ │ │ ├── uhal_CHmcpFreqAdjust.c │ │ │ │ ├── uhal_CHmcpRfAPI.c │ │ │ │ ├── uhal_CHmcpRfCal.c │ │ │ │ ├── uhal_CHmcpRfInfo.c │ │ │ │ ├── uhal_CHmcpRfOff.c │ │ │ │ ├── uhal_CHmcpRfOn.c │ │ │ │ ├── uhal_CHmcpRfSynth.c │ │ │ │ ├── uhal_CHmcpRxFilter.c │ │ │ │ ├── uhal_CHmcpRxGain.c │ │ │ │ ├── uhal_CHmcpRxOff.c │ │ │ │ ├── uhal_CHmcpRxOn.c │ │ │ │ ├── uhal_CHmcpRxRssi.c │ │ │ │ ├── uhal_CHmcpRxUarfcn.c │ │ │ │ ├── uhal_CHmcpTxOff.c │ │ │ │ ├── uhal_CHmcpTxOn.c │ │ │ │ ├── uhal_CHmcpTxPower.c │ │ │ │ ├── uhal_CHmcpTxUarfcn.c │ │ │ │ └── uhal_RFCmdHandler.c │ │ ├── Searcher │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CHmcpCpichMultiPath.c │ │ │ │ ├── uhal_CHmcpCpichScrCode.c │ │ │ │ ├── uhal_CHmcpPschMultiPath.c │ │ │ │ ├── uhal_CHmcpSrchBuffer.c │ │ │ │ ├── uhal_CHmcpSschScrCodeGroup.c │ │ │ │ └── uhal_HmcpSearcherCommon.c │ │ ├── Sleep │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CHmcpFeeEnable.c │ │ │ │ └── uhal_CHmcpSleepStart.c │ │ ├── hsdpa │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CHmcpHsDpcchConfig.c │ │ │ │ ├── uhal_CHmcpHsDpcchRelease.c │ │ │ │ ├── uhal_CHmcpHsPdschDisable.c │ │ │ │ ├── uhal_CHmcpHsPdschEnable.c │ │ │ │ ├── uhal_CHmcpHsPdschHarqConfig.c │ │ │ │ ├── uhal_CHmcpHsPdschHarqRelease.c │ │ │ │ ├── uhal_CHmcpHsScchConfig.c │ │ │ │ ├── uhal_CHmcpHsScchRelease.c │ │ │ │ ├── uhal_CHmcpHsdpaDlEqualizerConfig_SS3XX.c │ │ │ │ └── uhal_CHmcpHsdpaDlEqualizerRelease_SS3XX.c │ │ ├── hsupa │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CHmcpEdchCctrchToEncode.c │ │ │ │ ├── uhal_CHmcpEdpchConfig.c │ │ │ │ ├── uhal_CHmcpEdpchRelease.c │ │ │ │ ├── uhal_CHmcpEdpchStart.c │ │ │ │ ├── uhal_CHmcpHsupaDlPhychConfig.c │ │ │ │ ├── uhal_CHmcpHsupaDlPhychProc.c │ │ │ │ ├── uhal_CHmcpHsupaDlPhychRelease.c │ │ │ │ ├── uhal_CHmcpHsupaDlPhychStart.c │ │ │ │ ├── uhal_CHmcpHsupaDlPhychStop.c │ │ │ │ ├── uhal_CHmcpHsupaRlPhychConfig.c │ │ │ │ └── uhal_HmcpEDchTrchCommon.c │ │ ├── platform │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CHmcpGsmTimeLatch.c │ │ │ │ ├── uhal_CHmcpIratMuxConfig.c │ │ │ │ ├── uhal_Hmcp.c │ │ │ │ ├── uhal_HmcpHpcm.c │ │ │ │ └── uhal_HmcpIpc.c │ │ ├── uRake │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CHmcpAichIndicatorInfo.c │ │ │ │ ├── uhal_CHmcpCommonConfig.c │ │ │ │ ├── uhal_CHmcpDedicatedCommonConfig.c │ │ │ │ ├── uhal_CHmcpDedicatedCommonInfo.c │ │ │ │ ├── uhal_CHmcpDiversityDetection.c │ │ │ │ ├── uhal_CHmcpDlDpchSyncModify.c │ │ │ │ ├── uhal_CHmcpDlPhychConfig.c │ │ │ │ ├── uhal_CHmcpDlPhychModify.c │ │ │ │ ├── uhal_CHmcpDlPhychProc.c │ │ │ │ ├── uhal_CHmcpDlPhychRelease.c │ │ │ │ ├── uhal_CHmcpDlPhychStart.c │ │ │ │ ├── uhal_CHmcpDlPhychStop.c │ │ │ │ ├── uhal_CHmcpFingerConfig.c │ │ │ │ ├── uhal_CHmcpFingerInfo.c │ │ │ │ ├── uhal_CHmcpFingerMultiInfo.c │ │ │ │ ├── uhal_CHmcpFingerMultiRelease.c │ │ │ │ ├── uhal_CHmcpFingerMultiStart.c │ │ │ │ ├── uhal_CHmcpFingerRelease.c │ │ │ │ ├── uhal_CHmcpFingerSlew.c │ │ │ │ ├── uhal_CHmcpFingerStart.c │ │ │ │ ├── uhal_CHmcpPichEnable.c │ │ │ │ ├── uhal_CHmcpPichIndicatorInfo.c │ │ │ │ ├── uhal_CHmcpRlConfig.c │ │ │ │ ├── uhal_CHmcpRlInfo.c │ │ │ │ ├── uhal_CHmcpRlModify.c │ │ │ │ ├── uhal_CHmcpRlNeighbourConfig.c │ │ │ │ ├── uhal_CHmcpRlPhychConfig.c │ │ │ │ ├── uhal_CHmcpRlPhychModify.c │ │ │ │ ├── uhal_CHmcpRlReferenceConfig.c │ │ │ │ ├── uhal_CHmcpRlRelease.c │ │ │ │ ├── uhal_CHmcpRlSfnConfig.c │ │ │ │ ├── uhal_CHmcpRlStart.c │ │ │ │ ├── uhal_CHmcpRlTimingReset.c │ │ │ │ ├── uhal_CHmcpTgpsArm.c │ │ │ │ ├── uhal_CHmcpTgpsConfig.c │ │ │ │ ├── uhal_CHmcpTgpsDisable.c │ │ │ │ ├── uhal_CHmcpTgpsEnable.c │ │ │ │ ├── uhal_CHmcpTgpsRelease.c │ │ │ │ └── uhal_DlPhychCommon.c │ │ ├── uSlp │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uhal_CHmcpCctrchDecodedInfo.c │ │ │ │ ├── uhal_CHmcpCctrchToEncode.c │ │ │ │ ├── uhal_CHmcpData.c │ │ │ │ ├── uhal_CHmcpDlCctrchEnable.c │ │ │ │ ├── uhal_CHmcpDlCctrchRelease.c │ │ │ │ ├── uhal_CHmcpDlCctrchStop.c │ │ │ │ ├── uhal_CHmcpDlCctrchTfcAdd.c │ │ │ │ ├── uhal_CHmcpDlTrchConfig.c │ │ │ │ ├── uhal_CHmcpDlTrchRelease.c │ │ │ │ ├── uhal_CTfc.c │ │ │ │ ├── uhal_HmcpDataCommon.c │ │ │ │ └── uhal_HmcpDlTrchCommon.c │ │ └── uTx │ │ │ └── Code │ │ │ └── Src │ │ │ ├── uhal_CHmcpDpchConfig.c │ │ │ ├── uhal_CHmcpDpchRelease.c │ │ │ ├── uhal_CHmcpDpchStart.c │ │ │ ├── uhal_CHmcpPrachConfig.c │ │ │ ├── uhal_CHmcpPrachRelease.c │ │ │ ├── uhal_CHmcpPrachStart.c │ │ │ ├── uhal_CHmcpTxTiming.c │ │ │ ├── uhal_CPrach.c │ │ │ ├── uhal_HmcpUlTrchCommon.c │ │ │ └── uhal_Hmcp_UL_Utility.c │ └── UL1C │ │ ├── CPC │ │ └── Code │ │ │ └── Src │ │ │ ├── uphy_CCPCModeResources.c │ │ │ └── uphy_CCPCModeResourcesController.c │ │ ├── ChMgt │ │ ├── Bch │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CBchResources.c │ │ │ │ ├── uphy_CBchResourcesController.c │ │ │ │ ├── uphy_CCellSFNServer.c │ │ │ │ └── uphy_CCgiAcquisition.c │ │ ├── DataTRx │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ └── uphy_CDlUserPlaneMiniRouter.c │ │ ├── Dch │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CActivationTimeQueue.c │ │ │ │ ├── uphy_CDedicatedModeController.c │ │ │ │ ├── uphy_CDedicatedModeModificationUtilities.c │ │ │ │ ├── uphy_CDedicatedModeResources.c │ │ │ │ ├── uphy_CDlDchProcessor.c │ │ │ │ ├── uphy_CSoftHandover.c │ │ │ │ └── uphy_CUlDchProcessor.c │ │ ├── Edch │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CEdchResourceController.c │ │ │ │ ├── uphy_CEdchResources.c │ │ │ │ └── uphy_CHsupaSoftHandover.c │ │ ├── GenChCtrl │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CChannelsConfigurationUtility.c │ │ │ │ ├── uphy_CConfigurationController.c │ │ │ │ ├── uphy_CConfigurationVerifier.c │ │ │ │ ├── uphy_CFSM.c │ │ │ │ ├── uphy_CFSMEventDeadlineList.c │ │ │ │ ├── uphy_CMappingDatabase.c │ │ │ │ └── uphy_CResourcesConfigurationController.c │ │ ├── Hsdsch │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CHsdschResources.c │ │ │ │ ├── uphy_CHsdschResourcesController.c │ │ │ │ └── uphy_CHsdschResourcesModificationUtilities.c │ │ ├── PchFach │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CBplmnSearchController.c │ │ │ │ ├── uphy_CFachResources.c │ │ │ │ ├── uphy_CFachResourcesController.c │ │ │ │ ├── uphy_CPchAndDrxResources.c │ │ │ │ ├── uphy_CPchAndDrxResourcesController.c │ │ │ │ └── uphy_CStartStopDecodingController.c │ │ └── Rach │ │ │ └── Code │ │ │ └── Src │ │ │ ├── uphy_CRachResources.c │ │ │ └── uphy_CRachResourcesController.c │ │ ├── CmprMode │ │ └── Code │ │ │ └── Src │ │ │ ├── uphy_CCompressedModeManager.c │ │ │ └── uphy_CTgpsManager.c │ │ ├── Messaging │ │ └── Code │ │ │ └── Src │ │ │ ├── uphy_CMessageCentre.c │ │ │ ├── uphy_CMessageTransceiver.c │ │ │ ├── uphy_CMsgDeadlineList.c │ │ │ ├── uphy_CUphyDsl1rcMessageInterface.c │ │ │ ├── uphy_CUphyMmcMessageInterface.c │ │ │ ├── uphy_CUphyUmacMessageInterface.c │ │ │ ├── uphy_CUphyUrrcMessageInterface.c │ │ │ ├── urrc_uphySlotFormatUtil.c │ │ │ └── urrc_uphyUtility.c │ │ ├── Misc │ │ └── Code │ │ │ └── Src │ │ │ ├── l1_CreateDestroy.c │ │ │ ├── uphy_CAFC.c │ │ │ ├── uphy_CInterRatCoordinator.c │ │ │ ├── uphy_IsRachReadyForData.c │ │ │ ├── uphy_IsUlDchReadyForData.c │ │ │ ├── uphy_common.c │ │ │ └── uphy_timeout.c │ │ ├── RRM │ │ ├── CellSrchScheduler │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CArfcnList.c │ │ │ │ ├── uphy_CArfcnListsCollector.c │ │ │ │ ├── uphy_CEutraCellSearchStepFsm.c │ │ │ │ ├── uphy_CEutraMeasureStepFsm.c │ │ │ │ ├── uphy_CEutraSearchMeasureStepFsm.c │ │ │ │ ├── uphy_CEutraStepFsm.c │ │ │ │ ├── uphy_CFbFsm.c │ │ │ │ ├── uphy_CFbFsmHandler.c │ │ │ │ ├── uphy_CGsmFchStepFsm.c │ │ │ │ ├── uphy_CGsmRssiStepFsm.c │ │ │ │ ├── uphy_CGsmSchStepFsm.c │ │ │ │ ├── uphy_CGsmStepFsm.c │ │ │ │ ├── uphy_CRfRssiStepFsm.c │ │ │ │ ├── uphy_CSchedulingManager.c │ │ │ │ ├── uphy_CSearcherCpichMultipathStepFsm.c │ │ │ │ ├── uphy_CSearcherCpichScrCodeStepFsm.c │ │ │ │ ├── uphy_CSearcherPschStepFsm.c │ │ │ │ ├── uphy_CSearcherSschStepFsm.c │ │ │ │ ├── uphy_CSfnSfnAndBchBackgroundFsm.c │ │ │ │ ├── uphy_CUhalFbStepFsm.c │ │ │ │ ├── uphy_SchedulerMsgs.c │ │ │ │ └── uphy_SchedulerUtil.c │ │ ├── FddMsmt │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CInterFreqCellReselMeasMidServer.c │ │ │ │ ├── uphy_CInterFreqMeasurementMidServer.c │ │ │ │ ├── uphy_CInternalMeasurementMidServer.c │ │ │ │ ├── uphy_CIntraFreqCellReselMeasMidServer.c │ │ │ │ ├── uphy_CIntraFreqMeasurementMidServer.c │ │ │ │ ├── uphy_CMaxUlTxPowerController.c │ │ │ │ ├── uphy_CMeasurementController.c │ │ │ │ ├── uphy_CMeasurementMidServer.c │ │ │ │ ├── uphy_CMeasurementResources.c │ │ │ │ ├── uphy_CQualityMeasurementMidServer.c │ │ │ │ ├── uphy_CUeTxPowerController.c │ │ │ │ ├── uphy_CUmtsCellSelectionMeasMidServer.c │ │ │ │ ├── uphy_CVirtualGapManager.c │ │ │ │ └── uphy_MeasurementUtility.c │ │ ├── IratMsmt │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CEutraBaseMeasurementMidServer.c │ │ │ │ ├── uphy_CEutraCellReselMeasMidServer.c │ │ │ │ ├── uphy_CEutraCellSearchController.c │ │ │ │ ├── uphy_CEutraCellSearchManager.c │ │ │ │ ├── uphy_CEutraMeasureController.c │ │ │ │ ├── uphy_CEutraMeasureManager.c │ │ │ │ ├── uphy_CEutraMeasurementController.c │ │ │ │ ├── uphy_CEutraMeasurementMidServer.c │ │ │ │ ├── uphy_CEutraSearchMeasureController.c │ │ │ │ ├── uphy_CEutraSearchMeasureManager.c │ │ │ │ ├── uphy_CEutraTimeReference.c │ │ │ │ ├── uphy_CGsmBaseMeasurementMidServer.c │ │ │ │ ├── uphy_CGsmBsicController.c │ │ │ │ ├── uphy_CGsmBsicManager.c │ │ │ │ ├── uphy_CGsmCellManager.c │ │ │ │ ├── uphy_CGsmCellReselMeasMidServer.c │ │ │ │ ├── uphy_CGsmMeasurementController.c │ │ │ │ ├── uphy_CGsmMeasurementMidServer.c │ │ │ │ ├── uphy_CGsmRssiController.c │ │ │ │ ├── uphy_CGsmRssiManager.c │ │ │ │ └── uphy_CGsmTimeReference.c │ │ ├── MpdbMgt │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── uphy_CMultiPathDatabase.c │ │ │ │ ├── uphy_CMultiPathDatabaseAger.c │ │ │ │ ├── uphy_CMultiPathDatabaseUpdatingUtility.c │ │ │ │ ├── uphy_CRakeFingerMgmtUtility.c │ │ │ │ └── uphy_RakeFingerReassignUtility.c │ │ └── Searcher │ │ │ └── Code │ │ │ └── Src │ │ │ ├── uphy_CBlindCellSearcher.c │ │ │ ├── uphy_CGroupCellSynchroniser.c │ │ │ ├── uphy_CSearcherController.c │ │ │ └── uphy_CStoredCellSearcher.c │ │ └── Sleep │ │ └── Code │ │ └── Src │ │ ├── uphy_CFee.c │ │ └── uphy_CSleepManager.c ├── UL2 │ ├── UBMC │ │ └── Code │ │ │ └── Src │ │ │ ├── UBMC_CSH.c │ │ │ ├── UBMC_DRX.c │ │ │ ├── UBMC_LIST.c │ │ │ ├── UBMC_LSH.c │ │ │ └── UBMC_USH.c │ ├── ULayer2Common │ │ └── Code │ │ │ └── Src │ │ │ ├── UDATA_TaskMain.c │ │ │ ├── UL2DL_TaskMain.c │ │ │ ├── UMAC_Timer.c │ │ │ └── URLC_Timer.c │ ├── UMAC │ │ └── Code │ │ │ └── Src │ │ │ ├── UMAC_COMMON.c │ │ │ ├── UMAC_CONSTRUCTOR.c │ │ │ ├── UMAC_CTRL_OF_RACH_TRANS.c │ │ │ ├── UMAC_CUMAC_SAP.c │ │ │ ├── UMAC_DB.c │ │ │ ├── UMAC_DB_HANDLER_URRC_REQ.c │ │ │ ├── UMAC_E_ETFC_SELECTION.c │ │ │ ├── UMAC_E_HARQ.c │ │ │ ├── UMAC_E_PDU_CONSTRUCTION.c │ │ │ ├── UMAC_E_SG_UPDATE.c │ │ │ ├── UMAC_E_TIMER.c │ │ │ ├── UMAC_LB.c │ │ │ ├── UMAC_MACEHS.c │ │ │ ├── UMAC_MACHS.c │ │ │ ├── UMAC_MAC_CSH.c │ │ │ ├── UMAC_MAC_D.c │ │ │ ├── UMAC_REORDER_FUNC_TEMP.c │ │ │ ├── UMAC_SCHEDULER.c │ │ │ ├── UMAC_TFC_SEL.c │ │ │ ├── UMAC_TV_MEAS.c │ │ │ ├── UMAC_UPHY_SAP.c │ │ │ └── UMAC_URLC_SAP.c │ ├── UPDCP │ │ └── Code │ │ │ └── Src │ │ │ ├── UPDCP_ALGID.c │ │ │ ├── UPDCP_CSH.c │ │ │ ├── UPDCP_EM.c │ │ │ ├── UPDCP_LSH.c │ │ │ ├── UPDCP_PDUINT.c │ │ │ ├── UPDCP_PIDMAP.c │ │ │ └── UPDCP_USH.c │ └── URLC │ │ └── Code │ │ ├── Inc │ │ └── URLC_Types.h │ │ └── Src │ │ ├── URLC_AM.c │ │ ├── URLC_CCM.c │ │ ├── URLC_CSH.c │ │ ├── URLC_CSP.c │ │ ├── URLC_CU.c │ │ ├── URLC_EM.c │ │ ├── URLC_ISP.c │ │ ├── URLC_LSH.c │ │ ├── URLC_Loopback.c │ │ ├── URLC_Main.c │ │ ├── URLC_PB.c │ │ ├── URLC_PS.c │ │ ├── URLC_RBAndRM.c │ │ ├── URLC_ROUTE.c │ │ ├── URLC_SB.c │ │ ├── URLC_SEG.c │ │ ├── URLC_TM.c │ │ ├── URLC_UM.c │ │ └── URLC_USH.c └── UL3 │ └── URRC │ ├── Bound │ └── Code │ │ └── Src │ │ ├── rrc_BoundGrr.c │ │ ├── rrc_BoundLcsm.c │ │ ├── rrc_BoundNas.c │ │ ├── rrc_BoundPdcp.c │ │ ├── rrc_BoundRabm.c │ │ ├── rrc_BoundSms.c │ │ ├── rrc_BoundSrif.c │ │ ├── rrc_BoundUmac.c │ │ ├── rrc_BoundUphy.c │ │ ├── rrc_BoundUrlc.c │ │ ├── rrc_BoundUsim.c │ │ ├── rrc_ILRegTab.c │ │ ├── rrc_ILRspTab.c │ │ └── rrc_boundubmc.c │ ├── CellSel │ └── Code │ │ ├── Inc │ │ └── rrc_CellSelecter.inl │ │ └── Src │ │ ├── rrc_AnrHandler.c │ │ ├── rrc_BarredList.c │ │ ├── rrc_BlackList.c │ │ ├── rrc_BplmnHandler.c │ │ ├── rrc_CandidateCell.c │ │ ├── rrc_CellReselecter.c │ │ ├── rrc_CellSelCriteria.c │ │ ├── rrc_CellSelReselInfo.c │ │ ├── rrc_CellSelecter.c │ │ ├── rrc_CsgList.c │ │ ├── rrc_DiscardedCandidateList.c │ │ ├── rrc_EquivPlmnList.c │ │ ├── rrc_EutraCellSelReselInfo.c │ │ ├── rrc_EutraFreqSelReselInfo.c │ │ ├── rrc_EutraReselMeas.c │ │ ├── rrc_FDDBandCache.c │ │ ├── rrc_FDDNetworkCache.c │ │ ├── rrc_FddCellSelReselInfo.c │ │ ├── rrc_FddNetwork.c │ │ ├── rrc_Frequency.c │ │ ├── rrc_GsmCellSelReselInfo.c │ │ ├── rrc_GsmFreqSelReselInfo.c │ │ ├── rrc_HcsPenaltyTimerList.c │ │ ├── rrc_HighMobility.c │ │ ├── rrc_InterFReselMeas.c │ │ ├── rrc_InterRatReselMeas.c │ │ ├── rrc_IntraFReselMeas.c │ │ ├── rrc_MonitoredCell.c │ │ ├── rrc_ReselMeasController.c │ │ ├── rrc_ReselMeasurement.c │ │ ├── rrc_ReselRanker.c │ │ ├── rrc_SelectedPlmn.c │ │ ├── rrc_ServingCell.c │ │ ├── rrc_ServingCellSelReselInfo.c │ │ ├── rrc_ServingCellSysInfoCache.c │ │ ├── rrc_SibCellInfoList.c │ │ ├── rrc_SibInterFCellInfoList.c │ │ ├── rrc_SibIntraFCellInfoList.c │ │ ├── rrc_TimerConstants.c │ │ ├── rrc_TxFailParamList.c │ │ ├── rrc_UtraFreqSelReselInfo.c │ │ ├── rrc_VisitedCsgList.c │ │ └── rrc_VisitedPlmn.c │ ├── CfgDb │ └── Code │ │ └── Src │ │ ├── rrc_CfgDbAnalyzeIlm.c │ │ ├── rrc_CfgDbCrossValidation.c │ │ ├── rrc_CfgDbCtfcProcess.c │ │ ├── rrc_CfgDbMgr.c │ │ └── rrc_CfgDbSetGetApi.c │ ├── CnxMgr │ └── Code │ │ ├── Inc │ │ ├── rrc_CnxMgrConn.inl │ │ └── rrc_UeIdentity.inl │ │ └── Src │ │ ├── rrc_CnxMgr.c │ │ ├── rrc_CnxMgrConn.c │ │ ├── rrc_CnxMgrIdle.c │ │ ├── rrc_CnxMgrMobility.c │ │ ├── rrc_DsrcMgr.c │ │ ├── rrc_EtwsMgr.c │ │ ├── rrc_SoftHOMgr.c │ │ ├── rrc_UeIdentity.c │ │ ├── rrc_UsimMgr.c │ │ ├── rrc_cbsmgr.c │ │ └── rrc_cnxMgrUtility.c │ ├── Ilm │ └── Code │ │ └── Src │ │ ├── rrc_CTPHY_InterFreq_CellResel_MeasConf_REQ.c │ │ ├── rrc_CTPHY_InterFreq_CellResel_MeasMod_REQ.c │ │ ├── rrc_CTPHY_IntraFreq_CellResel_MeasConf_REQ.c │ │ ├── rrc_CTPHY_IntraFreq_CellResel_MeasMod_REQ.c │ │ ├── rrc_CUMAC_Meas_REQ.c │ │ ├── rrc_CUPHY_EutraCellSelMeasConf_REQ.c │ │ ├── rrc_CUPHY_EutraCellSelMeasMod_REQ.c │ │ ├── rrc_CUPHY_EutraMeasConf_REQ.c │ │ ├── rrc_CUPHY_EutraMeasMod_REQ.c │ │ ├── rrc_CUPHY_GsmCellSelMeasConf_REQ.c │ │ ├── rrc_CUPHY_GsmCellSelMeasMod_REQ.c │ │ ├── rrc_CUPHY_GsmMeasConf_REQ.c │ │ ├── rrc_CUPHY_GsmMeasMod_REQ.c │ │ ├── rrc_CUPHY_InterFreq_CellResel_MeasConf_REQ.c │ │ ├── rrc_CUPHY_InterFreq_CellResel_MeasMod_REQ.c │ │ ├── rrc_CUPHY_InterFreq_MeasConf_REQ.c │ │ ├── rrc_CUPHY_InterFreq_MeasMod_REQ.c │ │ ├── rrc_CUPHY_InterFreq_Meas_IND.c │ │ ├── rrc_CUPHY_Intern_MeasConf_REQ.c │ │ ├── rrc_CUPHY_Intern_MeasMod_REQ.c │ │ ├── rrc_CUPHY_IntraFreq_CellResel_MeasConf_REQ.c │ │ ├── rrc_CUPHY_IntraFreq_CellResel_MeasMod_REQ.c │ │ ├── rrc_CUPHY_IntraFreq_MeasConf_REQ.c │ │ ├── rrc_CUPHY_IntraFreq_MeasMod_REQ.c │ │ ├── rrc_CUPHY_IntraFreq_Meas_IND.c │ │ ├── rrc_CUPHY_MeasRel_REQ.c │ │ ├── rrc_CUPHY_Quality_MeasConf_REQ.c │ │ ├── rrc_CUPHY_Quality_MeasMod_REQ.c │ │ ├── rrc_ILE_EF_NetPar.c │ │ ├── rrc_ILE_InterFreqCellInfoList.c │ │ ├── rrc_ILM.c │ │ ├── rrc_ILMSet.c │ │ ├── rrc_IlmAbstraction.c │ │ ├── rrc_InterLayerMsg.c │ │ ├── rrc_InterLayerMsgElement.c │ │ ├── rrc_LCSM_asst_data_IND.c │ │ ├── rrc_LCSM_meas_cmd_IND.c │ │ ├── rrc_LCSM_pos_cap_REQ.c │ │ ├── rrc_LCSM_stop_meas_IND.c │ │ ├── rrc_LCSM_sys_info_IND.c │ │ ├── rrc_MeasurementsInterLayerMsg.c │ │ ├── rrc_SIM_ReadFiles_RSP.c │ │ ├── rrc_SIM_UpdateFiles_REQ.c │ │ ├── rrc_popILM_RR.c │ │ ├── rrc_popILM_SMS.c │ │ ├── rrc_popILM_Tphy.c │ │ ├── rrc_popILM_Umac.c │ │ ├── rrc_popILM_Uphy.c │ │ ├── rrc_popILM_Urlc.c │ │ ├── rrc_popILM_Usim.c │ │ └── rrc_popILM_nas.c │ ├── MeasMgr │ ├── Code │ │ ├── Inc │ │ │ ├── rrc_EutraMeasMapper.inl │ │ │ ├── rrc_InterFMeasMapper.inl │ │ │ ├── rrc_InterRMeasMapper.inl │ │ │ └── rrc_IntraFMeasMapper.inl │ │ └── Src │ │ │ ├── rrc_CellInfoBarredList.c │ │ │ ├── rrc_DetectedSet.c │ │ │ ├── rrc_EutraCellSortLib.c │ │ │ ├── rrc_EutraFreqInfoList.c │ │ │ ├── rrc_EutraMeasMapper.c │ │ │ ├── rrc_InterFCellInfoList.c │ │ │ ├── rrc_InterFMeasMapper.c │ │ │ ├── rrc_InterFSortLib.c │ │ │ ├── rrc_InterRCellInfoList.c │ │ │ ├── rrc_InterRMeasMapper.c │ │ │ ├── rrc_IntraFCellInfoList.c │ │ │ ├── rrc_IntraFMeasMapper.c │ │ │ ├── rrc_IntraFSortLib.c │ │ │ ├── rrc_MIDMapTable.c │ │ │ ├── rrc_MeasController.c │ │ │ ├── rrc_MeasDataComposer.c │ │ │ ├── rrc_MeasIlmComposer.c │ │ │ ├── rrc_MeasResultsRACHController.c │ │ │ ├── rrc_MeasRouter.c │ │ │ ├── rrc_TimeToTrigger.c │ │ │ ├── rrc_VirtualActSet.c │ │ │ └── rrc_fsm_MeasController_GenerateFunctions.c │ ├── DlMsg │ │ └── Code │ │ │ └── Src │ │ │ ├── rrc_IEMeEutraAndUtraFreqSysInfoListExt.c │ │ │ ├── rrc_IEMeEutraFreqInfoList.c │ │ │ ├── rrc_IEMeEutraFreqInfoSysInfoList.c │ │ │ ├── rrc_IEMeEutraFreqInfoSysInfoListExt.c │ │ │ ├── rrc_IEMeEutraMeas.c │ │ │ ├── rrc_IEMeEutraMeasRepCrit.c │ │ │ ├── rrc_IEMeFachMeasOccasionInfo.c │ │ │ ├── rrc_IEMeGsmFreqInfoSysInfoList.c │ │ │ ├── rrc_IEMeIntMeas.c │ │ │ ├── rrc_IEMeIntMeasRepCrit.c │ │ │ ├── rrc_IEMeInterFreqCellInfoSysInfoList.c │ │ │ ├── rrc_IEMeInterFreqCellInfoSysInfoListExt.c │ │ │ ├── rrc_IEMeInterFreqMeas.c │ │ │ ├── rrc_IEMeInterFreqMeasRepCrit.c │ │ │ ├── rrc_IEMeInterRatCellInfoList.c │ │ │ ├── rrc_IEMeInterRatCellInfoSysInfoList.c │ │ │ ├── rrc_IEMeInterRatCellInfoSysInfoListExt.c │ │ │ ├── rrc_IEMeInterRatMeas.c │ │ │ ├── rrc_IEMeInterRatMeasRepCrit.c │ │ │ ├── rrc_IEMeIntraFreqCellInfoList.c │ │ │ ├── rrc_IEMeIntraFreqCellInfoSysInfoList.c │ │ │ ├── rrc_IEMeIntraFreqCellInfoSysInfoListExt.c │ │ │ ├── rrc_IEMeIntraFreqMeas.c │ │ │ ├── rrc_IEMeIntraFreqMeasQty.c │ │ │ ├── rrc_IEMeIntraFreqMeasRepCrit.c │ │ │ ├── rrc_IEMeIntraFreqMeasSysInfo.c │ │ │ ├── rrc_IEMeIntraFreqRepQty.c │ │ │ ├── rrc_IEMeIntraFreqRepQtyForRachRep.c │ │ │ ├── rrc_IEMeMeasCtrlSysInfo.c │ │ │ ├── rrc_IEMeMeasCtrlSysInfoExt.c │ │ │ ├── rrc_IEMeMultipleEutraFreqInfoList.c │ │ │ ├── rrc_IEMePerRepCrit.c │ │ │ ├── rrc_IEMeQualMeas.c │ │ │ ├── rrc_IEMeQualMeasRepCrit.c │ │ │ ├── rrc_IEMeRepCellStat.c │ │ │ ├── rrc_IEMeRepInfoForStateCellDch.c │ │ │ ├── rrc_IEMeTrfVolMeas.c │ │ │ ├── rrc_IEMeTrfVolMeasRepCrit.c │ │ │ ├── rrc_IEMeTrfVolMeasSysInfo.c │ │ │ ├── rrc_IEMeUePosMeas.c │ │ │ ├── rrc_IEMeUePosMeasRepCrit.c │ │ │ ├── rrc_IEMeUtraFreqInfoSysInfoList.c │ │ │ └── rrc_MsgMeasControl.c │ ├── Meas │ │ └── Code │ │ │ └── Src │ │ │ ├── rrc_EutraMeas.c │ │ │ ├── rrc_InterFMeas.c │ │ │ ├── rrc_InterFRachMeas.c │ │ │ ├── rrc_InterRMeas.c │ │ │ ├── rrc_IntraFMeas.c │ │ │ ├── rrc_IntraFRachMeas.c │ │ │ ├── rrc_Measurement.c │ │ │ ├── rrc_QualityMeas.c │ │ │ ├── rrc_RachMeas.c │ │ │ ├── rrc_TrafficVolMeas.c │ │ │ ├── rrc_UeInternalMeas.c │ │ │ └── rrc_UePositionMeas.c │ ├── Report │ │ ├── Code │ │ │ └── Src │ │ │ │ ├── rrc_EutraMeasReportCriteria.c │ │ │ │ ├── rrc_EutraRep.c │ │ │ │ ├── rrc_InterFMeasReportCriteria.c │ │ │ │ ├── rrc_InterFRachReport.c │ │ │ │ ├── rrc_InterFRep.c │ │ │ │ ├── rrc_InterRMeasReportCriteria.c │ │ │ │ ├── rrc_InterRRep.c │ │ │ │ ├── rrc_IntraFMeasReportCriteria.c │ │ │ │ ├── rrc_IntraFRachReport.c │ │ │ │ ├── rrc_IntraFRep.c │ │ │ │ ├── rrc_MeasReport.c │ │ │ │ ├── rrc_MeasReportCriteria.c │ │ │ │ ├── rrc_NoRep.c │ │ │ │ ├── rrc_PeriodicRep.c │ │ │ │ ├── rrc_QualityRep.c │ │ │ │ ├── rrc_QualityRepMeasReportCriteria.c │ │ │ │ ├── rrc_RachReport.c │ │ │ │ ├── rrc_TrafficVolMeasReportCriteria.c │ │ │ │ ├── rrc_TrafficVolRep.c │ │ │ │ ├── rrc_UEInternalMeasReportCriteria.c │ │ │ │ ├── rrc_UEInternalRep.c │ │ │ │ ├── rrc_UePositionMeasReportCriteria.c │ │ │ │ └── rrc_UePositionRep.c │ │ └── RepEvents │ │ │ ├── Code │ │ │ └── Src │ │ │ │ ├── rrc_RepEvent1a.c │ │ │ │ ├── rrc_RepEvent1b.c │ │ │ │ ├── rrc_RepEvent1c.c │ │ │ │ ├── rrc_RepEvent1d.c │ │ │ │ ├── rrc_RepEvent1e.c │ │ │ │ ├── rrc_RepEvent1f.c │ │ │ │ ├── rrc_RepEvent1g.c │ │ │ │ ├── rrc_RepEvent1h.c │ │ │ │ ├── rrc_RepEvent1i.c │ │ │ │ ├── rrc_RepEvent1j.c │ │ │ │ ├── rrc_RepEvent2a.c │ │ │ │ ├── rrc_RepEvent2b.c │ │ │ │ ├── rrc_RepEvent2c.c │ │ │ │ ├── rrc_RepEvent2d.c │ │ │ │ ├── rrc_RepEvent2e.c │ │ │ │ ├── rrc_RepEvent2f.c │ │ │ │ ├── rrc_RepEvent3a.c │ │ │ │ ├── rrc_RepEvent3b.c │ │ │ │ ├── rrc_RepEvent3c.c │ │ │ │ ├── rrc_RepEvent3d.c │ │ │ │ ├── rrc_RepEvent4a.c │ │ │ │ ├── rrc_RepEvent4b.c │ │ │ │ ├── rrc_RepEvent5a.c │ │ │ │ ├── rrc_RepEvent6a.c │ │ │ │ ├── rrc_RepEvent6b.c │ │ │ │ ├── rrc_RepEvent6c.c │ │ │ │ ├── rrc_RepEvent6d.c │ │ │ │ ├── rrc_RepEvent6e.c │ │ │ │ ├── rrc_RepEvent6f.c │ │ │ │ ├── rrc_RepEvent6g.c │ │ │ │ ├── rrc_RepEvent7a.c │ │ │ │ ├── rrc_RepEvent7c.c │ │ │ │ ├── rrc_RepEvent7d.c │ │ │ │ ├── rrc_RepEventEutra3a.c │ │ │ │ ├── rrc_RepEventEutra3b.c │ │ │ │ ├── rrc_RepEventEutra3c.c │ │ │ │ └── rrc_RepEventEutra3d.c │ │ │ └── TrigVar │ │ │ └── Code │ │ │ └── Src │ │ │ ├── rrc_Triggered1aEvent.c │ │ │ ├── rrc_Triggered1bEvent.c │ │ │ ├── rrc_Triggered1cEvent.c │ │ │ ├── rrc_Triggered1eEvent.c │ │ │ ├── rrc_Triggered1fEvent.c │ │ │ ├── rrc_Triggered1gEvent.c │ │ │ ├── rrc_Triggered1hEvent.c │ │ │ ├── rrc_Triggered1iEvent.c │ │ │ └── rrc_Triggered1jEvent.c │ └── UlMsg │ │ └── Code │ │ └── Src │ │ ├── rrc_IECellMeasuredResults.c │ │ ├── rrc_IEEutraRatEventResults.c │ │ ├── rrc_IEInterFreqEventResults.c │ │ ├── rrc_IEInterFreqEventResultsLcr.c │ │ ├── rrc_IEInterFreqMeasResultsList.c │ │ ├── rrc_IEInterRatEventResults.c │ │ ├── rrc_IEIntraFreqEventResults.c │ │ ├── rrc_IEIntraFreqMeasResultsList.c │ │ ├── rrc_IEMeResultsOnRach.c │ │ ├── rrc_IEQualityEventResults.c │ │ ├── rrc_IEQualityMeasResultsList.c │ │ ├── rrc_IETrfVolEventResults.c │ │ ├── rrc_IETrfVolMeasResultsList.c │ │ ├── rrc_IEUeInternalEventResults.c │ │ ├── rrc_IEUeInternalMeasResultsLcr.c │ │ ├── rrc_IEUePositionEventResults.c │ │ ├── rrc_IEUePositionMeasResults.c │ │ ├── rrc_MsgMeasFailure.c │ │ └── rrc_MsgMeasReport.c │ ├── Misc │ ├── Code │ │ └── Src │ │ │ ├── rrc_Asn1.c │ │ │ ├── rrc_AsstDataDeliveryCntrlMgr.c │ │ │ ├── rrc_DlUtranMsg.c │ │ │ ├── rrc_FreeList.c │ │ │ └── rrc_TrFmtCombCtrlMgr.c │ └── UeCapa │ │ └── Code │ │ ├── Inc │ │ ├── rrc_UeCapMngr.inl │ │ └── rrc_UeSysSpecificCap.inl │ │ └── Src │ │ ├── rrc_MeasCap.c │ │ ├── rrc_RlcCap.c │ │ ├── rrc_SecurityCap.c │ │ ├── rrc_UeCapMngr.c │ │ ├── rrc_UeMultiModeRat.c │ │ ├── rrc_UePosCap.c │ │ └── rrc_UeSysSpecificCap.c │ ├── ResMgr │ └── Code │ │ ├── Inc │ │ └── rrc_ResourceMgr.inl │ │ └── Src │ │ ├── rrc_ResMgrMAC.c │ │ ├── rrc_ResMgrPDCP.c │ │ ├── rrc_ResMgrPHY.c │ │ ├── rrc_ResMgrPHYConfig.c │ │ ├── rrc_ResMgrRABM.c │ │ ├── rrc_ResMgrRLC.c │ │ ├── rrc_ResourceMgr.c │ │ ├── rrc_fsm_ResMgrPHY_GenerateFunctions.c │ │ └── rrc_fsm_resourcemgr_GenerateFunctions.c │ ├── Scnx │ └── Code │ │ └── Src │ │ └── rrc_Scnx.c │ ├── Secu │ └── Code │ │ ├── Inc │ │ ├── rrc_SecurityMgr.inl │ │ └── rrc_StartValueMgr.inl │ │ └── Src │ │ ├── rrc_CipheringMgr.c │ │ ├── rrc_CntrChkMngr.c │ │ ├── rrc_CntrChkMsgHandler.c │ │ ├── rrc_DLIntegrityProt.c │ │ ├── rrc_F9.c │ │ ├── rrc_IntegrityMgr.c │ │ ├── rrc_SecurityMgr.c │ │ ├── rrc_StartValueMgr.c │ │ └── rrc_ULIntegrityProt.c │ ├── SysInfo │ └── Code │ │ └── Src │ │ ├── rrc_Bcch.c │ │ ├── rrc_Bch.c │ │ ├── rrc_InfoBlock.c │ │ ├── rrc_InfoBlock_Utility.c │ │ ├── rrc_MIB.c │ │ ├── rrc_Pccpch.c │ │ ├── rrc_SIB1.c │ │ ├── rrc_SIB11.c │ │ ├── rrc_SIB11bis.c │ │ ├── rrc_SIB12.c │ │ ├── rrc_SIB15.c │ │ ├── rrc_SIB15bis.c │ │ ├── rrc_SIB16.c │ │ ├── rrc_SIB18.c │ │ ├── rrc_SIB19.c │ │ ├── rrc_SIB2.c │ │ ├── rrc_SIB20.c │ │ ├── rrc_SIB3.c │ │ ├── rrc_SIB4.c │ │ ├── rrc_SIB5.c │ │ ├── rrc_SIB7.c │ │ ├── rrc_SIBSch.c │ │ ├── rrc_SysInfo.c │ │ ├── rrc_SysInfoFach.c │ │ ├── rrc_SysInfoMgr.c │ │ └── rrc_SysInfoReader.c │ ├── TCellSel │ └── Code │ │ └── Src │ │ ├── rrc_TDDBandCache.c │ │ ├── rrc_TDDNetworkCache.c │ │ ├── rrc_TddBplmnHandler.c │ │ ├── rrc_TddCellReselecter.c │ │ ├── rrc_TddCellSelReselInfo.c │ │ ├── rrc_TddCellSelecter.c │ │ ├── rrc_TddFrequency.c │ │ ├── rrc_TddNetwork.c │ │ ├── rrc_TddReselMeasController.c │ │ ├── rrc_TddReselRanker.c │ │ └── rrc_TddServingCellSelReselInfo.c │ ├── TaskMain │ └── Code │ │ └── Src │ │ ├── InternalMsgProcessor.c │ │ ├── InternalQ.c │ │ ├── rrc_DualModeMgr.c │ │ ├── rrc_TaskMain.c │ │ ├── rrc_system_services.c │ │ └── rrc_timers.c │ └── UtranMsg │ ├── Code │ └── Src │ │ ├── rrc_DlMsgInitialProcess.c │ │ ├── rrc_InfoElement.c │ │ ├── rrc_InfoElementType.c │ │ ├── rrc_MsgProcErrors.c │ │ ├── rrc_MsgProcHelpers.c │ │ ├── rrc_Transact.c │ │ └── rrc_UeRequest.c │ ├── Downlink │ └── Code │ │ └── Src │ │ ├── rrc_DefaultConfig14Prcocess.c │ │ ├── rrc_DefaultConfig15Prcocess.c │ │ ├── rrc_DefaultConfig16Prcocess.c │ │ ├── rrc_DefaultConfig17Prcocess.c │ │ ├── rrc_DefaultConfig18Prcocess.c │ │ ├── rrc_DefaultConfig19Prcocess.c │ │ ├── rrc_DefaultConfig20Prcocess.c │ │ ├── rrc_DefaultConfig21Prcocess.c │ │ ├── rrc_DefaultConfig22Prcocess.c │ │ ├── rrc_DefaultConfig23Prcocess.c │ │ ├── rrc_DlAddressedMsg.c │ │ ├── rrc_MsgActsetupdateProcess.c │ │ ├── rrc_MsgAssistanceDataDeliveryProcess.c │ │ ├── rrc_MsgCellChangeOrderProcess.c │ │ ├── rrc_MsgCellUpdateCnfProcess.c │ │ ├── rrc_MsgCntrChkProcess.c │ │ ├── rrc_MsgDlDtProcess.c │ │ ├── rrc_MsgDlScnxRelProcess.c │ │ ├── rrc_MsgEtwsPriNotificWithSecurityProcess.c │ │ ├── rrc_MsgHandoverFromUtranProcess.c │ │ ├── rrc_MsgHandoverToUtranProcess.c │ │ ├── rrc_MsgPagingType2Process.c │ │ ├── rrc_MsgPhyChanReconfigProcess.c │ │ ├── rrc_MsgRbControlProcess.c │ │ ├── rrc_MsgRbReconfigProcess.c │ │ ├── rrc_MsgRbReleaseProcess.c │ │ ├── rrc_MsgRbSetupProcess.c │ │ ├── rrc_MsgRrcCnxRejProcess.c │ │ ├── rrc_MsgRrcCnxRelProcess.c │ │ ├── rrc_MsgRrcCnxSetupProcess.c │ │ ├── rrc_MsgSecModeCmdProcess.c │ │ ├── rrc_MsgTrChReconfigProcess.c │ │ ├── rrc_MsgTrFmtCombCntrlAMUMProcess.c │ │ ├── rrc_MsgTrFmtCombCntrlTMProcess.c │ │ ├── rrc_MsgUeCapEnqProcess.c │ │ ├── rrc_MsgUeCapInfoCnfProcess.c │ │ ├── rrc_MsgUlPhyCHCntrlProcess.c │ │ ├── rrc_MsgUraUpdateCnfProcess.c │ │ ├── rrc_MsgUtranMobInfoProcess.c │ │ ├── rrc_PageType1.c │ │ ├── rrc_PageType2Mgr.c │ │ └── rrc_PredefConfigControl.c │ ├── IE │ ├── Phy │ │ └── Code │ │ │ └── Src │ │ │ ├── rrc_IEPhAddPrachInfo.c │ │ │ ├── rrc_IEPhDlDpchInfoCmnRlProcess.c │ │ │ ├── rrc_IEPhDlDpchInfoEachRlProcess.c │ │ │ ├── rrc_IEPhDlFdpchInfoCmnRlProcess.c │ │ │ ├── rrc_IEPhDlFdpchInfoEachRlProcess.c │ │ │ ├── rrc_IEPhDlHSPDSCHInfoProcess.c │ │ │ ├── rrc_IEPhDlHSSCCHSetInfoProcess.c │ │ │ ├── rrc_IEPhDlRlCmnInfoProcess.c │ │ │ ├── rrc_IEPhDlRlInfoProcess.c │ │ │ ├── rrc_IEPhDlSecondaryCellInfoExtnR8Process.c │ │ │ ├── rrc_IEPhDlSecondaryCellInfoProcess.c │ │ │ ├── rrc_IEPhDpchCompModeInfoProcess.c │ │ │ ├── rrc_IEPhDtxDrxInfoProcess.c │ │ │ ├── rrc_IEPhDtxDrxTimingInfoProcess.c │ │ │ ├── rrc_IEPhEdchInfoProcess.c │ │ │ ├── rrc_IEPhEdchReconfigInfoProcess.c │ │ │ ├── rrc_IEPhEdpdchInfoProcess.c │ │ │ ├── rrc_IEPhEpuchInfoProcess.c │ │ │ ├── rrc_IEPhErucchInfoProcess.c │ │ │ ├── rrc_IEPhFachPchInfo.c │ │ │ ├── rrc_IEPhFreqInfoProcess.c │ │ │ ├── rrc_IEPhHsDschCmnSysInfoProcess.c │ │ │ ├── rrc_IEPhHsDschDrxCelFachInfoProcess.c │ │ │ ├── rrc_IEPhHsscchLessInfoProcess.c │ │ │ ├── rrc_IEPhNonShGrantinfo.c │ │ │ ├── rrc_IEPhPrachSysInfo.c │ │ │ ├── rrc_IEPhRLAdditionInfoProcess.c │ │ │ ├── rrc_IEPhScndCcpchSysInfo.c │ │ │ ├── rrc_IEPhServingHsdschInfoProcess.c │ │ │ ├── rrc_IEPhTddDchMeasOccasionSeqPatternProcess.c │ │ │ ├── rrc_IEPhTddMultiFreqInfoProcess.c │ │ │ ├── rrc_IEPhUlDpchInfoProcess.c │ │ │ └── rrc_IEPhUlSecondaryCellInfoProcess.c │ ├── RB │ │ └── Code │ │ │ └── Src │ │ │ ├── rrc_IERbInfoAffProcess.c │ │ │ ├── rrc_IERbInfoReconProcess.c │ │ │ ├── rrc_IERbInfoRelProcess.c │ │ │ ├── rrc_IERbMapInfoProcess.c │ │ │ ├── rrc_IERbPdcpInfoProcess.c │ │ │ ├── rrc_IERbRabInfoReconProcess.c │ │ │ ├── rrc_IERbRabSetInfoProcess.c │ │ │ ├── rrc_IERbRlcInfoProcess.c │ │ │ ├── rrc_IERbSetInfoProcess.c │ │ │ ├── rrc_IERbSigSetInfoProcess.c │ │ │ └── rrc_IERbWithPdcpInfoProcess.c │ ├── Tr │ │ └── Code │ │ │ └── Src │ │ │ ├── rrc_IETrChAddOrReconEdchMacdFlowProcess.c │ │ │ ├── rrc_IETrChAddOrReconMacdFlowProcess.c │ │ │ ├── rrc_IETrChAddOrReconMacehsReorderingQProcess.c │ │ │ ├── rrc_IETrChDlAddOrReconInfoProcess.c │ │ │ ├── rrc_IETrChDlCmnInfoProcess.c │ │ │ ├── rrc_IETrChDlDelInfoProcess.c │ │ │ ├── rrc_IETrChHarqInfoProcess.c │ │ │ ├── rrc_IETrChUlAddOrReconInfoProcess.c │ │ │ ├── rrc_IETrChUlCmnInfoProcess.c │ │ │ ├── rrc_IETrChUlDelInfoProcess.c │ │ │ ├── rrc_IETrTfcs.c │ │ │ ├── rrc_IETrTfcsProcess.c │ │ │ ├── rrc_IETrTfs.c │ │ │ └── rrc_IETrTfsProcess.c │ ├── UE │ │ └── Code │ │ │ └── Src │ │ │ ├── rrc_IECnInfoInfoProcess.c │ │ │ ├── rrc_IECnPlmnIdProcess.c │ │ │ ├── rrc_IEUeCipherModeInfoProcess.c │ │ │ ├── rrc_IEUeInitIdProcess.c │ │ │ ├── rrc_IEUeItgChkInfo.c │ │ │ ├── rrc_IEUeItgProtModeInfoProcess.c │ │ │ └── rrc_IEUeTimersAndConstCMProcess.c │ └── UM │ │ └── Code │ │ └── Src │ │ ├── rrc_IEUmCellAccessRestr.c │ │ ├── rrc_IEUmDomainSpecificAccessRestr.c │ │ ├── rrc_IEUmPagingPermissionAccessControl.c │ │ └── rrc_IEUmSib34SelInfo.c │ └── Uplink │ └── Code │ └── Src │ ├── rrc_ActSetFailure.c │ ├── rrc_CellChangeOrderFail.c │ ├── rrc_CellUpdateReq.c │ ├── rrc_HandoverFromUtranFail.c │ ├── rrc_IdtMsg.c │ ├── rrc_InterRatHandoverInfo.c │ ├── rrc_RbReleaseCmp.c │ ├── rrc_RrcCnxRelComplete.c │ ├── rrc_RrcCnxReq.c │ ├── rrc_RrcCnxSetupComplete.c │ ├── rrc_RrcStatusMsg.c │ ├── rrc_TfCombCtrlFail.c │ ├── rrc_UeCapInfo.c │ ├── rrc_UlCapabilityMsg.c │ ├── rrc_UlDtMsg.c │ ├── rrc_UlScnxRel.c │ ├── rrc_UlUtranMsg.c │ └── rrc_UlUtranRequestMsg.c ├── LTESAE ├── L1LC │ └── Code │ │ └── src │ │ ├── L1LC_DrxController.c │ │ ├── L1LC_DsdsController.c │ │ ├── L1LC_IratController.c │ │ ├── L1LC_MbsfnController.c │ │ ├── L1LC_MsgHandler.c │ │ ├── L1LC_RstdController.c │ │ ├── L1LC_ScController.c │ │ ├── L1LC_Task.c │ │ └── L1LC_TimerController.c ├── LCommon │ └── L-Common │ │ ├── E-Framework │ │ └── TestCase │ │ │ └── Code │ │ │ └── src │ │ │ ├── ephy_LteRctTestCase.c │ │ │ └── ephy_TestCase.c │ │ ├── LteCfg │ │ └── Code │ │ │ └── src │ │ │ └── lte_cfg.c │ │ └── LteTlp │ │ └── Code │ │ └── src │ │ ├── Tlp_Ctrl_Msg_Hdlr.c │ │ ├── Tlp_Data_Msg_Hdlr.c │ │ ├── Tlp_State_Hdlr.c │ │ ├── Tlp_Task.c │ │ └── Tlp_Utils.c └── LHAL │ └── Common │ └── src │ ├── hal_drx.c │ ├── hal_dsds.c │ ├── hal_dsp.c │ ├── hal_export.c │ ├── hal_mbsfn.c │ ├── hal_msg_handler.c │ ├── hal_rf.c │ ├── hal_rf_common.c │ ├── hal_rf_gdb.c │ ├── hal_rx.c │ ├── hal_sc.c │ ├── hal_shade.c │ └── hal_tx.c ├── PALCommon └── C-Common │ ├── HALCommon │ ├── Chipset │ │ └── S5123 │ │ │ └── src │ │ │ ├── hal_common.c │ │ │ ├── hal_demod.c │ │ │ ├── hal_dmover.c │ │ │ ├── hal_infra.c │ │ │ ├── hal_lmac_3g.c │ │ │ ├── hal_lmac_4g.c │ │ │ ├── hal_marconi.c │ │ │ ├── hal_modem.c │ │ │ ├── hal_rake_3g.c │ │ │ ├── hal_rfctrl.c │ │ │ ├── hal_rfctrl_3g.c │ │ │ ├── hal_rxf.c │ │ │ ├── hal_rxf_3g.c │ │ │ ├── hal_rxf_4g.c │ │ │ ├── hal_sleep.c │ │ │ ├── hal_sleep_3gf.c │ │ │ ├── hal_srch.c │ │ │ ├── hal_srch_3g.c │ │ │ ├── hal_symbproc.c │ │ │ ├── hal_symbproc_3g.c │ │ │ ├── hal_systemtime.c │ │ │ ├── hal_systemtime_3g.c │ │ │ ├── hal_tx_common.c │ │ │ ├── hal_txf.c │ │ │ └── hw_marconi_sub6.c │ └── Common │ │ └── src │ │ └── hal_common_lmac_4g.c │ ├── PHY │ ├── APP │ │ └── NS │ │ │ ├── Common │ │ │ └── Src │ │ │ │ ├── DataLogger.c │ │ │ │ ├── dsp_Irat.c │ │ │ │ └── dsp_mspeedy.c │ │ │ ├── EDGE │ │ │ ├── BB │ │ │ │ └── Pltcode │ │ │ │ │ ├── drbsband.c │ │ │ │ │ ├── eq.c │ │ │ │ │ ├── eqTask.c │ │ │ │ │ ├── eq_utility.c │ │ │ │ │ ├── fbs.c │ │ │ │ │ ├── frbufs.c │ │ │ │ │ ├── mcamrdecode.c │ │ │ │ │ ├── mccipher.c │ │ │ │ │ ├── mcdecnbhe.c │ │ │ │ │ ├── mcdecode.c │ │ │ │ │ ├── mcformatnb.c │ │ │ │ │ ├── mcudecode.c │ │ │ │ │ ├── rxfastagc.c │ │ │ │ │ ├── rxmonitor.c │ │ │ │ │ ├── rxprimeagc.c │ │ │ │ │ ├── rxsetgain.c │ │ │ │ │ ├── rxsniff.c │ │ │ │ │ └── rxstarttx.c │ │ │ ├── HALMarconi │ │ │ │ └── Src │ │ │ │ │ └── GsmReg_Marconi.c │ │ │ ├── HALPhy │ │ │ │ └── Src │ │ │ │ │ ├── GsmReg_Adc_utility.c │ │ │ │ │ ├── GsmReg_Asip_utility.c │ │ │ │ │ ├── GsmReg_LVD_utility.c │ │ │ │ │ ├── GsmReg_eDma_utility.c │ │ │ │ │ └── GsmReg_fbrx.c │ │ │ └── RF │ │ │ │ └── Src │ │ │ │ ├── gsmrfctrl.c │ │ │ │ └── rxrcsynt.c │ │ │ ├── HSPA │ │ │ ├── HALPhy_FDD │ │ │ │ └── Src │ │ │ │ │ ├── UpHAL_HCLP_IPC.c │ │ │ │ │ ├── UpHAL_HCLP_ParamCtrl.c │ │ │ │ │ ├── UpHAL_HCLP_Type3iCon.c │ │ │ │ │ ├── UpHAL_HSPA_Interrupt.c │ │ │ │ │ └── UpHAL_HTX_PowerControl.c │ │ │ ├── HALPhy_TDD │ │ │ │ └── Src │ │ │ │ │ ├── TpHAL_tCLP_ACD.c │ │ │ │ │ ├── TpHAL_tCLP_CE.c │ │ │ │ │ ├── TpHAL_tCLP_JD.c │ │ │ │ │ ├── TpHAL_tCLP_main.c │ │ │ │ │ ├── TpHAL_tCLP_meas.c │ │ │ │ │ ├── TpHAL_tCLP_offline.c │ │ │ │ │ ├── TpHAL_tCLP_tick_ctrl.c │ │ │ │ │ ├── TpHAL_tRx_filter.c │ │ │ │ │ ├── TpHAL_thSLP_dsch_ctrl.c │ │ │ │ │ ├── TpHAL_thSLP_scch_ctrl.c │ │ │ │ │ ├── TpHAL_thspa_main.c │ │ │ │ │ ├── TpHAL_thspa_modem_irq.c │ │ │ │ │ └── TpHAL_thspa_tcu.c │ │ │ ├── L1 │ │ │ │ └── Src │ │ │ │ │ ├── HCLP_AGC_Control.c │ │ │ │ │ ├── HCLP_AssistConf.c │ │ │ │ │ ├── HCLP_CMCtrl.c │ │ │ │ │ ├── HCLP_Delay_Spread.c │ │ │ │ │ ├── HCLP_Doppler.c │ │ │ │ │ ├── HCLP_IPC.c │ │ │ │ │ ├── HCLP_MRC_Control.c │ │ │ │ │ ├── HCLP_ParamCtrl.c │ │ │ │ │ ├── HCLP_Phase_Rotator.c │ │ │ │ │ ├── HCLP_SCE_Isr.c │ │ │ │ │ ├── HCLP_SCH_IC.c │ │ │ │ │ ├── HCLP_SINR.c │ │ │ │ │ ├── HCLP_SW_TT.c │ │ │ │ │ ├── HCLP_Type3iCon.c │ │ │ │ │ ├── HSLP.c │ │ │ │ │ ├── HSLP_Config.c │ │ │ │ │ ├── HSLP_Part1.c │ │ │ │ │ ├── HSLP_Part2.c │ │ │ │ │ ├── HSPA_AckNack_PwrCtrl.c │ │ │ │ │ ├── HSPA_DM.c │ │ │ │ │ ├── HSPA_IPC.c │ │ │ │ │ ├── HSPA_Interrupt.c │ │ │ │ │ ├── HSPA_Main.c │ │ │ │ │ ├── HSPA_RegTuning.c │ │ │ │ │ ├── HSPA_ac.c │ │ │ │ │ ├── HSPA_cpc_drx.c │ │ │ │ │ ├── HSPA_power_control.c │ │ │ │ │ ├── HTX_CpcDtx.c │ │ │ │ │ ├── HTX_Hsdpcch.c │ │ │ │ │ └── HTX_Main.c │ │ │ └── L1_TDD │ │ │ │ └── Src │ │ │ │ ├── tCLP_CE_JD.c │ │ │ │ ├── tCLP_CQI.c │ │ │ │ ├── tCLP_DLQC.c │ │ │ │ ├── tCLP_EHICH.c │ │ │ │ ├── tCLP_MEAS_CID.c │ │ │ │ ├── tCLP_MEAS_SIC.c │ │ │ │ ├── tCLP_MEAS_main.c │ │ │ │ ├── tCLP_PICH.c │ │ │ │ ├── tCLP_SB.c │ │ │ │ ├── tCLP_ULPC.c │ │ │ │ ├── tRF_control.c │ │ │ │ ├── tRx_filter.c │ │ │ │ ├── tSLP.c │ │ │ │ ├── tSync_AFC.c │ │ │ │ ├── tSync_TT.c │ │ │ │ ├── tSync_srch.c │ │ │ │ ├── tTx_control.c │ │ │ │ ├── thSLP_dsch_ctrl.c │ │ │ │ ├── thSLP_tick_ctrl.c │ │ │ │ ├── thspa_dbg.c │ │ │ │ ├── thspa_ipc.c │ │ │ │ └── thspa_main.c │ │ │ ├── LTE │ │ │ └── L1 │ │ │ │ └── Src │ │ │ │ ├── LteAtiCmd.c │ │ │ │ ├── LteCa.c │ │ │ │ ├── LteCfg.c │ │ │ │ ├── LteCoMP.c │ │ │ │ ├── LteCsi.c │ │ │ │ ├── LteCsi_reportControl.c │ │ │ │ ├── LteD2D_Config.c │ │ │ │ ├── LteD2D_Ulp.c │ │ │ │ ├── LteDc.c │ │ │ │ ├── LteDemodFront.c │ │ │ │ ├── LteDm.c │ │ │ │ ├── LteDrx.c │ │ │ │ ├── LteEPdcch.c │ │ │ │ ├── LteFdp.c │ │ │ │ ├── LteFdp_aceControl.c │ │ │ │ ├── LteFdp_ceDn.c │ │ │ │ ├── LteFdp_ceEms.c │ │ │ │ ├── LteFdp_cePreproc.c │ │ │ │ ├── LteFdp_ceTi.c │ │ │ │ ├── LteFdp_ceUeRs.c │ │ │ │ ├── LteFdp_cinr.c │ │ │ │ ├── LteFdp_common.c │ │ │ │ ├── LteFdp_csiConfig.c │ │ │ │ ├── LteFdp_demap.c │ │ │ │ ├── LteFdp_doppler.c │ │ │ │ ├── LteFdp_eicic.c │ │ │ │ ├── LteFdp_iw.c │ │ │ │ ├── LteFdp_papb.c │ │ │ │ ├── LteFdp_timeControl.c │ │ │ │ ├── LteGap.c │ │ │ │ ├── LteIpcHndlr.c │ │ │ │ ├── LteMch.c │ │ │ │ ├── LteMeasure.c │ │ │ │ ├── LteModemRegister.c │ │ │ │ ├── LtePch.c │ │ │ │ ├── LtePdcch.c │ │ │ │ ├── LtePdcch_LAA.c │ │ │ │ ├── LtePdcch_csiConfig.c │ │ │ │ ├── LtePdcch_dciCalcParam.c │ │ │ │ ├── LtePdcch_mainprocessing.c │ │ │ │ ├── LtePdcch_mainprocessing_dciParser.c │ │ │ │ ├── LtePdcch_postprocessing.c │ │ │ │ ├── LtePdcch_preprocessing.c │ │ │ │ ├── LtePdcch_updateFdp.c │ │ │ │ ├── LtePdsch_calcParam.c │ │ │ │ ├── LtePdsch_common.c │ │ │ │ ├── LtePdsch_config.c │ │ │ │ ├── LtePdsch_demapCtrl.c │ │ │ │ ├── LtePdsch_dlHarq.c │ │ │ │ ├── LtePdsch_harqBufCtrl.c │ │ │ │ ├── LtePdsch_sps.c │ │ │ │ ├── LtePdsch_ttib.c │ │ │ │ ├── LtePdsch_turboCtrl.c │ │ │ │ ├── LtePdsch_ulHarq.c │ │ │ │ ├── LtePhich.c │ │ │ │ ├── LtePrach.c │ │ │ │ ├── LtePucch.c │ │ │ │ ├── LtePusch.c │ │ │ │ ├── LteRa.c │ │ │ │ ├── LteRnti.c │ │ │ │ ├── LteSi.c │ │ │ │ ├── LteSrs.c │ │ │ │ ├── LteTdp.c │ │ │ │ ├── LteTdp_afc.c │ │ │ │ ├── LteTdp_agc.c │ │ │ │ ├── LteTdp_dsestrControl.c │ │ │ │ ├── LteTdp_dsestrMeasure.c │ │ │ │ ├── LteTdp_rsrp.c │ │ │ │ ├── LteTdp_timecorr.c │ │ │ │ ├── LteTtim.c │ │ │ │ ├── LteUlp.c │ │ │ │ ├── LteUlp_rfctrl.c │ │ │ │ └── Lte_atiCmdHdlr.c │ │ │ ├── NDAS │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ └── M2S_ISR.c │ │ │ └── NR │ │ │ ├── Common │ │ │ ├── NrIsrCsi.cpp │ │ │ ├── NrIsrDemodCore.cpp │ │ │ ├── NrIsrDemodSub.cpp │ │ │ ├── NrIsrHarq.cpp │ │ │ ├── NrIsrSP.cpp │ │ │ ├── NrIsrTti.cpp │ │ │ ├── NrIsrTx.cpp │ │ │ ├── NrMutex.cpp │ │ │ └── NrTickGen.cpp │ │ │ ├── HALDev │ │ │ ├── CSI │ │ │ │ ├── NrCsiDbDev.cpp │ │ │ │ ├── NrCsiDev.cpp │ │ │ │ ├── NrCsiMdDev.cpp │ │ │ │ ├── NrCsiMsDev.cpp │ │ │ │ └── NrCsiRpDev.cpp │ │ │ ├── DemodSub │ │ │ │ └── NrDsDev.cpp │ │ │ ├── HBF │ │ │ │ ├── NrHbfDbDev.cpp │ │ │ │ ├── NrHbfDev.cpp │ │ │ │ └── NrHbfScheDev.cpp │ │ │ ├── SymbProc │ │ │ │ ├── NrSpCchDev.cpp │ │ │ │ ├── NrSpDbDev.cpp │ │ │ │ ├── NrSpDciparserDev.cpp │ │ │ │ ├── NrSpDev.cpp │ │ │ │ ├── NrSpDevIPCTask.cpp │ │ │ │ ├── NrSpPostschDev.cpp │ │ │ │ ├── NrSpSchDecDev.cpp │ │ │ │ ├── NrSpSchPreprocDev.cpp │ │ │ │ └── NrSpUlgrantDev.cpp │ │ │ ├── TTI │ │ │ │ ├── NrTtiDbDev.cpp │ │ │ │ └── NrTtiDev.cpp │ │ │ └── TX │ │ │ │ ├── NrTxChPrachDev.cpp │ │ │ │ ├── NrTxChPucchDev.cpp │ │ │ │ ├── NrTxChPuschDev.cpp │ │ │ │ ├── NrTxChSrsDev.cpp │ │ │ │ ├── NrTxDbDev.cpp │ │ │ │ ├── NrTxDev.cpp │ │ │ │ └── NrTxFeDev.cpp │ │ │ ├── HALProc │ │ │ └── Phy │ │ │ │ ├── NrPhyBwpProc.cpp │ │ │ │ ├── NrPhyCaProc.cpp │ │ │ │ ├── NrPhyCdrxProc.cpp │ │ │ │ ├── NrPhyCellGroupCfgProc.cpp │ │ │ │ ├── NrPhyCsiProc.cpp │ │ │ │ ├── NrPhyGapProc.cpp │ │ │ │ ├── NrPhyMeasProc.cpp │ │ │ │ ├── NrPhyMibProc.cpp │ │ │ │ ├── NrPhyNtmProc.cpp │ │ │ │ ├── NrPhyPchProc.cpp │ │ │ │ ├── NrPhyPllProc.cpp │ │ │ │ ├── NrPhyQsleepProc.cpp │ │ │ │ ├── NrPhyRaProc.cpp │ │ │ │ ├── NrPhyRntiProc.cpp │ │ │ │ ├── NrPhyRxSchedulerProc.cpp │ │ │ │ ├── NrPhyRxSlotCfgProc.cpp │ │ │ │ ├── NrPhyRxmodeProc.cpp │ │ │ │ ├── NrPhySiProc.cpp │ │ │ │ ├── NrPhyTdpCfgProc.cpp │ │ │ │ ├── NrPhyTestProc.cpp │ │ │ │ ├── NrPhyTxAgent.cpp │ │ │ │ ├── NrPhyTxChCtrlr.cpp │ │ │ │ ├── NrPhyTxDb.cpp │ │ │ │ ├── NrPhyTxProc.cpp │ │ │ │ ├── NrPhyTxScheduler.cpp │ │ │ │ └── NrPhyUlCmdProc.cpp │ │ │ ├── IPCHndlr │ │ │ └── NrRcvIpcHndlr.cpp │ │ │ └── PhyHal │ │ │ └── S5123 │ │ │ ├── DemodCore │ │ │ ├── CE │ │ │ │ ├── NrDcCeChbHal.cpp │ │ │ │ ├── NrDcCeDnHal.cpp │ │ │ │ ├── NrDcCeHal.cpp │ │ │ │ ├── NrDcCeNcalHal.cpp │ │ │ │ ├── NrDcCePpHal.cpp │ │ │ │ ├── NrDcCeSsbHal.cpp │ │ │ │ └── NrDcCeWmgHal.cpp │ │ │ ├── NrDcCchsetdecinfoHal.cpp │ │ │ ├── NrDcDbHal.cpp │ │ │ ├── NrDcDdHal.cpp │ │ │ ├── NrDcHal.cpp │ │ │ ├── NrDcHalBackgroundTask.cpp │ │ │ ├── NrDcIwHal.cpp │ │ │ ├── NrDcSfHal.cpp │ │ │ └── NrDcSinrHal.cpp │ │ │ ├── DemodFront │ │ │ ├── NrDfDbHal.cpp │ │ │ ├── NrDfFdbufHal.cpp │ │ │ ├── NrDfHal.cpp │ │ │ └── NrDfTdbufHal.cpp │ │ │ ├── DemodSub │ │ │ ├── NrDsAfcHal.cpp │ │ │ ├── NrDsAgcHal.cpp │ │ │ ├── NrDsCteHal.cpp │ │ │ ├── NrDsHal.cpp │ │ │ ├── NrDsQsleepHal.cpp │ │ │ ├── NrDsStrCalHal.cpp │ │ │ └── NrDsStrCtrlHal.cpp │ │ │ ├── Meas │ │ │ ├── NrMeasResHal.cpp │ │ │ └── NrMeasScheHal.cpp │ │ │ ├── SymbProc │ │ │ ├── NrSpHal.cpp │ │ │ ├── NrSpHarqbufHal.cpp │ │ │ ├── NrSpSchDecHal.cpp │ │ │ └── NrSpSchDemapHal.cpp │ │ │ └── TTI │ │ │ └── NrTtiHal.cpp │ └── SPL │ │ ├── HAL │ │ └── S5123 │ │ │ └── Device │ │ │ └── Src │ │ │ └── PHYD_PhyD.c │ │ └── SPLM │ │ ├── Driver │ │ └── DebugUtility │ │ │ └── PerformanceProfiler │ │ │ └── Src │ │ │ └── PHYP_IdleRatio.c │ │ └── PLK │ │ └── Src │ │ ├── PHYP_Deprecated.c │ │ ├── PHYP_ModemIrq.c │ │ └── PHYP_Service.c │ ├── PHY_IPC │ ├── CHIPSET │ │ └── S5123 │ │ │ └── Platform │ │ │ └── Src │ │ │ ├── ASIP_LoadImage.c │ │ │ ├── PHYP_CMU.c │ │ │ ├── PHYP_DataMover.c │ │ │ ├── PHYP_LoadImage.c │ │ │ ├── PHYP_SubDataMover.c │ │ │ ├── PHYP_Subsys_CrtlDSP.c │ │ │ ├── PHYP_Subsys_PreStartup.c │ │ │ ├── frmcu.c │ │ │ └── frpkiact.c │ ├── MCU │ │ └── RatIPC │ │ │ └── Src │ │ │ ├── frGsmInit.c │ │ │ └── frbufc.c │ └── PhyAsyncIPC │ │ └── Code │ │ └── Src │ │ ├── PHY_IPC_CircularBuffer.c │ │ └── PHY_IPC_Monitoring.c │ ├── StackCommon │ └── Common │ │ └── Code │ │ └── src │ │ ├── Qna_Db.c │ │ ├── StackCommon.c │ │ ├── Tcs_LteBandConfiguration.c │ │ ├── smpfp_AsnCodecInterface.c │ │ ├── supportedbands_for_ca.c │ │ └── supportedbands_for_mcc.c │ └── VCG │ └── Sve │ └── src │ ├── EvsRXlib.c │ ├── bitstream_fx.c │ ├── jbm_jb4_inputbuffer.c │ ├── jbm_jb4sb.c │ └── jbm_pcmdsp_apa.c ├── PSS ├── DataStack │ └── BSD │ │ ├── CORE │ │ └── Code │ │ │ ├── inc │ │ │ └── sys │ │ │ │ ├── mbuf.h │ │ │ │ └── sockbuf.h │ │ │ └── src │ │ │ ├── common │ │ │ ├── Lte_if.c │ │ │ ├── domain.c │ │ │ ├── sock_if.c │ │ │ ├── uipc_mbuf.c │ │ │ ├── uipc_sockbuf.c │ │ │ └── uipc_socket.c │ │ │ ├── inet │ │ │ ├── if.c │ │ │ ├── if_ether.c │ │ │ ├── if_llatbl.c │ │ │ ├── if_loop.c │ │ │ ├── igmp.c │ │ │ ├── in.c │ │ │ ├── in_mcast.c │ │ │ ├── in_pcb.c │ │ │ ├── ip_encap.c │ │ │ ├── ip_icmp.c │ │ │ ├── ip_if.c │ │ │ ├── ip_input.c │ │ │ ├── ip_options.c │ │ │ ├── ip_output.c │ │ │ ├── ip_reass.c │ │ │ ├── radix.c │ │ │ ├── raw_cb.c │ │ │ ├── raw_ip.c │ │ │ ├── raw_usrreq.c │ │ │ ├── route.c │ │ │ └── rtsock.c │ │ │ ├── inet6 │ │ │ ├── frag6.c │ │ │ ├── icmp6.c │ │ │ ├── in6.c │ │ │ ├── in6_ifattach.c │ │ │ ├── in6_mcast.c │ │ │ ├── in6_pcb.c │ │ │ ├── in6_src.c │ │ │ ├── ip6_forward.c │ │ │ ├── ip6_input.c │ │ │ ├── ip6_output.c │ │ │ ├── nd6.c │ │ │ ├── nd6_nbr.c │ │ │ ├── nd6_rtr.c │ │ │ ├── raw_ip6.c │ │ │ └── scope6.c │ │ │ ├── tcp │ │ │ ├── tcp_hostcache.c │ │ │ ├── tcp_input.c │ │ │ ├── tcp_output.c │ │ │ ├── tcp_reass.c │ │ │ ├── tcp_subr.c │ │ │ ├── tcp_syncache.c │ │ │ ├── tcp_timer.c │ │ │ ├── tcp_timewait.c │ │ │ └── tcp_usrreq.c │ │ │ └── udp │ │ │ ├── udp6_usrreq.c │ │ │ └── udp_usrreq.c │ │ └── SDS │ │ └── Code │ │ └── src │ │ ├── SDS_DebugTrace.c │ │ ├── SDS_keep_alive.c │ │ ├── SDS_mux_packet_filter.c │ │ ├── SDS_osal_semaphore.c │ │ ├── SDS_task.c │ │ └── SDS_timer_api.c ├── HEDGESpecific │ ├── LCSM │ │ └── Code │ │ │ └── Src │ │ │ ├── lcsm_assist_data.c │ │ │ ├── lcsm_bcm_assist.c │ │ │ ├── lcsm_main.c │ │ │ ├── lcsm_meas_handler.c │ │ │ ├── lcsm_sipc.c │ │ │ ├── lcsm_timer.c │ │ │ └── lcsm_utilities.c │ └── LCSMCommon │ │ └── RrlpMsg │ │ └── ArmCortexRel7 │ │ └── Src │ │ └── Rrlp_Codec.c ├── LTESpecific │ └── SRoHC │ │ └── Code │ │ ├── Inc │ │ ├── RohcDeCompRModeState.h │ │ └── RohcManager.h │ │ └── Src │ │ ├── RohcApi.cpp │ │ ├── RohcBearerConfig.cpp │ │ ├── RohcCompContextDb.cpp │ │ ├── RohcCompContextOfRbId.cpp │ │ ├── RohcCompFlowIdentifier.cpp │ │ ├── RohcCompIpIrDynPktBldr.cpp │ │ ├── RohcCompIpIrPktBldr.cpp │ │ ├── RohcCompIpR0CrcPktBldr.cpp │ │ ├── RohcCompIpR0PktBldr.cpp │ │ ├── RohcCompIpR1PktBldr.cpp │ │ ├── RohcCompIpUo0PktBldr.cpp │ │ ├── RohcCompIpUo1PktBldr.cpp │ │ ├── RohcCompIpUor2PktBldr.cpp │ │ ├── RohcCompIpV4PktDecider.cpp │ │ ├── RohcCompIpV6PktDecider.cpp │ │ ├── RohcCompModeState.cpp │ │ ├── RohcCompOModeFOState.cpp │ │ ├── RohcCompOModeIRState.cpp │ │ ├── RohcCompOModeSOState.cpp │ │ ├── RohcCompOModeState.cpp │ │ ├── RohcCompPktDecider.cpp │ │ ├── RohcCompPktDeciderCommon.cpp │ │ ├── RohcCompRModeFOState.cpp │ │ ├── RohcCompRModeIRState.cpp │ │ ├── RohcCompRModeSOState.cpp │ │ ├── RohcCompRModeState.cpp │ │ ├── RohcCompRtpContextUpdate.cpp │ │ ├── RohcCompRtpIrDynPktBldr.cpp │ │ ├── RohcCompRtpIrPktBldr.cpp │ │ ├── RohcCompRtpR0CrcPktBldr.cpp │ │ ├── RohcCompRtpR0PktBldr.cpp │ │ ├── RohcCompRtpR1IdPktBldr.cpp │ │ ├── RohcCompRtpR1PktBldr.cpp │ │ ├── RohcCompRtpR1TsPktBldr.cpp │ │ ├── RohcCompRtpUo0PktBldr.cpp │ │ ├── RohcCompRtpUo1IdPktBldr.cpp │ │ ├── RohcCompRtpUo1PktBldr.cpp │ │ ├── RohcCompRtpUo1TsPktBldr.cpp │ │ ├── RohcCompRtpUor2IdPktBldr.cpp │ │ ├── RohcCompRtpUor2PktBldr.cpp │ │ ├── RohcCompRtpUor2TsPktBldr.cpp │ │ ├── RohcCompRtpV4PktDecider.cpp │ │ ├── RohcCompRtpV6PktDecider.cpp │ │ ├── RohcCompUModeFOState.cpp │ │ ├── RohcCompUModeIRState.cpp │ │ ├── RohcCompUModeSOState.cpp │ │ ├── RohcCompUModeState.cpp │ │ ├── RohcCompUdpContextUpdate.cpp │ │ ├── RohcCompUdpIrDynPktBldr.cpp │ │ ├── RohcCompUdpIrPktBldr.cpp │ │ ├── RohcCompUdpR0CrcPktBldr.cpp │ │ ├── RohcCompUdpR0PktBldr.cpp │ │ ├── RohcCompUdpR1PktBldr.cpp │ │ ├── RohcCompUdpUo0PktBldr.cpp │ │ ├── RohcCompUdpUo1PktBldr.cpp │ │ ├── RohcCompUdpUor2PktBldr.cpp │ │ ├── RohcCompUdpV4PktDecider.cpp │ │ ├── RohcCompUdpV6PktDecider.cpp │ │ ├── RohcCompUnCompIrPktBldr.cpp │ │ ├── RohcCompUnCompNorPktBldr.cpp │ │ ├── RohcCompUnCompPktDecider.cpp │ │ ├── RohcContextUpdate.cpp │ │ ├── RohcCrc.cpp │ │ ├── RohcDeCompContextDb.cpp │ │ ├── RohcDeCompContextOfRbId.cpp │ │ ├── RohcDeCompIpIrDynPktDecoder.cpp │ │ ├── RohcDeCompIpIrPktDecoder.cpp │ │ ├── RohcDeCompIpPktDecoder.cpp │ │ ├── RohcDeCompIpPktTypeDecoder.cpp │ │ ├── RohcDeCompIpR0CrcPktDecoder.cpp │ │ ├── RohcDeCompIpR0PktDecoder.cpp │ │ ├── RohcDeCompIpR1PktDecoder.cpp │ │ ├── RohcDeCompIpUo0PktDecoder.cpp │ │ ├── RohcDeCompIpUo1PktDecoder.cpp │ │ ├── RohcDeCompIpUor2PktDecoder.cpp │ │ ├── RohcDeCompModeState.cpp │ │ ├── RohcDeCompOModeFcState.cpp │ │ ├── RohcDeCompOModeNcState.cpp │ │ ├── RohcDeCompOModeScState.cpp │ │ ├── RohcDeCompPktDecoder.cpp │ │ ├── RohcDeCompPktTypeDecoder.cpp │ │ ├── RohcDeCompRModeFcState.cpp │ │ ├── RohcDeCompRModeNcState.cpp │ │ ├── RohcDeCompRModeScState.cpp │ │ ├── RohcDeCompRModeState.cpp │ │ ├── RohcDeCompRtpIrDynPktDecoder.cpp │ │ ├── RohcDeCompRtpIrPktDecoder.cpp │ │ ├── RohcDeCompRtpPktDecoder.cpp │ │ ├── RohcDeCompRtpPktTypeDecoder.cpp │ │ ├── RohcDeCompRtpR0CrcPktDecoder.cpp │ │ ├── RohcDeCompRtpR0PktDecoder.cpp │ │ ├── RohcDeCompRtpR1IdPktDecoder.cpp │ │ ├── RohcDeCompRtpR1PktDecoder.cpp │ │ ├── RohcDeCompRtpR1TsPktDecoder.cpp │ │ ├── RohcDeCompRtpUo0PktDecoder.cpp │ │ ├── RohcDeCompRtpUo1IdPktDecoder.cpp │ │ ├── RohcDeCompRtpUo1PktDecoder.cpp │ │ ├── RohcDeCompRtpUo1TsPktDecoder.cpp │ │ ├── RohcDeCompRtpUor2IdPktDecoder.cpp │ │ ├── RohcDeCompRtpUor2PktDecoder.cpp │ │ ├── RohcDeCompRtpUor2TsPktDecoder.cpp │ │ ├── RohcDeCompUModeFcState.cpp │ │ ├── RohcDeCompUModeNcState.cpp │ │ ├── RohcDeCompUdpIrDynPktDecoder.cpp │ │ ├── RohcDeCompUdpIrPktDecoder.cpp │ │ ├── RohcDeCompUdpPktDecoder.cpp │ │ ├── RohcDeCompUdpPktTypeDecoder.cpp │ │ ├── RohcDeCompUdpR0CrcPktDecoder.cpp │ │ ├── RohcDeCompUdpR0PktDecoder.cpp │ │ ├── RohcDeCompUdpR1PktDecoder.cpp │ │ ├── RohcDeCompUdpUo0PktDecoder.cpp │ │ ├── RohcDeCompUdpUo1PktDecoder.cpp │ │ ├── RohcDeCompUdpUor2PktDecoder.cpp │ │ ├── RohcDeCompUnCompIrPktDecoder.cpp │ │ ├── RohcDeCompUnCompNorPktDecoder.cpp │ │ ├── RohcDeCompUnCompPktTypeDecoder.cpp │ │ ├── RohcFeedBackHdlr.cpp │ │ ├── RohcManager.cpp │ │ ├── RohcPacketBuilder.cpp │ │ ├── RohcPacketCommon.cpp │ │ ├── RohcTimers.cpp │ │ └── RohcUtility.cpp ├── PSSExport │ └── BDA_Configs_exportH.h └── StackService │ ├── CNS │ ├── AsSap │ │ └── Code │ │ │ └── Src │ │ │ ├── assap_main.c │ │ │ ├── ns_AsFreeMsg.c │ │ │ ├── ns_ServiceHandlerCtm.c │ │ │ ├── ns_ServiceHandlerMtm.c │ │ │ ├── ns_ServiceHandlerNrRrc.c │ │ │ ├── ns_ServiceHandlerRr.c │ │ │ ├── ns_ServiceHandlerRrc.c │ │ │ └── ns_ServiceHandlerUrrc.c │ ├── CcSsSap │ │ └── Code │ │ │ └── Src │ │ │ ├── ccsssap_main.c │ │ │ ├── ns_CcSsFreeMsg.c │ │ │ ├── ns_ServiceHandlerCc.c │ │ │ ├── ns_ServiceHandlerCdh.c │ │ │ ├── ns_ServiceHandlerImsCc.c │ │ │ ├── ns_ServiceHandlerLPP.c │ │ │ ├── ns_ServiceHandlerSs.c │ │ │ ├── ns_ServiceHandlerVcg.c │ │ │ └── ns_ServiceHandlerlcsm.c │ ├── Common │ │ └── Code │ │ │ └── Src │ │ │ ├── ns_Codec.c │ │ │ ├── ns_Conf.c │ │ │ ├── ns_Diag.c │ │ │ ├── ns_GeneralState.c │ │ │ ├── ns_InterfaceMgr.c │ │ │ ├── ns_Main.c │ │ │ ├── ns_MsgHandler.c │ │ │ ├── ns_MsgInstance.c │ │ │ ├── ns_OsInterface.c │ │ │ ├── ns_Router.c │ │ │ ├── ns_SidManager.c │ │ │ ├── ns_SimUtilities.c │ │ │ ├── ns_StateMgr.c │ │ │ ├── ns_TIDTable.c │ │ │ ├── ns_Timer.c │ │ │ ├── ns_Utils.c │ │ │ └── ns_api.c │ ├── DbgSap │ │ └── Code │ │ │ └── Src │ │ │ ├── dbgsap_main.c │ │ │ ├── ns_DmEdgeInterface.c │ │ │ ├── ns_DmHspaInterface.c │ │ │ ├── ns_DmLteInterface.c │ │ │ ├── ns_ServiceHandlerDbg.c │ │ │ ├── ns_ServiceHandlerDmCommon.c │ │ │ └── ns_ServiceHandlerDmLte.c │ ├── RegSap │ │ └── Code │ │ │ └── Src │ │ │ ├── ns_NetworkName.c │ │ │ ├── ns_RegFreeMsg.c │ │ │ ├── ns_RegProcess.c │ │ │ ├── ns_ServiceHandlerEmm.c │ │ │ ├── ns_ServiceHandlerMmc.c │ │ │ ├── ns_ServiceHandlerNet.c │ │ │ ├── ns_ServiceHandlerNs.c │ │ │ ├── ns_ServiceHandlerPdnmgr.c │ │ │ ├── ns_UIStateMgr.c │ │ │ └── regsap_main.c │ ├── SimSap │ │ └── Code │ │ │ └── Src │ │ │ ├── ns_ServiceHandlerPbm.c │ │ │ ├── ns_ServiceHandlerSat.c │ │ │ ├── ns_ServiceHandlerUsim.c │ │ │ ├── ns_SimFreeMsg.c │ │ │ └── simsap_main.c │ └── SmsSap │ │ └── Code │ │ └── Src │ │ ├── ns_DcsUtilities.c │ │ ├── ns_ServiceHandlerSmsUsimIntf.c │ │ ├── ns_ServiceHandlerSmscb.c │ │ ├── ns_SmsFreeMsg.c │ │ ├── ns_SmscbUtilities.c │ │ └── smssap_main.c │ ├── GMC │ ├── GmcExt │ │ └── code │ │ │ └── src │ │ │ └── Gmc_Api.c │ ├── GmcF │ │ └── code │ │ │ └── src │ │ │ ├── Gmc_BuildCfg.c │ │ │ ├── Gmc_Config.c │ │ │ ├── Gmc_ContextInfo.c │ │ │ ├── Gmc_EventBus.c │ │ │ ├── Gmc_MsgIf.c │ │ │ ├── Gmc_Registry.c │ │ │ ├── Gmc_TaskEntry.c │ │ │ ├── Gmc_TcsOption.c │ │ │ ├── Gmc_Timer.c │ │ │ ├── Gmc_TimerHandler.c │ │ │ ├── Gmc_TraceLog.c │ │ │ └── Gmc_Utilities.c │ ├── GmcM │ │ └── code │ │ │ └── src │ │ │ ├── GmcM_Main.c │ │ │ ├── Gmc_DsDsManagement.c │ │ │ ├── Gmc_DsDsMsgHandler.c │ │ │ ├── Gmc_SrncMsgHandler.c │ │ │ ├── Mmc_CommMsgHandler.c │ │ │ ├── Mmc_HedgeMsgDescription.c │ │ │ ├── Mmc_HedgeMsgHandler.c │ │ │ ├── Mmc_LteMsgHandler.c │ │ │ ├── Mmc_NrMsgHandler.c │ │ │ ├── Mmc_PssMsgHandler.c │ │ │ ├── Plmn_CommMsgHandler.c │ │ │ ├── Plmn_CsgMsgHandler.c │ │ │ ├── Plmn_HedgeMsgHandler.c │ │ │ ├── Plmn_LteMsgHandler.c │ │ │ ├── Plmn_NrMsgHandler.c │ │ │ ├── Plmn_PssMsgHandler.c │ │ │ └── plmn_SimMsgHandler.c │ ├── MMC │ │ └── code │ │ │ └── src │ │ │ ├── Mmc_ActionAfter.c │ │ │ ├── Mmc_Common.c │ │ │ ├── Mmc_ContextInfo.c │ │ │ ├── Mmc_Csfb.c │ │ │ ├── Mmc_IratMobility2.c │ │ │ ├── Mmc_Main.c │ │ │ ├── Mmc_RatModeCoordination.c │ │ │ └── Mmc_SuspendResume.c │ └── PLMN │ │ └── Code │ │ └── Src │ │ ├── plmn_Bplmn.c │ │ ├── plmn_CommControl.c │ │ ├── plmn_Csfb.c │ │ ├── plmn_Csg.c │ │ ├── plmn_Database │ │ ├── plmn_CsgDatabase.c │ │ ├── plmn_Database.c │ │ ├── plmn_Database1.c │ │ ├── plmn_Database2.c │ │ ├── plmn_Database3.c │ │ ├── plmn_Database4.c │ │ ├── plmn_Database5.c │ │ └── plmn_PrioritiseAvailPlmnList.c │ │ ├── plmn_Debug.c │ │ ├── plmn_Display.c │ │ ├── plmn_DivDupControl.c │ │ ├── plmn_DsDsManagement.c │ │ ├── plmn_GapiIntfManagement.c │ │ ├── plmn_Main.c │ │ ├── plmn_MmIntfMgmt.c │ │ ├── plmn_NetworkScan.c │ │ ├── plmn_PerformActions │ │ ├── plmn_ChangeEnsRatMode.c │ │ ├── plmn_EutraDisable.c │ │ ├── plmn_InternalModeChange.c │ │ ├── plmn_IratMobility.c │ │ ├── plmn_PerformActions.c │ │ ├── plmn_PerformEmergencyCall.c │ │ ├── plmn_PerformPlmnRecoveryActions.c │ │ ├── plmn_PerformPlmnSearchFailIndAction.c │ │ ├── plmn_PerformTimerActions.c │ │ ├── plmn_RatChange.c │ │ ├── plmn_RatResumeSuspendCnf.c │ │ ├── plmn_RoamingOptimization.c │ │ └── plmn_RrReleaseAction.c │ │ ├── plmn_PerformPlmnAction │ │ ├── plmn_AttachTauRauAction.c │ │ ├── plmn_AuthRejAction.c │ │ ├── plmn_CellIndAction.c │ │ ├── plmn_DetachAction.c │ │ ├── plmn_LocationUpdateAction.c │ │ ├── plmn_LossOfCoverageAction.c │ │ ├── plmn_MiscActions.c │ │ ├── plmn_NetworkRejectCauseAction.c │ │ ├── plmn_PerformPlmnActions.c │ │ ├── plmn_PlmnActionCommon.c │ │ ├── plmn_ReleaseAction.c │ │ └── plmn_ServiceRejAction.c │ │ ├── plmn_PlmnOperatingMode.c │ │ ├── plmn_PlmnSelectionMode.c │ │ ├── plmn_SaveRcvdPlmnList.c │ │ ├── plmn_SelectionMgmt │ │ ├── plmn_BeginPlmnSelectionProcedure.c │ │ ├── plmn_DetermineNextPlmnSelection.c │ │ ├── plmn_ProcessPlmnHPPlmnSearch.c │ │ ├── plmn_ProcessPlmnListReq.c │ │ ├── plmn_ProcessPlmnSearchFailInd.c │ │ ├── plmn_ProcessPlmnSelectionAfterNetworkReject.c │ │ ├── plmn_ProcessPlmnSelectionReq.c │ │ └── plmn_SelectionMgmt.c │ │ ├── plmn_SimData.c │ │ ├── plmn_TbNoti.c │ │ ├── plmn_Timer.c │ │ └── plmn_Utilities.c │ ├── MMC_IF │ └── code │ │ └── src │ │ ├── Mmc_If_3GMsg.c │ │ ├── Mmc_If_Common.c │ │ ├── Mmc_If_EmmMsg.c │ │ ├── Mmc_If_GmcMsg.c │ │ ├── Mmc_If_LteMsg.c │ │ ├── Mmc_If_Main.c │ │ ├── Mmc_If_MmMsg.c │ │ ├── Mmc_If_NrMsg.c │ │ ├── Mmc_If_NsMsg.c │ │ └── Mmc_If_TraceLog.c │ ├── PBM │ └── Code │ │ └── Src │ │ ├── pbm_Cache.c │ │ ├── pbm_ClientIntfManagement.c │ │ ├── pbm_ContextDef.c │ │ ├── pbm_Init.c │ │ ├── pbm_InternalManagement.c │ │ ├── pbm_PbHandler.c │ │ ├── pbm_UsatIntfManagement.c │ │ ├── pbm_UsimIntfManagment.c │ │ ├── pbm_Utility.c │ │ └── pbm_main.c │ ├── SMS │ └── Code │ │ └── Src │ │ ├── sms_CellBroadcast.c │ │ ├── sms_CellBroadcastDb.c │ │ ├── sms_CodeId.c │ │ ├── sms_GapiIntfManagement.c │ │ ├── sms_Main.c │ │ ├── sms_MmConManagement.c │ │ ├── sms_MobileOriginated.c │ │ ├── sms_MobileTerminated.c │ │ ├── sms_PduCodec.c │ │ ├── sms_Session.c │ │ ├── sms_TimerManagement.c │ │ └── sms_Utilities.c │ ├── SRM │ ├── Code │ │ └── Src │ │ │ ├── SRM_CTimer.cpp │ │ │ ├── SRM_IncomingMsgHandler.c │ │ │ ├── SRM_OperatorSpecific.c │ │ │ ├── SRM_OutgoingMsgHandler.c │ │ │ ├── SRM_TCPIP_Interface.c │ │ │ ├── SRM_Task.c │ │ │ └── SRM_VCG_Interface.c │ └── Lib │ │ ├── Inc │ │ └── SRM_CSrtpAuthenticationTransform.h │ │ └── Src │ │ ├── SRM_CCodecInfo.cpp │ │ ├── SRM_CExtendedReportBlock.cpp │ │ ├── SRM_CIpInfo.cpp │ │ ├── SRM_CReportBlock.cpp │ │ ├── SRM_CRtcpAppCodecControlRequestData.cpp │ │ ├── SRM_CRtcpAppCodecModeRequest.cpp │ │ ├── SRM_CRtcpAppEvsAmrWbIoToEvsPrimary.cpp │ │ ├── SRM_CRtcpAppEvsBandwidthRequest.cpp │ │ ├── SRM_CRtcpAppEvsChannelAwareRequest.cpp │ │ ├── SRM_CRtcpAppEvsPrimaryRateRequest.cpp │ │ ├── SRM_CRtcpAppEvsPrimaryToEvsAmrWbIo.cpp │ │ ├── SRM_CRtcpAppFrameAggregationRequest.cpp │ │ ├── SRM_CRtcpAppPacket.cpp │ │ ├── SRM_CRtcpAppRedundancyRequest.cpp │ │ ├── SRM_CRtcpByePacket.cpp │ │ ├── SRM_CRtcpPacket.cpp │ │ ├── SRM_CRtcpRrPacket.cpp │ │ ├── SRM_CRtcpScheduler.cpp │ │ ├── SRM_CRtcpSdesPacket.cpp │ │ ├── SRM_CRtcpSrPacket.cpp │ │ ├── SRM_CRtcpXrPacket.cpp │ │ ├── SRM_CRtpHeader.cpp │ │ ├── SRM_CRtpPayload.cpp │ │ ├── SRM_CRtpPayloadAmrNb.cpp │ │ ├── SRM_CRtpPayloadAmrWb.cpp │ │ ├── SRM_CRtpPayloadDtmf.cpp │ │ ├── SRM_CRtpPayloadEvs.cpp │ │ ├── SRM_CRtpPayloadT140.cpp │ │ ├── SRM_CRtpPayloadT140ForRtt.cpp │ │ ├── SRM_CRtpRedundantAudioData.cpp │ │ ├── SRM_CRtpSession.cpp │ │ ├── SRM_CRtpStatistic.cpp │ │ ├── SRM_CSrcIdEntry.cpp │ │ ├── SRM_CSrcIdTable.cpp │ │ ├── SRM_CSrtcpContext.cpp │ │ ├── SRM_CSrtcpContextRecv.cpp │ │ ├── SRM_CSrtcpContextSend.cpp │ │ ├── SRM_CSrtpAuthenticationTransform.cpp │ │ ├── SRM_CSrtpContext.cpp │ │ ├── SRM_CSrtpContextRecv.cpp │ │ ├── SRM_CSrtpContextSend.cpp │ │ ├── SRM_CSrtpEncrAesInCounterMode.cpp │ │ ├── SRM_CSrtpEncryptionTransform.cpp │ │ ├── SRM_CSsrcManager.cpp │ │ ├── SRM_CTransport.cpp │ │ └── SRM_MultimediaSession.cpp │ ├── SR_IF │ ├── SRL1RC │ │ └── Code │ │ │ └── Src │ │ │ ├── srl1rc_Client.c │ │ │ ├── srl1rc_ClientDB.c │ │ │ ├── srl1rc_Common.c │ │ │ ├── srl1rc_ConflictResolver.c │ │ │ ├── srl1rc_DualRadioManager.c │ │ │ ├── srl1rc_L1Interface.c │ │ │ ├── srl1rc_ResourceManager.c │ │ │ └── srl1rc_TimeKeeper.c │ ├── SRNC │ │ └── Code │ │ │ └── Src │ │ │ ├── Srnc_EventHandler.c │ │ │ └── srnc.c │ ├── SRRC │ │ ├── SrrcBoundary │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ └── Srrc_Bound.c │ │ ├── SrrcClientDb │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── Srrc_ClientDb.c │ │ │ │ └── Srrc_ClientDbMgr.c │ │ ├── SrrcCommon │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── Srrc_EventHandler.c │ │ │ │ ├── Srrc_FsmMgr.c │ │ │ │ ├── Srrc_InternalQ.c │ │ │ │ └── Srrc_TimerPool.c │ │ ├── SrrcConflictResolver │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── Srrc_ConflictResolver.c │ │ │ │ └── Srrc_ResolveQueue.c │ │ └── SrrcMain │ │ │ └── Code │ │ │ └── Src │ │ │ ├── Srrc_Driver.c │ │ │ └── Srrc_Main.c │ └── code │ │ └── src │ │ ├── Sr_If_Common.c │ │ ├── Sr_If_LteMsg.c │ │ ├── Sr_If_Main.c │ │ ├── Sr_If_Sl1rcMsgIF.c │ │ ├── Sr_If_SrncMsgIF.c │ │ ├── Sr_If_SrrcMsgIF.c │ │ ├── Sr_If_Timer.c │ │ └── Sr_If_TraceLog.c │ ├── SYNTAX │ ├── CD │ │ └── Code │ │ │ └── Src │ │ │ └── cd_SsCodec.c │ └── SsAsn │ │ └── Code │ │ └── Src │ │ └── ss_Codec.c │ ├── USAT │ └── Code │ │ └── Src │ │ ├── usat_BipConnIntfManagement.c │ │ ├── usat_ContextDef.c │ │ ├── usat_EventDownloadHandler.c │ │ ├── usat_IpcIntfManagement.c │ │ ├── usat_OemIntfManagement.c │ │ ├── usat_ProactiveCmdHandler.c │ │ ├── usat_ProactiveCmdRsp.c │ │ ├── usat_ProactiveCmds.c │ │ ├── usat_ProvideLocalInfoHandler.c │ │ ├── usat_Registration.c │ │ ├── usat_SimFiles.c │ │ ├── usat_TimerManagement.c │ │ ├── usat_UsimIntfManagement.c │ │ ├── usat_main.c │ │ └── usat_pducodec.c │ └── USIM │ └── Code │ └── Src │ ├── usim_AccessRules.c │ ├── usim_ApplicationToolKit.c │ ├── usim_AtCmdIntfManagement.c │ ├── usim_Authentication.c │ ├── usim_CSIMApplication.c │ ├── usim_CacheManagement.c │ ├── usim_CodeId.c │ ├── usim_ContextDef.c │ ├── usim_DeviceIntfManagement.c │ ├── usim_ESIMApplication.c │ ├── usim_GrrIntfManagement.c │ ├── usim_ISIMApplication.c │ ├── usim_NascIntfManagement.c │ ├── usim_NsIntfManagement.c │ ├── usim_PKCSApplication.c │ ├── usim_PalIntfManagement.c │ ├── usim_PduCodec.c │ ├── usim_PinManagement.c │ ├── usim_ReadWrite.c │ ├── usim_RefreshCmd.c │ ├── usim_Registration.c │ ├── usim_SfiSupport.c │ ├── usim_SimAccessProfile.c │ ├── usim_SoftReset.c │ ├── usim_TimerManagement.c │ ├── usim_UrrcIntfManagement.c │ ├── usim_UsatIntfManagement.c │ ├── usim_Utilities.c │ └── usim_main.c ├── README.md ├── SMPF ├── Protocol │ ├── Channel │ │ ├── HAL │ │ │ └── MODEM │ │ │ │ ├── CmdHdlr │ │ │ │ ├── NR │ │ │ │ │ ├── DEMOD_BLOCK │ │ │ │ │ │ └── ch_HalDemodExtCmdsNr.cpp │ │ │ │ │ ├── GAP_BLOCK │ │ │ │ │ │ └── ch_HalGapExtCmdsNr.cpp │ │ │ │ │ ├── IRAT_BLOCK │ │ │ │ │ │ └── ch_HalIratExtCmdsNr.cpp │ │ │ │ │ ├── LMAC_BLOCK │ │ │ │ │ │ └── ch_HalLmacExtCmdsNr.cpp │ │ │ │ │ ├── PKTPROC_BLOCK │ │ │ │ │ │ └── ch_HalPktProcExtCmdsNr.cpp │ │ │ │ │ ├── RF_BLOCK │ │ │ │ │ │ └── ch_HalRfExtCmdsNr.cpp │ │ │ │ │ ├── RXFILTER_BLOCK │ │ │ │ │ │ └── ch_HalRxFilterExtCmdsNr.cpp │ │ │ │ │ ├── SEARCHER_BLOCK │ │ │ │ │ │ ├── ch_HalSrchrExtCmdsNr.cpp │ │ │ │ │ │ └── ch_HalSrchrLisrsNr.cpp │ │ │ │ │ ├── SLEEP_BLOCK │ │ │ │ │ │ └── ch_HalSleepLisrsNr.cpp │ │ │ │ │ ├── SYMBPROC_BLOCK │ │ │ │ │ │ ├── ch_HalSymbProcExtCmdsNr.cpp │ │ │ │ │ │ └── ch_HalSymbProcLisrsNr.cpp │ │ │ │ │ └── SYSTIME_BLOCK │ │ │ │ │ │ ├── ch_HalSysTimeExtCmdsNr.cpp │ │ │ │ │ │ └── ch_HalSysTimeLisrsNr.cpp │ │ │ │ ├── ch_HalRfDevBlk.cpp │ │ │ │ └── ch_HalRxFilterDevBlk.cpp │ │ │ │ └── DeviceDriver │ │ │ │ ├── Chipset │ │ │ │ └── S5123 │ │ │ │ │ ├── DEMOD_BLOCK │ │ │ │ │ └── ch_HalDevDemodNr.cpp │ │ │ │ │ ├── IRAT_BLOCK │ │ │ │ │ └── ch_HalDevIratNr.cpp │ │ │ │ │ ├── LMAC_BLOCK │ │ │ │ │ └── ch_HalDevLmacNr.cpp │ │ │ │ │ ├── PKTPROC_BLOCK │ │ │ │ │ ├── ch_HalDevPktProcNr.cpp │ │ │ │ │ └── ch_HalDevUlPktProcNr.cpp │ │ │ │ │ ├── RF_BLOCK │ │ │ │ │ └── ch_HalDevRfifNr.cpp │ │ │ │ │ ├── RXFILTER_BLOCK │ │ │ │ │ └── ch_HalDevRxFilterNr.cpp │ │ │ │ │ ├── S5123Evt0_Dev.cpp │ │ │ │ │ ├── S5123IpcRecv.cpp │ │ │ │ │ ├── S5123IpcSend.cpp │ │ │ │ │ ├── SEARCHER_BLOCK │ │ │ │ │ └── ch_HalDevSrchrScdNr.cpp │ │ │ │ │ ├── SLEEP_BLOCK │ │ │ │ │ ├── ch_HalDevHpcmNr.cpp │ │ │ │ │ ├── ch_HalDevSleepNr.cpp │ │ │ │ │ └── ch_HalDevWakeupNr.cpp │ │ │ │ │ ├── SYMBPROC_BLOCK │ │ │ │ │ └── ch_HalDevSymbProcNr.cpp │ │ │ │ │ └── SYSTIME_BLOCK │ │ │ │ │ └── ch_HalDevSysTimeNr.cpp │ │ │ │ ├── Proc │ │ │ │ ├── DEMOD_BLOCK │ │ │ │ │ └── ch_HalDemodProcNr.cpp │ │ │ │ ├── GAP_BLOCK │ │ │ │ │ └── ch_HalGapProcNr.cpp │ │ │ │ ├── IRAT_BLOCK │ │ │ │ │ └── ch_HalIratProcNr.cpp │ │ │ │ ├── LMAC_BLOCK │ │ │ │ │ ├── ch_HalLmacCtrlNr.cpp │ │ │ │ │ ├── ch_HalLmacProcHwTest.cpp │ │ │ │ │ └── ch_HalLmacProcNr.cpp │ │ │ │ ├── PKTPROC_BLOCK │ │ │ │ │ ├── ch_HalPktProcNr.cpp │ │ │ │ │ └── ch_HalUlPktProcNr.cpp │ │ │ │ ├── RF_BLOCK │ │ │ │ │ ├── ch_HalRfFreqSetProcNr.cpp │ │ │ │ │ └── ch_HalRfProcNr.cpp │ │ │ │ ├── RXFILTER_BLOCK │ │ │ │ │ └── ch_HalRxFilterProcNr.cpp │ │ │ │ ├── SEARCHER_BLOCK │ │ │ │ │ └── ch_HalSrchrScdProcNr.cpp │ │ │ │ ├── SLEEP_BLOCK │ │ │ │ │ ├── ch_HalPowerSavingProcNr.cpp │ │ │ │ │ ├── ch_HalSleepProcNr.cpp │ │ │ │ │ ├── ch_HalSleepStartProcNr.cpp │ │ │ │ │ └── ch_HalSlowClockEstProc.cpp │ │ │ │ ├── SYMBPROC_BLOCK │ │ │ │ │ └── ch_HalSymbProcProcNr.cpp │ │ │ │ └── SYSTIME_BLOCK │ │ │ │ │ └── ch_HalSysTimeProcNr.cpp │ │ │ │ └── ch_HalInterrupt.cpp │ │ ├── Interface │ │ │ └── Src │ │ │ │ └── RF_Interface_NR.c │ │ ├── L1C │ │ │ ├── NR │ │ │ │ ├── ch_L1cAsMsgConvert.cpp │ │ │ │ ├── ch_L1cBchNr.cpp │ │ │ │ ├── ch_L1cBplmnNr.cpp │ │ │ │ ├── ch_L1cDrxNr.cpp │ │ │ │ ├── ch_L1cEventSchedInfoNr.cpp │ │ │ │ ├── ch_L1cIratConfigNr.cpp │ │ │ │ ├── ch_L1cLifMsgConvert.cpp │ │ │ │ ├── ch_L1cMeasNr.cpp │ │ │ │ ├── ch_L1cPchNr.cpp │ │ │ │ ├── ch_L1cRlSyncNr.cpp │ │ │ │ ├── ch_L1cSccNr.cpp │ │ │ │ ├── ch_L1cSrchrNr.cpp │ │ │ │ └── ch_L1cXphyMsgConvert.cpp │ │ │ ├── ch_L1cBplmnSrchBase.cpp │ │ │ ├── ch_L1cCtrlrStateBase.hpp │ │ │ ├── ch_L1cIdleDrxBlkBase.cpp │ │ │ ├── ch_L1cL2InterfaceCtrlr.cpp │ │ │ ├── ch_L1cMmcIfCtrlr.cpp │ │ │ ├── ch_L1cRrmInterfaceCtrlr.cpp │ │ │ └── ch_L1cft.cpp │ │ └── Utility │ │ │ ├── ch_BplmnSrchMngr.cpp │ │ │ ├── ch_ExpInterface_NR.cpp │ │ │ ├── ch_IratMngr.cpp │ │ │ ├── ch_NrDb.cpp │ │ │ ├── ch_SleepMngr.cpp │ │ │ └── ch_Utility.cpp │ ├── ControlPlane │ │ ├── RRC │ │ │ ├── RRC_NR │ │ │ │ ├── DB │ │ │ │ │ └── NR │ │ │ │ │ │ ├── cp_RrcNrDbCellSelNr.hpp │ │ │ │ │ │ ├── cp_RrcNrDbConfigNr.hpp │ │ │ │ │ │ └── cp_RrcNrDbSibNr.hpp │ │ │ │ ├── PRCD │ │ │ │ │ └── NR │ │ │ │ │ │ ├── cp_RrcNrPrcdCommonProcedure.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdGoingToRrcIdle.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdMeasCgi.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdNr2otherMeasCgi.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdNrBplmn.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdNsaMeasRpt.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdNsaScgFailure.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdNsaScgSuspend.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdNsaSrb1ScgCfg.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdNsaSrb3ScgCfg.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdOther2nrMeasCgi.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdResumeRat.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaCellResel.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaCellSel.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaConnFallback.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaCountercheck.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaDrxShare.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaIratN2lHo.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaIratN2lRedirection.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaOndemandSireq.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaRrcReconfig.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaRrcReest.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaRrcReject.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaRrcRelease.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaRrcResume.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaRrcSetup.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaShortmsg.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaSiWaitTimerExp.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaSibAcq.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaSimodification.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcdSaSmc.cpp │ │ │ │ │ │ └── cp_RrcNrPrcdSuspendRat.cpp │ │ │ │ ├── PRCS │ │ │ │ │ ├── NR │ │ │ │ │ │ ├── cp_RrcNrNwMsgCodecNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsAccBlkBarringNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsAnrBlkCfg.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsConfigBlkDediNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsConfigBlkDediNr.hpp │ │ │ │ │ │ ├── cp_RrcNrPrcsDsdsBlkNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsNwMsgBlkCodecNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsNwMsgBlkCodecNr.hpp │ │ │ │ │ │ ├── cp_RrcNrPrcsPlmnBlkAvailCellNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsPlmnBlkBandSelectNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsPlmnBlkCellSelNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsPlmnBlkFreqSearchNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsPlmnBlkFreqlistNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsSecurityBlkNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsSecurityBlkNr.hpp │ │ │ │ │ │ ├── cp_RrcNrPrcsSibBlkCtrlNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsStatusBlkStateNr.cpp │ │ │ │ │ │ ├── cp_RrcNrPrcsTaskMsgBlkBuildNr.cpp │ │ │ │ │ │ └── cp_RrcNrPrcsTaskMsgBlkUpdateNr_NR_ASN_V1540.cpp │ │ │ │ │ ├── cp_RrcNrPrcsPlmn.cpp │ │ │ │ │ └── cp_RrcNrPrcsTaskMsgBlkBuildIf.hpp │ │ │ │ ├── UTIL │ │ │ │ │ ├── CodecNR │ │ │ │ │ │ └── v1540 │ │ │ │ │ │ │ └── NrRrc_Codec.c │ │ │ │ │ ├── UeCapaNR │ │ │ │ │ │ ├── NrRrc_UeCapaInputInfo.cpp │ │ │ │ │ │ ├── NrRrc_UeCapaMain.cpp │ │ │ │ │ │ └── NrRrc_UeCapaRegInfo.cpp │ │ │ │ │ ├── cp_RrcNrUtil.cpp │ │ │ │ │ ├── cp_RrcNrUtilDm.cpp │ │ │ │ │ └── cp_RrcNrUtilDynamicDb.cpp │ │ │ │ ├── cp_RrcNrSm.cpp │ │ │ │ ├── cp_RrcNrSmHdlrError.cpp │ │ │ │ └── cp_RrcNrSmHdlrOneStep.cpp │ │ │ ├── cp_RrcFt.cpp │ │ │ └── cp_RrcFtRouter.hpp │ │ └── RRM │ │ │ ├── NR │ │ │ ├── Controller │ │ │ │ ├── Measure │ │ │ │ │ ├── cp_RrmBlkAccMeasIf.cpp │ │ │ │ │ ├── cp_RrmBlkAccMeasNr.cpp │ │ │ │ │ ├── cp_RrmBlkConnMeasIf.cpp │ │ │ │ │ ├── cp_RrmBlkConnMeasNr.cpp │ │ │ │ │ ├── cp_RrmBlkIdleMeasIf.cpp │ │ │ │ │ ├── cp_RrmBlkIdleMeasNr.cpp │ │ │ │ │ └── cp_RrmCtrlrMeasure.cpp │ │ │ │ ├── Mobility │ │ │ │ │ ├── cp_RrmBlkConnEvalIf.cpp │ │ │ │ │ ├── cp_RrmBlkConnEvalNr.cpp │ │ │ │ │ ├── cp_RrmBlkIdleEvalIf.cpp │ │ │ │ │ ├── cp_RrmBlkIdleEvalNr.cpp │ │ │ │ │ ├── cp_RrmBlkMobilityStateIf.cpp │ │ │ │ │ ├── cp_RrmBlkMobilityStateIf.hpp │ │ │ │ │ ├── cp_RrmBlkMobilityStateNr.cpp │ │ │ │ │ └── cp_RrmBlkMobilityStateNr.hpp │ │ │ │ ├── Search │ │ │ │ │ ├── cp_RrmBlkCellSrchIf.cpp │ │ │ │ │ ├── cp_RrmBlkCellSrchNr.cpp │ │ │ │ │ └── cp_RrmBlkFreqSrchIf.cpp │ │ │ │ └── TaskMsg │ │ │ │ │ ├── cp_LterrmMsgConvert.cpp │ │ │ │ │ ├── cp_RrmBlkMsgBuildIf.cpp │ │ │ │ │ └── cp_RrmBlkMsgBuildNr.cpp │ │ │ ├── Manager │ │ │ │ ├── RrmClassInfoInc │ │ │ │ │ ├── cp_RrmCellInfoEutra.cpp │ │ │ │ │ ├── cp_RrmCellInfoNr.cpp │ │ │ │ │ ├── cp_RrmFreqInfoEutra.cpp │ │ │ │ │ ├── cp_RrmFreqInfoNr.cpp │ │ │ │ │ ├── cp_RrmServCellGroupInfoNr.cpp │ │ │ │ │ ├── cp_RrmServCellInfoNr.cpp │ │ │ │ │ └── cp_RrmServFreqInfoNr.cpp │ │ │ │ └── RrmMeasMngrNr │ │ │ │ │ ├── cp_RrmMngrConfigConnNr.cpp │ │ │ │ │ ├── cp_RrmMngrConfigIdleNr.cpp │ │ │ │ │ ├── cp_RrmMngrDmDebugNr.cpp │ │ │ │ │ ├── cp_RrmMngrScheduleInfoNr.cpp │ │ │ │ │ ├── cp_RrmMngrSemiStaticDbNr.cpp │ │ │ │ │ ├── cp_RrmMngrSemiStaticDbNr.hpp │ │ │ │ │ └── cp_RrmMngrSetUpdateNr.cpp │ │ │ ├── MeasSv │ │ │ │ ├── cp_RrmNrMeasAccess.cpp │ │ │ │ ├── cp_RrmNrMeasConn.cpp │ │ │ │ ├── cp_RrmNrMeasIdle.cpp │ │ │ │ ├── cp_RrmNrMeasInactive.cpp │ │ │ │ ├── cp_RrmNrMeasSusp.cpp │ │ │ │ └── cp_RrmNrMeasSvError.cpp │ │ │ ├── ProcSv │ │ │ │ ├── cp_RrmNrPrcdAnrRun.cpp │ │ │ │ ├── cp_RrmNrPrcdAnrStart.cpp │ │ │ │ ├── cp_RrmNrPrcdAnrStop.cpp │ │ │ │ ├── cp_RrmNrPrcdAsState.cpp │ │ │ │ ├── cp_RrmNrPrcdBchConfig.cpp │ │ │ │ ├── cp_RrmNrPrcdBchRelease.cpp │ │ │ │ ├── cp_RrmNrPrcdBplmnRun.cpp │ │ │ │ ├── cp_RrmNrPrcdBplmnStart.cpp │ │ │ │ ├── cp_RrmNrPrcdBplmnStop.cpp │ │ │ │ ├── cp_RrmNrPrcdCellConfig.cpp │ │ │ │ ├── cp_RrmNrPrcdCellConfigStop.cpp │ │ │ │ ├── cp_RrmNrPrcdDrx.cpp │ │ │ │ ├── cp_RrmNrPrcdFreqSrch.cpp │ │ │ │ ├── cp_RrmNrPrcdHold.cpp │ │ │ │ ├── cp_RrmNrPrcdInSync.cpp │ │ │ │ ├── cp_RrmNrPrcdMeasConfig.cpp │ │ │ │ ├── cp_RrmNrPrcdModemStop.cpp │ │ │ │ ├── cp_RrmNrPrcdNsaGapConfig.cpp │ │ │ │ ├── cp_RrmNrPrcdOos.cpp │ │ │ │ ├── cp_RrmNrPrcdPchConfig.cpp │ │ │ │ ├── cp_RrmNrPrcdPchRelease.cpp │ │ │ │ ├── cp_RrmNrPrcdPhyConfig.cpp │ │ │ │ ├── cp_RrmNrPrcdRestart.cpp │ │ │ │ ├── cp_RrmNrPrcdResume.cpp │ │ │ │ ├── cp_RrmNrPrcdReturnToServcell.cpp │ │ │ │ ├── cp_RrmNrPrcdScellStatus.cpp │ │ │ │ ├── cp_RrmNrPrcdSuspend.cpp │ │ │ │ ├── cp_RrmNrProcSv.cpp │ │ │ │ ├── cp_RrmNrProcSvHdlrError.cpp │ │ │ │ └── cp_RrmNrProcSvHdlrOneStep.cpp │ │ │ ├── cp_RrmNrCommon.cpp │ │ │ └── cp_RrmNrSm.cpp │ │ │ ├── cp_RrmFt.cpp │ │ │ └── cp_RrmFtRouter.hpp │ ├── CoreNetwork │ │ ├── QM │ │ │ ├── cn_QmFt.cpp │ │ │ └── cn_QmRouter.cpp │ │ └── cn_RouterMsgByRat.cpp │ ├── DM │ │ └── NR │ │ │ └── Nr_Serialise.c │ ├── Export │ │ ├── ch_IpcUtil.hpp │ │ ├── exp_L2LayerConfigure.hpp │ │ └── up_L2commonDebug.hpp │ └── UserPlane │ │ ├── L2Common │ │ └── NR │ │ │ ├── up_L2Ft.cpp │ │ │ ├── up_L2commonDataVolume.cpp │ │ │ ├── up_L2commonDmMetric.cpp │ │ │ ├── up_L2commonHalGatewayNr.cpp │ │ │ ├── up_L2commonMacNr.hpp │ │ │ ├── up_L2commonPdcpInfoCollectorNr.hpp │ │ │ ├── up_L2commonPdcpLteIfNr.cpp │ │ │ ├── up_L2commonPdcpNr.cpp │ │ │ ├── up_L2commonPdcpRlcDataIfNr.cpp │ │ │ ├── up_L2commonRlcNr.cpp │ │ │ ├── up_L2commonRlcNr.hpp │ │ │ └── up_L2commonTmcNr.cpp │ │ ├── L2HRX │ │ ├── NR │ │ │ ├── up_L2hrxPdcpRxEntity.cpp │ │ │ ├── up_L2hrxReassemblyBuffer.cpp │ │ │ ├── up_L2hrxRlcRxEntity.cpp │ │ │ ├── up_L2hrxRlcRxEntity.hpp │ │ │ ├── up_L2hrxSdapRxEntity.cpp │ │ │ └── up_L2hrxSdapSessionManagement.cpp │ │ ├── up_L2hpdcprxFt.cpp │ │ └── up_L2hrlcrxFt.cpp │ │ ├── L2HTX │ │ ├── NR │ │ │ ├── up_L2htxPdcpTxEntity.cpp │ │ │ ├── up_L2htxRlcTxEntity.cpp │ │ │ └── up_L2htxSdapTxEntity.cpp │ │ ├── up_L2hpdcptxFt.cpp │ │ ├── up_L2hrlcretxFt.cpp │ │ └── up_L2hrlctxFt.cpp │ │ ├── L2LRX │ │ ├── NR │ │ │ ├── up_L2lrxMacCeProcNr.cpp │ │ │ ├── up_L2lrxMacCfgCtrlNr.cpp │ │ │ ├── up_L2lrxMacDemuxNr.cpp │ │ │ ├── up_L2lrxMacRachCtrlNr.cpp │ │ │ └── up_L2lrxMacTimerCtrlNr.cpp │ │ ├── up_L2lmacrachFt.cpp │ │ └── up_L2lmacrxFt.cpp │ │ └── L2LTX │ │ ├── NR │ │ ├── up_L2ltxMacCfgCtrlNr.cpp │ │ ├── up_L2ltxMacDataSchedulerNr.cpp │ │ └── up_L2ltxMacNr.cpp │ │ ├── up_L2lmactxFt.cpp │ │ └── up_L2lmactxproxyFt.cpp ├── SMPFProtocol │ ├── Build │ │ └── UserPlane │ │ │ └── smpfp_DpChannelConfigurator.cpp │ ├── Core │ │ ├── Channel │ │ │ ├── RSM │ │ │ │ ├── smpf_RsmEventSchedInfoCtrl.cpp │ │ │ │ ├── smpf_RsmLTEInterface.cpp │ │ │ │ ├── smpf_RsmPagingStatistics.cpp │ │ │ │ ├── smpf_RsmResourceControllerInterfaceBase.cpp │ │ │ │ ├── smpf_RsmResourceSchedInfoGenBase.cpp │ │ │ │ ├── smpf_RsmResourceSchedInfoGenCdma.cpp │ │ │ │ ├── smpf_RsmResourceSchedInfoGenNr.cpp │ │ │ │ ├── smpf_RsmSRInterface.cpp │ │ │ │ └── smpf_RsmUserApi.cpp │ │ │ ├── SchedCtrlr │ │ │ │ └── Src │ │ │ │ │ ├── smpfp_ChSchedCtrlr.cpp │ │ │ │ │ └── smpfp_ChSchedCtrlrApi.cpp │ │ │ └── TimeHdlr │ │ │ │ └── Src │ │ │ │ ├── smpfp_ChCdma1xTimeInfo.cpp │ │ │ │ ├── smpfp_ChHrpdTimeInfo.cpp │ │ │ │ ├── smpfp_ChNrTimeInfo.cpp │ │ │ │ ├── smpfp_ChTimeHdlr.cpp │ │ │ │ └── smpfp_ChTimeHdlrInterface.cpp │ │ ├── Codec │ │ │ └── Src │ │ │ │ └── smpfp_ProAsnCodecInterface.c │ │ ├── ControlPlane │ │ │ └── Src │ │ │ │ ├── smpfp_CpFlagCenter.cpp │ │ │ │ ├── smpfp_CpFlags.cpp │ │ │ │ ├── smpfp_CpMsgCodec.cpp │ │ │ │ └── smpfp_CpTimer.cpp │ │ ├── EAL │ │ │ └── smpfp_DpLMACInterface.cpp │ │ └── UserPlane │ │ │ └── Src │ │ │ ├── smpfp_DpDataChannel.cpp │ │ │ ├── smpfp_DpPduDescriptorDir.cpp │ │ │ ├── smpfp_DpPduDescriptorIndir.cpp │ │ │ ├── smpfp_DpRxNackTable.cpp │ │ │ ├── smpfp_DpRxReorderingQ.cpp │ │ │ └── smpfp_DpTxForwardChannel.cpp │ └── Export │ │ ├── Private │ │ └── ControlPlane │ │ │ └── smpfp_CpFlags.h │ │ └── Public │ │ ├── Channel │ │ └── smpfp_ChSchedCtrlrApi.hpp │ │ └── ControlPlane │ │ └── smpfp_CpTimer.h └── SMPFramework │ ├── Build │ ├── Multistack │ │ └── Src │ │ │ └── smpf_MsaUserMsgList.cpp │ └── Task │ │ └── Src │ │ ├── smpf_TaskFactory.cpp │ │ └── smpf_TaskMsgLogMngr.cpp │ ├── Core │ ├── Dev │ │ ├── Inc │ │ │ └── smpf_DevCtrlrHisrs.h │ │ └── Src │ │ │ ├── smpf_DevBase.cpp │ │ │ ├── smpf_DevCmdBase.cpp │ │ │ ├── smpf_DevMngr.cpp │ │ │ └── smpf_DevUserApi.cpp │ ├── Hal │ │ └── Src │ │ │ ├── smpf_HalBlkCtrlr.cpp │ │ │ ├── smpf_HalMngr.cpp │ │ │ └── smpf_HalUserApi.cpp │ ├── LegacyInterface │ │ └── Src │ │ │ ├── smpf_LifArbiter.cpp │ │ │ ├── smpf_LifUserApi.cpp │ │ │ └── smpf_LifUserApiStack.cpp │ ├── MultiStack │ │ ├── Agent │ │ │ └── Src │ │ │ │ ├── smpf_MsaActionDecider.cpp │ │ │ │ ├── smpf_MsaApi.cpp │ │ │ │ ├── smpf_MsaControllerImpl.cpp │ │ │ │ ├── smpf_MsaCoreFT.cpp │ │ │ │ ├── smpf_MsaDataBase.cpp │ │ │ │ ├── smpf_MsaDmsgWorker.cpp │ │ │ │ ├── smpf_MsaExecutor.cpp │ │ │ │ ├── smpf_MsaMap.cpp │ │ │ │ ├── smpf_MsaMsgConverter.cpp │ │ │ │ ├── smpf_MsaMsgEventHolder.cpp │ │ │ │ └── smpf_MsaUmsgWorker.cpp │ │ ├── Daemon │ │ │ ├── Inc │ │ │ │ └── smpf_MsdTimerDescriptor.h │ │ │ ├── MsdFt │ │ │ │ └── Src │ │ │ │ │ └── smpf_MsdFT.cpp │ │ │ └── Src │ │ │ │ ├── smpf_MsdAssert.cpp │ │ │ │ ├── smpf_MsdSvcInfo.cpp │ │ │ │ ├── smpf_MsdSvcInfoTable.cpp │ │ │ │ ├── smpf_MsdTimerMngr.cpp │ │ │ │ ├── smpf_SrControllerAgent.cpp │ │ │ │ ├── smpf_SrControllerApi.cpp │ │ │ │ ├── smpf_SrControllerDataBase.cpp │ │ │ │ ├── smpf_SrControllerUtility.cpp │ │ │ │ ├── smpf_SrSvcInfoTableMngr.cpp │ │ │ │ ├── smpf_SrncAgent.cpp │ │ │ │ ├── smpf_SrncDataBase.cpp │ │ │ │ ├── smpf_SrrcAgent.cpp │ │ │ │ ├── smpf_SrrcAgentNrNsa.cpp │ │ │ │ └── smpf_SrrcDataBase.cpp │ │ └── MSRatTimer │ │ │ └── Src │ │ │ ├── smpf_MSRatTimerController.cpp │ │ │ └── smpf_MSRatTimerImpl.cpp │ ├── Task │ │ ├── Inc │ │ │ ├── smpf_TaskMngr.h │ │ │ ├── smpf_TaskMultiCoreCtlr.h │ │ │ └── smpf_TaskObjBase.h │ │ └── Src │ │ │ ├── smpf_TaskMsg.cpp │ │ │ ├── smpf_TaskMsgDispFsm.cpp │ │ │ ├── smpf_TaskMsgDispPbd.cpp │ │ │ ├── smpf_TaskMsgRouter.cpp │ │ │ ├── smpf_TaskMsgTransceiver.cpp │ │ │ ├── smpf_TaskMultiCoreCtlr.cpp │ │ │ ├── smpf_TaskObjs.cpp │ │ │ ├── smpf_TaskPbdMbtNode.cpp │ │ │ ├── smpf_TaskPbdProcedureConflictCtlr.cpp │ │ │ ├── smpf_TaskPbdProcedureHdlr.cpp │ │ │ ├── smpf_TaskScheduler.cpp │ │ │ ├── smpf_TaskUserApiData.cpp │ │ │ ├── smpf_TaskUserApiMsgTaskClass.cpp │ │ │ ├── smpf_TaskUserApiObj.cpp │ │ │ └── smpf_TaskUserApiPbd.cpp │ ├── TaskDb │ │ └── Src │ │ │ └── smpf_TdbBase.cpp │ └── Timer │ │ └── Src │ │ ├── smpf_TimerListMngr.cpp │ │ ├── smpf_TimerObjs.cpp │ │ ├── smpf_TimerProxyFactory.cpp │ │ ├── smpf_TimerProxyListMngr.cpp │ │ ├── smpf_TimerProxyPal.cpp │ │ ├── smpf_TimerProxyWakeUp.cpp │ │ └── smpf_TimerUserApi.cpp │ └── Export │ ├── Private │ └── Task │ │ ├── smpf_TaskFsm.h │ │ ├── smpf_TaskMsgLog.h │ │ ├── smpf_TaskPbdProcedureConflictCtlr.h │ │ ├── smpf_TaskPbdProcedureConflictElem.h │ │ └── smpf_TaskPbdProcedureHdlr.h │ └── Public │ ├── Dev │ └── smpf_DevUserApi.h │ ├── Hal │ └── smpf_HalUserApi.h │ └── Task │ └── smpf_TaskMsgDispSingle.h ├── VARIANT ├── HIUVar │ ├── COMMON │ │ ├── HIC │ │ │ ├── ATI │ │ │ │ └── Code │ │ │ │ │ └── Src │ │ │ │ │ ├── ati_CmdProfile.c │ │ │ │ │ ├── ati_FwCommandInterpreter.c │ │ │ │ │ ├── ati_FwCommsHandlers.c │ │ │ │ │ ├── ati_FwMessageTrace.c │ │ │ │ │ ├── ati_FwMultipleClients.c │ │ │ │ │ ├── ati_FwStateMachine.c │ │ │ │ │ ├── ati_FwVirtualTimers.c │ │ │ │ │ ├── ati_LibEmergency.c │ │ │ │ │ ├── ati_LibSIM.c │ │ │ │ │ ├── ati_Main.c │ │ │ │ │ ├── ati_RF_system_cmd.c │ │ │ │ │ ├── ati_RF_system_cmd_handler.c │ │ │ │ │ ├── ati_RF_system_rsp.c │ │ │ │ │ ├── ati_TDD_RF_system_cmd.c │ │ │ │ │ ├── ati_TDD_RF_system_rsp.c │ │ │ │ │ ├── ati_buffer.c │ │ │ │ │ ├── ati_cmd_handler.c │ │ │ │ │ ├── ati_cmd_handler_sms.c │ │ │ │ │ ├── ati_command.c │ │ │ │ │ ├── ati_command_sms.c │ │ │ │ │ ├── ati_csCallMgr.c │ │ │ │ │ ├── ati_display_sms.c │ │ │ │ │ ├── ati_error.c │ │ │ │ │ ├── ati_front.c │ │ │ │ │ ├── ati_gprs_cmd.c │ │ │ │ │ ├── ati_gprs_handler.c │ │ │ │ │ ├── ati_gprsparam.c │ │ │ │ │ ├── ati_handlers.c │ │ │ │ │ ├── ati_handlers_sms.c │ │ │ │ │ ├── ati_msg.c │ │ │ │ │ ├── ati_mt_control.c │ │ │ │ │ ├── ati_network_services.c │ │ │ │ │ ├── ati_operator_cmd.c │ │ │ │ │ ├── ati_parse.c │ │ │ │ │ ├── ati_phonebook.c │ │ │ │ │ ├── ati_psCallMgr.c │ │ │ │ │ ├── ati_query.c │ │ │ │ │ ├── ati_query_handler.c │ │ │ │ │ ├── ati_response.c │ │ │ │ │ ├── ati_rly_lib.c │ │ │ │ │ ├── ati_sregcntl.c │ │ │ │ │ ├── ati_supplementary_services.c │ │ │ │ │ ├── ati_task.c │ │ │ │ │ ├── ati_test_fn.c │ │ │ │ │ └── ati_utilities.c │ │ │ └── PktHnd │ │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── pkthndArpHnd.c │ │ │ │ ├── pkthndDmHnd.c │ │ │ │ ├── pkthndGenericHnd.c │ │ │ │ ├── pkthndInit.c │ │ │ │ ├── pkthndLoopback.c │ │ │ │ ├── pkthndMtiHnd.c │ │ │ │ ├── pkthndPacketHandle.c │ │ │ │ └── pkthndUtil.c │ │ ├── HID │ │ │ ├── GDA │ │ │ │ └── Code │ │ │ │ │ └── Source │ │ │ │ │ ├── gda_ati.c │ │ │ │ │ ├── gda_fcs.c │ │ │ │ │ ├── gda_gapi.c │ │ │ │ │ ├── gda_l1.c │ │ │ │ │ ├── gda_l2rcop.c │ │ │ │ │ ├── gda_ra0.c │ │ │ │ │ ├── gda_ra1.c │ │ │ │ │ ├── gda_rlp.c │ │ │ │ │ ├── gda_rlptm.c │ │ │ │ │ ├── gda_task.c │ │ │ │ │ └── gda_tdata.c │ │ │ ├── HostIF │ │ │ │ └── Code │ │ │ │ │ └── Src │ │ │ │ │ ├── hostifMgm.c │ │ │ │ │ ├── hostifMsgHandle.c │ │ │ │ │ └── hostifTransportMgr.c │ │ │ ├── PPP │ │ │ │ └── Code │ │ │ │ │ └── Source │ │ │ │ │ ├── uip_ipcp.c │ │ │ │ │ ├── uip_lcp.c │ │ │ │ │ ├── uip_ppp.c │ │ │ │ │ ├── uip_ppphelp.c │ │ │ │ │ ├── uip_ppphelp_iram.c │ │ │ │ │ ├── uip_pppint.c │ │ │ │ │ ├── uip_ppplink.c │ │ │ │ │ └── uip_samos.c │ │ │ └── udh │ │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── dhcp4_Main.c │ │ │ │ ├── nasu_Cdh.c │ │ │ │ └── udh_main.c │ │ ├── HiuCommon │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── nasu_buffers.c │ │ │ │ └── nasu_utils.c │ │ └── UtilityAgent │ │ │ ├── BDA │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── BdaMain.c │ │ │ │ ├── BdaMsgHandler.c │ │ │ │ └── BdaTimers.c │ │ │ └── DM │ │ │ └── Code │ │ │ └── Src │ │ │ ├── DmMain.c │ │ │ ├── DmTraceMsg.c │ │ │ ├── DmTraceMsgTxQ.c │ │ │ ├── dmComMsgHandler.c │ │ │ ├── dmControlMsgHandler.c │ │ │ ├── dmEdgeL1MsgHandler.c │ │ │ ├── dmExMetric.c │ │ │ ├── dmExMetricHook.c │ │ │ ├── dmExMetricTimer.c │ │ │ ├── dmHspaUL3MsgHandler.c │ │ │ ├── dmHspaVocMsgHandler.c │ │ │ ├── dmLteL1MsgHandler.c │ │ │ ├── dmLtePhyMsgHandler.c │ │ │ ├── dmLteRrcMsgHandler.c │ │ │ ├── dmMemInterface.c │ │ │ ├── dmNrMsgHandler.c │ │ │ ├── dmPSTMsgHandler.c │ │ │ ├── dmSerialInterface.c │ │ │ ├── dmTestMsgHandler.c │ │ │ └── dmTriggerEvent.c │ └── MCD │ │ ├── HIC │ │ ├── ATI │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── ati_manufactory_cmd.c │ │ │ │ ├── ati_manufactory_query.c │ │ │ │ └── ati_manufactory_rsp.c │ │ ├── Mti_Common_Interface │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ └── Mti_Common_Interface.c │ │ ├── PktHnd │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── pkthndNvRfsHnd.c │ │ │ │ └── pkthndSecureHnd.c │ │ ├── SIPC │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── sipcBdaMsgHandle.c │ │ │ │ ├── sipcBdaMsgSend.c │ │ │ │ ├── sipcCallCmdHandle.c │ │ │ │ ├── sipcCfgCmdHandle.c │ │ │ │ ├── sipcCldCmdHandle.c │ │ │ │ ├── sipcDebugPrint.c │ │ │ │ ├── sipcDispCmdHandle.c │ │ │ │ ├── sipcDmMsgHandle.c │ │ │ │ ├── sipcDomesticCmdHandle.c │ │ │ │ ├── sipcEmbmsCmdHandle.c │ │ │ │ ├── sipcFactoryCmdHandle.c │ │ │ │ ├── sipcGprsCmdHandle.c │ │ │ │ ├── sipcGpsCmdHandle.c │ │ │ │ ├── sipcIMEICmdHandle.c │ │ │ │ ├── sipcImsCmdHandle.c │ │ │ │ ├── sipcJapanCmdHandle.c │ │ │ │ ├── sipcMain.c │ │ │ │ ├── sipcMiscClmCs.c │ │ │ │ ├── sipcMiscCmdHandle.c │ │ │ │ ├── sipcMsgHandlerBDA.c │ │ │ │ ├── sipcMsgHandlerDm.c │ │ │ │ ├── sipcMsgHandlerIpc.c │ │ │ │ ├── sipcMsgHandlerNs.c │ │ │ │ ├── sipcNetCmdHandle.c │ │ │ │ ├── sipcNsCcMsgHandle.c │ │ │ │ ├── sipcNsCcMsgSend.c │ │ │ │ ├── sipcNsEmbmsMsgHandle.c │ │ │ │ ├── sipcNsEmbmsMsgSend.c │ │ │ │ ├── sipcNsGpsMsgHandle.c │ │ │ │ ├── sipcNsGpsMsgSend.c │ │ │ │ ├── sipcNsImsccMsgHandle.c │ │ │ │ ├── sipcNsImsccMsgSend.c │ │ │ │ ├── sipcNsMmMsgHandle.c │ │ │ │ ├── sipcNsMmMsgSend.c │ │ │ │ ├── sipcNsPbMsgHandle.c │ │ │ │ ├── sipcNsPbMsgSend.c │ │ │ │ ├── sipcNsPsMsgHandle.c │ │ │ │ ├── sipcNsPsMsgSend.c │ │ │ │ ├── sipcNsRrMsgHandle.c │ │ │ │ ├── sipcNsRrMsgSend.c │ │ │ │ ├── sipcNsSSMsgHandle.c │ │ │ │ ├── sipcNsSapMsgHandle.c │ │ │ │ ├── sipcNsSapMsgSend.c │ │ │ │ ├── sipcNsSatMsgHandle.c │ │ │ │ ├── sipcNsSatMsgSend.c │ │ │ │ ├── sipcNsSimMsgHandle.c │ │ │ │ ├── sipcNsSimMsgSend.c │ │ │ │ ├── sipcNsSmMsgHandle.c │ │ │ │ ├── sipcNsSmMsgSend.c │ │ │ │ ├── sipcNsSmsMsgHandle.c │ │ │ │ ├── sipcNsSmsMsgSend.c │ │ │ │ ├── sipcNsSoundMsgHandle.c │ │ │ │ ├── sipcNsSoundMsgSend.c │ │ │ │ ├── sipcOemEnhancedSecurityCmdHandle.c │ │ │ │ ├── sipcOmcModule.c │ │ │ │ ├── sipcPbCmdHandle.c │ │ │ │ ├── sipcPwrCmdHandle.c │ │ │ │ ├── sipcSSCmdhandle.c │ │ │ │ ├── sipcSapCmdHandle.c │ │ │ │ ├── sipcSatCmdHandle.c │ │ │ │ ├── sipcSecCmdHandle.c │ │ │ │ ├── sipcSmsCmdHandle.c │ │ │ │ ├── sipcSoundCmdHandle.c │ │ │ │ ├── sipcSvcCmdHandle.c │ │ │ │ └── sipcSystemCmdHandle.c │ │ ├── SVC │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── svcMain.c │ │ │ │ ├── svcMenuHandler.c │ │ │ │ └── svcMsgHandlerNs.c │ │ └── SecuCh │ │ │ └── Code │ │ │ └── Src │ │ │ └── SecuChMain.c │ │ └── UtilityAgent │ │ └── SVCLOG │ │ └── src │ │ └── svc_log_api.c ├── PALVar │ ├── C-Var │ │ ├── ABOX_IPC │ │ │ └── OC │ │ │ │ └── MCU │ │ │ │ ├── Chipset │ │ │ │ └── S5123 │ │ │ │ │ └── Src │ │ │ │ │ ├── ABOX_CtrlABOX.c │ │ │ │ │ ├── ABOX_LoadImage.c │ │ │ │ │ └── DmTraceMsgTxQ_ABOX.c │ │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ └── ABOX_SetupLink.c │ │ ├── MTMVar │ │ │ └── src │ │ │ │ ├── MTMComm_3GTask.c │ │ │ │ ├── MTMComm_3GTddCal.c │ │ │ │ ├── MTMComm_GsmCommon.c │ │ │ │ ├── MTMComm_GsmMsgHandler.c │ │ │ │ ├── MTMComm_GsmRegistry.c │ │ │ │ ├── MTMComm_LteCommon.c │ │ │ │ ├── MTMComm_LteMsgHandler.c │ │ │ │ ├── MTMComm_LteRegistry.c │ │ │ │ ├── MTMComm_LteRegistry_S3XX.c │ │ │ │ ├── MTMComm_LteTask.c │ │ │ │ ├── MTMComm_NrMsgHandler.c │ │ │ │ ├── MTMComm_NrSub6Registry.c │ │ │ │ └── MTMComm_NrTask.c │ │ ├── NVSS2 │ │ │ ├── Chipset │ │ │ │ └── S5123 │ │ │ │ │ └── Amr │ │ │ │ │ └── src │ │ │ │ │ ├── hw_Api.c │ │ │ │ │ ├── hw_amr.c │ │ │ │ │ └── pcm_counter.c │ │ │ ├── VcgApi │ │ │ │ └── src │ │ │ │ │ ├── amr_Main.c │ │ │ │ │ ├── vcg_Api.c │ │ │ │ │ ├── vocCtrlModule2G.c │ │ │ │ │ └── vsm_Isr.c │ │ │ ├── VcgMsg │ │ │ │ └── src │ │ │ │ │ └── vcg_Msg.c │ │ │ ├── VcgOem │ │ │ │ └── src │ │ │ │ │ ├── oem_snd_audiolog.c │ │ │ │ │ ├── oem_snd_bda.c │ │ │ │ │ └── oem_snd_common.c │ │ │ ├── VcgServiceControl_SIPC │ │ │ │ └── src │ │ │ │ │ └── VcgServiceApi.c │ │ │ ├── VcgSupMsg │ │ │ │ └── src │ │ │ │ │ ├── vcgSup_Api.c │ │ │ │ │ └── vcgSup_Msg.c │ │ │ └── VolteEng │ │ │ │ └── src │ │ │ │ ├── VoLTE_VoiceManagement.c │ │ │ │ └── samsungaudioengine_CMC.cpp │ │ ├── OP_Info │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── Lte_Rf_UpdateOpInfo.c │ │ │ │ ├── Lte_UeCapa_UpdateOpInfo.c │ │ │ │ └── Lte_UeCapa_WriteToTarget.c │ │ ├── OP_InfoNR │ │ │ └── Code │ │ │ │ └── Src │ │ │ │ ├── NrRrc_UeCapa_GeneralInfo_Band_AUSOPEN.cpp │ │ │ │ ├── NrRrc_UeCapa_GeneralInfo_Band_AUSTELSTRA.cpp │ │ │ │ ├── NrRrc_UeCapa_GeneralInfo_Band_EUCOMM.cpp │ │ │ │ ├── NrRrc_UeCapa_GeneralInfo_Band_EUOPEN.cpp │ │ │ │ ├── NrRrc_UeCapa_GeneralInfo_Band_GLOBAL.cpp │ │ │ │ ├── NrRrc_UeCapa_GeneralInfo_Band_ORG.cpp │ │ │ │ ├── NrRrc_UeCapa_GeneralInfo_Band_n1.cpp │ │ │ │ ├── NrRrc_UeCapa_GeneralInfo_Band_n41.cpp │ │ │ │ ├── NrRrc_UeCapa_GeneralInfo_COMMON.cpp │ │ │ │ ├── NrRrc_UeCapa_RequestedInfo.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_AUSCOMMON.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_AUSOPEN.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_AUSTELSTRA.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_EUCOMM.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_EUOPEN.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_GCF.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_GLOBAL.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_GLOBAL_n41.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_LA.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_NZL.cpp │ │ │ │ ├── NrRrc_UeCapa_SpecificInfo_ORG.cpp │ │ │ │ └── NrRrc_UeCapa_SpecificInfo_TMO.cpp │ │ ├── RF │ │ │ ├── RF_API │ │ │ │ ├── RF_API.c │ │ │ │ ├── RF_API_ET.c │ │ │ │ ├── RF_API_GSM.c │ │ │ │ └── RF_API_HSPA.c │ │ │ ├── RF_Device │ │ │ │ ├── Modem │ │ │ │ │ ├── RF_Modem_DataMover.c │ │ │ │ │ └── S5123 │ │ │ │ │ │ ├── RF_DSP_S5123_3G.c │ │ │ │ │ │ ├── RF_DSP_S5123_LTE.c │ │ │ │ │ │ ├── RF_DSP_S5123_NR_SUB6.c │ │ │ │ │ │ ├── RF_Modem_S5123.c │ │ │ │ │ │ ├── RF_Modem_S5123_FdAgc.c │ │ │ │ │ │ ├── RF_Modem_S5123_GSM.c │ │ │ │ │ │ ├── RF_Modem_S5123_RxFilter.c │ │ │ │ │ │ └── RF_Modem_S5123_SystemTime.c │ │ │ │ └── RFIC │ │ │ │ │ ├── API │ │ │ │ │ ├── RF_RFIC_API.c │ │ │ │ │ └── RF_RFIC_S5510_API.c │ │ │ │ │ └── S5510 │ │ │ │ │ └── src │ │ │ │ │ ├── RF_RFIC_S5510.c │ │ │ │ │ ├── RF_RFIC_S5510_FB.c │ │ │ │ │ ├── RF_RFIC_S5510_FCW.c │ │ │ │ │ ├── RF_RFIC_S5510_GSM.c │ │ │ │ │ ├── RF_RFIC_S5510_GSM_CAL.c │ │ │ │ │ ├── RF_RFIC_S5510_HSPA.c │ │ │ │ │ ├── RF_RFIC_S5510_HSPA_Cal.c │ │ │ │ │ ├── RF_RFIC_S5510_LO_MX.c │ │ │ │ │ ├── RF_RFIC_S5510_LTE.c │ │ │ │ │ ├── RF_RFIC_S5510_LTE_AGC.c │ │ │ │ │ ├── RF_RFIC_S5510_LTE_Cal.c │ │ │ │ │ ├── RF_RFIC_S5510_NR_SUB6.c │ │ │ │ │ ├── RF_RFIC_S5510_NR_SUB6_AGC.c │ │ │ │ │ ├── RF_RFIC_S5510_NR_SUB6_Cal.c │ │ │ │ │ ├── RF_RFIC_S5510_RX.c │ │ │ │ │ ├── RF_RFIC_S5510_RX_PATH.c │ │ │ │ │ └── RF_RFIC_S5510_TX.c │ │ │ ├── RF_Drv │ │ │ │ ├── AS │ │ │ │ │ └── RF_AS.c │ │ │ │ ├── Common │ │ │ │ │ ├── CL_AIT │ │ │ │ │ │ ├── CL_AIT.c │ │ │ │ │ │ ├── CL_AIT_Delay_Cal │ │ │ │ │ │ │ └── CL_AIT_Delay_Cal.c │ │ │ │ │ │ ├── CL_AIT_Modem_Ctrl │ │ │ │ │ │ │ └── CL_AIT_Modem_S5123.c │ │ │ │ │ │ └── CL_AIT_RF_Interface │ │ │ │ │ │ │ └── CL_AIT_RF_Interface.c │ │ │ │ │ ├── ET_SAPT │ │ │ │ │ │ ├── CL_DELAY │ │ │ │ │ │ │ └── CL_DELAY.c │ │ │ │ │ │ ├── ET_DPD.c │ │ │ │ │ │ ├── ET_SAPT_AT_CMD │ │ │ │ │ │ │ ├── ET_SAPT_AT_CMD.c │ │ │ │ │ │ │ ├── ET_SAPT_CAL_NV_RW_AT_CMD.c │ │ │ │ │ │ │ └── ET_SAPT_NV_AT_CMD.c │ │ │ │ │ │ ├── ET_SAPT_Cal │ │ │ │ │ │ │ ├── ET_SAPT_Cal.c │ │ │ │ │ │ │ ├── ET_SAPT_Cal_Interface.c │ │ │ │ │ │ │ ├── ET_SAPT_Power_Cal.c │ │ │ │ │ │ │ └── ET_SAPT_Psat_Pgain_Cal.c │ │ │ │ │ │ ├── ET_SAPT_Common_Module.c │ │ │ │ │ │ ├── ET_SAPT_Data_interface │ │ │ │ │ │ │ ├── ET_DPD_Data_Interface_HSPA_Driver.c │ │ │ │ │ │ │ ├── ET_DPD_Data_Interface_LTE_Driver.c │ │ │ │ │ │ │ ├── ET_DPD_Data_Interface_NR_SUB6_Driver.c │ │ │ │ │ │ │ ├── ET_SAPT_Data_Interface.c │ │ │ │ │ │ │ ├── ET_SAPT_Data_Interface_LAT.c │ │ │ │ │ │ │ ├── ET_SAPT_Data_Interface_cache.c │ │ │ │ │ │ │ ├── ET_SAPT_Data_interface_V8.c │ │ │ │ │ │ │ ├── ET_SAPT_RF_ET_DB.c │ │ │ │ │ │ │ ├── ET_SAPT_RF_ET_DB_Porting.c │ │ │ │ │ │ │ ├── ET_SAPT_RF_ET_DB_RW.c │ │ │ │ │ │ │ ├── ET_SAPT_RF_ET_DB_RW_V8.c │ │ │ │ │ │ │ └── ET_SAPT_RF_ET_DB_V8.c │ │ │ │ │ │ ├── ET_SAPT_Modem_ctrl_interface │ │ │ │ │ │ │ ├── ET_SAPT_Modem_ctrl_Interface.c │ │ │ │ │ │ │ └── RF_Modem_ET_S5123_EVT1.c │ │ │ │ │ │ ├── ET_SAPT_Platform_Porting.c │ │ │ │ │ │ ├── ET_SAPT_Power_Comp.c │ │ │ │ │ │ └── SAPT.c │ │ │ │ │ ├── RF_AGC.c │ │ │ │ │ ├── RF_Debug.c │ │ │ │ │ ├── RF_Drv.c │ │ │ │ │ ├── RF_ET_SAPT_Gaintable_Interface.c │ │ │ │ │ ├── RF_ET_SAPT_Interface.c │ │ │ │ │ ├── RF_GPIO.c │ │ │ │ │ ├── RF_MIPI.c │ │ │ │ │ ├── RF_Model.c │ │ │ │ │ └── RF_NV.c │ │ │ │ ├── FEM │ │ │ │ │ └── RF_FEM.c │ │ │ │ ├── GSM │ │ │ │ │ ├── RF_GSM.c │ │ │ │ │ ├── RF_GSM_AIT.c │ │ │ │ │ ├── RF_GSM_CAL.c │ │ │ │ │ ├── RF_GSM_CAL_TXDC.c │ │ │ │ │ ├── RF_GSM_CONFIG.c │ │ │ │ │ ├── RF_GSM_NV.c │ │ │ │ │ ├── RF_GSM_RX_SEQ.c │ │ │ │ │ └── RF_GSM_TX_SEQ.c │ │ │ │ ├── HSPA │ │ │ │ │ ├── RF_HSPA.c │ │ │ │ │ ├── RF_HSPA_AIT.c │ │ │ │ │ └── RF_HSPA_NV.c │ │ │ │ ├── LNA │ │ │ │ │ └── RF_LNA.c │ │ │ │ ├── LTE │ │ │ │ │ ├── RF_LTE.c │ │ │ │ │ ├── RF_LTE_AIT.c │ │ │ │ │ ├── RF_LTE_APT2.c │ │ │ │ │ ├── RF_LTE_Cal.c │ │ │ │ │ ├── RF_LTE_NV.c │ │ │ │ │ └── RF_LTE_Offset.c │ │ │ │ ├── NR_SUB6 │ │ │ │ │ ├── RF_NR_SUB6.c │ │ │ │ │ ├── RF_NR_SUB6_AIT.c │ │ │ │ │ ├── RF_NR_SUB6_APT.c │ │ │ │ │ ├── RF_NR_SUB6_Cal.c │ │ │ │ │ ├── RF_NR_SUB6_NV.c │ │ │ │ │ └── RF_NR_SUB6_Offset.c │ │ │ │ ├── PAM │ │ │ │ │ └── RF_PAM.c │ │ │ │ ├── PD │ │ │ │ │ └── RF_PD.c │ │ │ │ ├── SM │ │ │ │ │ ├── RF_SM.c │ │ │ │ │ └── RF_SM_Interface.c │ │ │ │ └── XGND │ │ │ │ │ └── RF_XGND.c │ │ │ ├── RF_Incs │ │ │ │ └── RF_Drv │ │ │ │ │ ├── RF_Drv.h │ │ │ │ │ └── RF_Util.h │ │ │ └── RF_System │ │ │ │ └── src │ │ │ │ └── RFComm_Function.c │ │ ├── RF_Models │ │ │ ├── Common │ │ │ │ └── RF_Model_Main.c │ │ │ └── TANGO │ │ │ │ ├── HUBBLEZ3_S5123_S5510 │ │ │ │ └── ONESKU │ │ │ │ │ ├── RF_Model_Config │ │ │ │ │ └── RF_HUBBLEZ3_ONESKU.c │ │ │ │ │ ├── RF_Model_Device │ │ │ │ │ └── RF_AS_HUBBLEZ3_GPIO.c │ │ │ │ │ └── RF_Model_NV │ │ │ │ │ └── RF_Model_NV_HEDGE.c │ │ │ │ └── RFFE_Devices │ │ │ │ └── src │ │ │ │ ├── RF_AIT_QM13021.c │ │ │ │ ├── RF_AS_QORVO_QM12114.c │ │ │ │ ├── RF_LFEM_MURATA_HFQRX4WJB_451_ES3.c │ │ │ │ ├── RF_LFEM_MURATA_HFQRX4WJB_452_ES40_MSEL0.c │ │ │ │ ├── RF_LFEM_MURATA_HFQRX4WJB_452_ES40_MSEL0_V2.c │ │ │ │ ├── RF_LFEM_MURATA_HFQRXRHJB_483.c │ │ │ │ ├── RF_LFEM_MURATA_HFQRXRHJB_483D.c │ │ │ │ ├── RF_LFEM_MURATA_HFQRXRHJB_483D_V2.c │ │ │ │ ├── RF_LNA_MURATA_HFQRX2MJB_453.c │ │ │ │ ├── RF_LPAMID_AVAGO_AFEM_9130_SG1.c │ │ │ │ ├── RF_LPAMID_AVAGO_AFEM_9130_SG1_V2.c │ │ │ │ ├── RF_LPAMID_MURATA_HFQTWDVFA_501.c │ │ │ │ ├── RF_LPAMID_QORVO_QM78077.c │ │ │ │ ├── RF_LPAMID_QORVO_QM78078.c │ │ │ │ ├── RF_PAMID_QORVO_QM78041_ES4.c │ │ │ │ ├── RF_PAM_SKYWORKS_SKY77365_11.c │ │ │ │ ├── RF_SM_S5800.c │ │ │ │ ├── RF_SM_S5810.c │ │ │ │ ├── RF_XGND_QM13124A.c │ │ │ │ ├── RF_XGND_QM13124B.c │ │ │ │ ├── RF_XGND_QM13145_ID0.c │ │ │ │ └── RF_XGND_QM13145_ID1.c │ │ └── StackVar │ │ │ └── MCD │ │ │ └── Code │ │ │ ├── inc │ │ │ └── Tcs_LteBandConfiguration.h │ │ │ └── src │ │ │ ├── TCS_UnifiedSpCfg.c │ │ │ └── TestConfigurationService.c │ └── Platform_EV │ │ ├── CHIPSET │ │ └── S5123 │ │ │ └── device │ │ │ ├── Hw │ │ │ └── src │ │ │ │ ├── hw_Clk.c │ │ │ │ ├── hw_Device.c │ │ │ │ ├── hw_Dvfs.c │ │ │ │ ├── hw_MCUSleep.c │ │ │ │ ├── hw_Pcie_device.c │ │ │ │ ├── hw_Power.c │ │ │ │ ├── hw_Ppmu.c │ │ │ │ ├── hw_RFMSpeedy.c │ │ │ │ ├── hw_Tmu.c │ │ │ │ └── hw_pktProcRtSkb.c │ │ │ ├── PowerSave │ │ │ └── src │ │ │ │ └── ps_HpcmPeripheral.c │ │ │ ├── SecondaryPeripherals │ │ │ └── src │ │ │ │ └── pal_SpRtc.c │ │ │ └── User │ │ │ └── src │ │ │ └── pal_main.c │ │ ├── HAL │ │ └── Common │ │ │ └── driver │ │ │ ├── Adc │ │ │ └── src │ │ │ │ └── drv_Adc.c │ │ │ ├── Capm │ │ │ └── src │ │ │ │ └── hw_Capm.c │ │ │ ├── Dma │ │ │ └── src │ │ │ │ └── xdma.c │ │ │ ├── MemIf │ │ │ └── src │ │ │ │ └── drv_MemIf.c │ │ │ ├── PCIe │ │ │ └── src │ │ │ │ ├── drv_Pcie.c │ │ │ │ ├── hw_Pcie_SBD.c │ │ │ │ ├── hw_Pcie_dma.c │ │ │ │ └── shmCommon.c │ │ │ ├── PowerSave │ │ │ └── src │ │ │ │ ├── ps_ClientReg.c │ │ │ │ ├── ps_Controller.c │ │ │ │ ├── ps_ReqHandler.c │ │ │ │ ├── ps_Scheduler.c │ │ │ │ └── ps_Util.c │ │ │ ├── Speedy │ │ │ └── src │ │ │ │ └── hw_Speedy.c │ │ │ ├── Timers │ │ │ └── src │ │ │ │ └── pal_TmMain.c │ │ │ ├── Uart │ │ │ └── src │ │ │ │ ├── uart_lisr.c │ │ │ │ └── vuart_main.c │ │ │ ├── i2c │ │ │ └── src │ │ │ │ └── hw_i2c.c │ │ │ └── usim │ │ │ └── src │ │ │ ├── hw_Usim.c │ │ │ └── hw_Usim2.c │ │ ├── PAL │ │ ├── BackTraceLog │ │ │ └── src │ │ │ │ └── pal_BackTraceLog.c │ │ ├── BackgroundTask │ │ │ └── src │ │ │ │ └── pal_BackTask.c │ │ ├── Dbg │ │ │ └── Profile │ │ │ │ └── src │ │ │ │ └── dbg_Profile.c │ │ ├── DebugManager │ │ │ └── src │ │ │ │ ├── Cortex │ │ │ │ └── dbg_Core.c │ │ │ │ └── dbg_Trace.c │ │ ├── MemoryInterface │ │ │ ├── MemMng │ │ │ │ └── src │ │ │ │ │ ├── memBufferPool.c │ │ │ │ │ └── memHostifBufMng.c │ │ │ └── src │ │ │ │ ├── pal_MemDebug.c │ │ │ │ └── pal_MemInterface.c │ │ ├── MessageTransport │ │ │ └── src │ │ │ │ └── pal_msg.c │ │ ├── Registry │ │ │ ├── RegStore │ │ │ │ └── src │ │ │ │ │ └── Cortex │ │ │ │ │ └── pal_NvStoreFlash.c │ │ │ └── src │ │ │ │ └── pal_Reg.c │ │ ├── Security │ │ │ └── src │ │ │ │ ├── pal_Security_main.c │ │ │ │ ├── pal_Security_secsb.c │ │ │ │ └── pal_sak_v2.c │ │ └── Utility │ │ │ └── src │ │ │ └── UTIL_Math.c │ │ └── PAL_API │ │ └── HAL │ │ └── src │ │ └── PHAL_API.c └── PSSVar │ ├── LTESpecific │ └── IMS_CC │ │ └── code │ │ └── src │ │ ├── IMS_CC_IpIntfManagement.c │ │ ├── IMS_CC_Main.c │ │ ├── IMS_CC_NsIntfManagement.c │ │ ├── IMS_CC_SUPLIntfHandler.c │ │ └── IMS_CC_VceIntfManagement.c │ └── StackService │ ├── SRM │ └── Code │ │ └── Src │ │ └── SRM_BitrateAdaptation.c │ └── USIM │ └── Code │ └── Src │ ├── usim_LockApps.c │ ├── usim_TerminalProfile.c │ └── usim_VariantManagement.c └── gen.sh /.gitignore: -------------------------------------------------------------------------------- 1 | list.html 2 | -------------------------------------------------------------------------------- /ABOX/OC/NVSS/Chipset/S5123/Src/VHM_Crash.c: -------------------------------------------------------------------------------- 1 | Line 179: DevCheck_A2C [(0x%X):(0x%X):(0x%X)] 2 | -------------------------------------------------------------------------------- /ABOX/OC/NVSS/DM/S5123/Src/VHM_PRINTF.c: -------------------------------------------------------------------------------- 1 | Line 103: Update Abox DM Timestamp 2 | Line 114: Update Abox DM Timestamp 3 | Line 183: [VHM_DM_init] Done 4 | -------------------------------------------------------------------------------- /ABOX/OC/NVSS/main/Src/VHM_Ipc.c: -------------------------------------------------------------------------------- 1 | Line 73: [ABox_UnhandledAction] resAddr (%d) 2 | -------------------------------------------------------------------------------- /ABOX/OC/NVSS/sup/Src/ctmsync.c: -------------------------------------------------------------------------------- 1 | Line 374: [ctmSyncDetect] ctm Rx cntSymbolsSinceEndOfBurst: %d 2 | -------------------------------------------------------------------------------- /ADVCP/CLM/Code/Src/clm_tt_api.c: -------------------------------------------------------------------------------- 1 | Line 324: [CLM_TT] input_parameter_set(): Set g_REPORT_timer %us, g_REPORT_distance %u meters 2 | Line 331: [CLM_TT] is_lcd_on from = %d, to = %d 3 | Line 359: [CLM_TT] control_period(): TRI_PERIOD_ZZ 4 | Line 1257: [CLM_TT] sw_version_noti(): cp sw version= 0x%x 5 | -------------------------------------------------------------------------------- /ADVCP/CLM/Code/Src/clm_tt_comm.c: -------------------------------------------------------------------------------- 1 | Line 625: [CLM_TT] cell_db_request_gci_v3(): db_req_sn: %u, req_type: %u 2 | Line 772: [CLM_TT] cell_db_request_patchlist_v3(): db_req_sn: %u, req_type: %u 3 | Line 1336: [CLM_TT] cell_db_update(): CLM_TT_DB_RESPONSE_FAIL: index %u, max_index %u, size %u 4 | -------------------------------------------------------------------------------- /ADVCP/CLM/Code/Src/clm_tt_db_manage.c: -------------------------------------------------------------------------------- 1 | Line 3021: [CLM_TT] DB_CFG_VER=%d, LV0_CELL=%d 2 | Line 3022: [CLM_TT] LV1_CELL=%d, LV1_PATCH=%d, QMAP_NFREQ=%d 3 | Line 3746: [CLM_TT] db_update_cancel() 4 | -------------------------------------------------------------------------------- /ADVCP/SCLAP/sensorhub/src/drv_sensorhub_uart.c: -------------------------------------------------------------------------------- 1 | Line 92: SSH: UART RX: %d bytes, Stop Rx Timer 2 | Line 122: SSH: GPIO Initialization! 3 | Line 150: SSH: Not supported device with ssh_board_check %d 4 | Line 160: SSH: Not supported device with ssh_board_check %d 5 | Line 236: SSH: Wrong UART RX!! 6 | -------------------------------------------------------------------------------- /CALPSS/LteCommon/Code/src/lte_Serialise.c: -------------------------------------------------------------------------------- 1 | Line 80: pal_EMsgEntity_LTE_L2HTX_PDCP_RRC : %d 2 | Line 81: pal_EMsgEntity_LTERRC_PDCP : %d 3 | Line 82: LTE_PDCP_SECURITY_DATA_REQ : %d 4 | -------------------------------------------------------------------------------- /CALPSS/LteCommon/Code/src/lte_assert.c: -------------------------------------------------------------------------------- 1 | Line 130: LTE_VALIDITY_CHECK : (%s) at %s(%d) 2 | Line 161: Assert : (%s) at %s(%d) 3 | -------------------------------------------------------------------------------- /CALPSS/LteL2/L1TX/Code/src/L1TXPHY_TxChController.c: -------------------------------------------------------------------------------- 1 | Line 154: Scell TX config: Scell ID[%d] invalid 2 | -------------------------------------------------------------------------------- /CALPSS/LteL2/L1TX/Code/src/L1TX_CfgController.c: -------------------------------------------------------------------------------- 1 | Line 148: LTE_CRLC_UL_CONFIG_CNF malloc Fail !! 2 | Line 406: LTE_CPHY_TX_CONFIG_CNF malloc Fail !! 3 | Line 594: TDD : Invalid Delta_Preamble [prach config index : %d] 4 | Line 602: FDD : Invalid Delta_Preamble [prach config index : %d] 5 | -------------------------------------------------------------------------------- /CALPSS/LteL3/LteRrc/Code/inc/LteRrc_CommDb.h: -------------------------------------------------------------------------------- 1 | Line 997: [%s]Invalid RbId in LTERRC_GET_SRB_LCID_TO_RBID (LcId:%d) 2 | Line 1042: [%s]Invalid RbId in LTERRC_GET_DRB_LCID_TO_RBID_FOR_UL (LcId:%d) 3 | Line 1087: [%s]Invalid RbId in LTERRC_GET_DRB_LCID_TO_RBID_FOR_DL (LcId:%d) 4 | -------------------------------------------------------------------------------- /CALPSS/LteL3/LteRrc/Code/src/LteRrc_CommMsgTable.c: -------------------------------------------------------------------------------- 1 | Line 333: [%s][MsgTable] Invalid Msg Id(%d) 2 | Line 339: [%s][MsgTable] Invalid State Id(%d) 3 | -------------------------------------------------------------------------------- /CALPSS/LteL3/LteSae/SAECOMM/Code/src/SAECOMM_DmManagement.c: -------------------------------------------------------------------------------- 1 | Line 952: EBID:%d, Type:%d, EsmState:%d 2 | Line 1838: GS46:%02x, %02x 3 | -------------------------------------------------------------------------------- /CALPSS/LteL3/LteSae/SAEMM/Code/inc/SAEMM_ProcedureManagement.h: -------------------------------------------------------------------------------- 1 | Line 2769: ++LTE PS BARRING - %s 2 | Line 2791: SRNC SynMsgResult = %d 3 | -------------------------------------------------------------------------------- /HEDGE/GSM/GCommon/Code/Src/rr_SiDatabase.c: -------------------------------------------------------------------------------- 1 | Line 1192: Del SI DB for Scell 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GHAL/Code/Src/ghal_BndCfg.c: -------------------------------------------------------------------------------- 1 | Line 185: [GL1 Error] Invalid band, l1CurrentBandMode (%d) arfcn (%d) 2 | Line 218: [GL1 Error] Invalid band (%d) 3 | Line 246: [GL1 Error] Invalid band (%d) 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GHAL/Code/Src/ghal_FrAgc.c: -------------------------------------------------------------------------------- 1 | Line 116: [L1UpdateSlowAgc] agcContext value %d rssi = %d , diffvalue = %d 2 | Line 125: [L1UpdateSlowAgc] Update value %d rssi = %d , diffvaluedB = %d 3 | Line 147: L1UpdateSlowAgcForFB for Inital FB 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GHAL/Code/Src/ghal_FrSeq.c: -------------------------------------------------------------------------------- 1 | Line 330: Remove FBS %x inst:%x 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GHAL/Code/Src/ghal_FrTds.c: -------------------------------------------------------------------------------- 1 | Line 722: [L1FrGetMsdIfsVectorBufferTds] MsdIfsVectorBufferTdsIndex: %d 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/L1C/Code/Src/l1c_op8.c: -------------------------------------------------------------------------------- 1 | Line 115: l1c_clear_sync_info bplmn ARFCN: %d, cleared bplmn variables 2 | Line 145: BPLMN ARFCN removed %d : %d 3 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/L1F/Code/Src/l1f_event.c: -------------------------------------------------------------------------------- 1 | Line 128: The processing of LCSM event is completed frame %d, TS %d 2 | Line 157: Requesting SIM ID wrong. Check! 3 | Line 179: Requesting SIM ID wrong. Check! 4 | Line 190: L1C => MAC :: PH_DATA_TRIGGER_IND Sending Fail 5 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/L1ST/Code/Src/l1st_AmrConfigManager.c: -------------------------------------------------------------------------------- 1 | Line 169: AMR: Config Manger init 2 | Line 309: AmrCodecs[%d]-%d 3 | Line 321: number of codecs used:%d 4 | Line 391: Default case [%d] 5 | Line 514: AMR: REQ timer expired 6 | Line 526: AMR: Ack Timer expired 7 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/L1ST/Code/Src/l1st_ptcch.c: -------------------------------------------------------------------------------- 1 | Line 333: L1SM_PTCCH_Process() event=%d, pendEvent=%d 2 | Line 454: Default case [%d] 3 | Line 463: Default case [%d] 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/L1X/Code/Src/l1x_InterferenceMeas.c: -------------------------------------------------------------------------------- 1 | Line 99: L1x_IntMeasScheduler called 2 | Line 139: l1x_getPriority returned null 3 | Line 162: IntMas Arfcn: %d, RxBlock Allocation:0x%x 4 | Line 180: Interference dispatch avoided for receiving BCCH 5 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/L1X/Code/Src/l1x_UmtsCallback.c: -------------------------------------------------------------------------------- 1 | Line 78: G2U IRAT done. Dsl1rc Rel 2 | Line 99: G2T IRAT done. Dsl1rc Rel 3 | Line 169: G2U IRAT done. Dsl1rc Rel 4 | Line 189: G2T IRAT done. Dsl1rc Rel 5 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/L1X/Code/Src/l1x_gprs_srch.c: -------------------------------------------------------------------------------- 1 | Line 73: l1x_crea_idle_pdch_ctrl: Mode:%d) 2 | Line 282: Disp PTM type(%d) is canceled for PCH/BCCH collision 3 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/L1X/Code/Src/l1x_sa1.c: -------------------------------------------------------------------------------- 1 | Line 1607: isPcsBand set to: %d 2 | Line 1643: L1X: Set Pscell INVALID ARFCN 3 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/L1X/Code/Src/l1x_sa2.c: -------------------------------------------------------------------------------- 1 | Line 55: l1x_search_end Status:%d Arfcn:%d 2 | Line 116: ARFCN %d not in Synch rep 3 | Line 175: FCB_SB_SRCH_END ignored for ARFCN %d 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/SIL/Code/Src/sil_ArfcnInfo.c: -------------------------------------------------------------------------------- 1 | Line 72: Bad ARFCN = %d at line %d in %s 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/SIL/Code/Src/sil_Cch.c: -------------------------------------------------------------------------------- 1 | Line 405: [FRBUF] create AGC Buffer. agcHandle(%d) agcHandle2(%d) arfcn(%d) 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/SIL/Code/Src/sil_Hal_convert.c: -------------------------------------------------------------------------------- 1 | Line 107: [GL1 Error] Invalid bandmode (%d) 2 | Line 158: [GL1 Error] Invalid band (%d) 3 | Line 219: [GL1 Error] Invalid channelType (%d) 4 | Line 267: [GL1 Error] Invalid channelType (%d) 5 | Line 310: [GL1 Error] Invalid Cipher silAlgorithm (%d) 6 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/SIL/Code/Src/sil_IRATSignalGenerate.c: -------------------------------------------------------------------------------- 1 | Line 41: SIL_3GSigGen:start(%d) delta(%d) 2 | Line 62: [G2L] SIL_4GSigGen:start(%d) delta(%d) 3 | Line 80: SIL_3GTDDSigGen:start(%d) delta(%d) 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/SIL/Code/Src/sil_Synch.c: -------------------------------------------------------------------------------- 1 | Line 81: SIL_ModifyTiming(%d) 2 | Line 129: SIL_FrameLastPrimitive(%d) %d 3 | Line 142: TCU_Recovery enabled. Skip checking plkSorterIntHasRun(%d) ! 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/SIL/Code/Src/sil_TchRx.c: -------------------------------------------------------------------------------- 1 | Line 174: Rx User Data blk %d ChanT:%d 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL1/GPHY/SIL/Code/Src/sil_ab.c: -------------------------------------------------------------------------------- 1 | Line 121: [GL1 Error] Invalid AB type (%d) 2 | Line 149: SIL_PrepareAbTransmission arfcn:%d band:%d bsic:%d data:0x%x 3 | Line 151: extended:%d isPrach:%d power:%d startOffset:%d 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL2/GLAPD/Code/Src/dl_timrc.c: -------------------------------------------------------------------------------- 1 | Line 51: Rec RR/REJ (NR=%d) 2 | Line 56: N(R) Possible sequence error 3 | Line 192: T200 in TIM RC : %d 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL2/GMAC/Code/Src/mac_log.c: -------------------------------------------------------------------------------- 1 | Line 136: MSG[GL2]: %s 2 | Line 235: TimerExpiry: %s 3 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL2/GMAC/Code/Src/mac_trigger.c: -------------------------------------------------------------------------------- 1 | Line 62: Old block %d (%d) 2 | Line 79: Duplicate Trgiier data dropped 3 | Line 97: Trigger buffer failure! %d %d ID %d 4 | Line 197: Old block %d (%d) 5 | Line 214: Duplicate Trgiier data dropped 6 | Line 232: Trigger buffer failure! %d %d ID %d 7 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL2/GRLC/Code/Src/rlc_control.c: -------------------------------------------------------------------------------- 1 | Line 163: PRR tp %d rp %d op %d llc %d 2 | Line 169: PRR octet %d 3 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL2/GRLC/Code/Src/rlc_log.c: -------------------------------------------------------------------------------- 1 | Line 113: MSG[GL2]: %s 2 | Line 167: TimerExpiry: %s 3 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL2/GRLC/Code/Src/rlc_resource.c: -------------------------------------------------------------------------------- 1 | Line 156: TxPRR PDU %d counter %d (IMM %d) 2 | Line 246: Re-Init PDU Table 3 | Line 283: PRR PDU op mode (%d), curren op mode (%d), prr pdu(%d) 4 | Line 293: PRR PDU match %d 5 | Line 301: PRR PDU not matched 6 | Line 307: PRR PDU not matched 7 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL2/GRLC/Code/Src/rlc_test_mode.c: -------------------------------------------------------------------------------- 1 | Line 186: Norm Rel off(%d) len(%d) modlen(%d) 2 | Line 191: Len adjusted 3 | Line 243: NULL Pointer Return 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL3/GRR/Code/Src/rr_ext.c: -------------------------------------------------------------------------------- 1 | Line 174: Stop Timer 3178 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL3/GRR/Code/Src/rr_os.c: -------------------------------------------------------------------------------- 1 | Line 41: ERROR RtkGetMemory returned NULL 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL3/GRR/Code/Src/rr_psi3bis.c: -------------------------------------------------------------------------------- 1 | Line 1137: ServCell Arfcn is in BA list(%d) 2 | Line 1141: RebuildNCellDesc:%d 3 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL3/GRR/Code/Src/rr_psi3quater.c: -------------------------------------------------------------------------------- 1 | Line 88: 3G_SEARCH_PRIO (%d) shall be ignored by the receiver for backward compatibility 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL3/GRR/Code/Src/rr_psi3ter.c: -------------------------------------------------------------------------------- 1 | Line 92: ERROR out of bound 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL3/GRR/Code/Src/rr_psysin.c: -------------------------------------------------------------------------------- 1 | Line 183: Message not handled (Typ:0x%X) 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL3/GRR/Code/Src/rr_si9.c: -------------------------------------------------------------------------------- 1 | Line 44: ERROR RtkGetMemory returned NULL 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/GL3/GRR/Code/Src/rr_ut_d.c: -------------------------------------------------------------------------------- 1 | Line 67: Ncc 0x%x NOT permitted 2 | Line 162: StTime Fn Mod 42432: %d 3 | Line 164: CUR_FN(%d) 4 | Line 182: Starting Time, %d ticks 5 | -------------------------------------------------------------------------------- /HEDGE/GSM/Interface/GL1/Src/ghal_Audsq.c: -------------------------------------------------------------------------------- 1 | Line 125: [2G AUDIO BUFF] handle_p:0x%x, speechBuffer:0x%x 2 | Line 265: vbIfControlTds_p:configure 3 | Line 408: L1AlUlSpeechPresent : Tx packet will be discard! 4 | Line 451: L1AlAmrUlSpeechPresent : Tx packet will be discard! 5 | -------------------------------------------------------------------------------- /HEDGE/GSM/Interface/GL1/Src/ghal_RegMap.c: -------------------------------------------------------------------------------- 1 | Line 112: [2G_REG]GHAL_SetUpModemReg 2 | Line 113: [2G_REG] pGHAL_REG_GSM_TCU0:%p 3 | Line 143: [2G_REG]GHAL_SetDownModemReg 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/Interface/GL1/Src/ghal_Rf_Import.c: -------------------------------------------------------------------------------- 1 | Line 332: [2G_MARCONI] CC0 VALID LOCKED 2 | Line 363: [GsmTxPowerConsumption] TxArfcn(%d), TxBand(%d), TxPwr(%d), PowerConsumption(%d) 3 | -------------------------------------------------------------------------------- /HEDGE/GSM/Interface/GL1/Src/ghal_SqTxdc.c: -------------------------------------------------------------------------------- 1 | Line 237: Deac Tx Ded Step:%d res idx:%d, %d 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/Interface/GL1/Src/ghal_SqTxra.c: -------------------------------------------------------------------------------- 1 | Line 219: Deac Tch Rach Step:%d 2 | -------------------------------------------------------------------------------- /HEDGE/GSM/Interface/GL1/Src/sil_irat_rssi.c: -------------------------------------------------------------------------------- 1 | Line 106: ARFCN(%d), isPcsBandUsed = %d 2 | Line 167: MB IQ [PRX][40SYM] 3 | Line 168: MB IQ [DRX][40SYM] 4 | Line 174: MB IQ [80SYM] 5 | Line 177: monitor div_mode:%x, readindx:%d ,address:%x 6 | -------------------------------------------------------------------------------- /HEDGE/GSM/Interface/GL1/Src/sil_ptcch.c: -------------------------------------------------------------------------------- 1 | Line 254: GOOD PTCCH diHandle 0x%x errorCount %d 2 | Line 259: BAD PTCCH diHandle 0x%x errorCount %d 3 | Line 371: PTCCH DecodeNB rxHandle %x, diHandle %x currentDspQbitOffset %d, startQbit %d 4 | Line 406: Destroy only PTCCH rxHandle 0x%x 5 | -------------------------------------------------------------------------------- /HEDGE/GSM/Interface/GL3/Src/rr_import.c: -------------------------------------------------------------------------------- 1 | Line 321: OMC_FEATURE : Update Reg index = %d, value = %d 2 | Line 350: [Service Provider]:%s [FCI]: %s [DtmSupport] : %d, [VamosSupported] : %d 3 | Line 355: [Service Provider]:%s [FCI]: %s [DtmSupport] : %d, [VamosSupported] : %d 4 | -------------------------------------------------------------------------------- /HEDGE/GSM/Interface/GL3/Src/rr_srrc_main_import.c: -------------------------------------------------------------------------------- 1 | Line 155: [RR_SRRC] Wrong type(%d) 2 | -------------------------------------------------------------------------------- /HEDGE/HCommon/HFunction/Code/Src/hfcn_write.c: -------------------------------------------------------------------------------- 1 | Line 150: [*] hfcn_GetPlmnIdUsingEfImsi, IMSI: %x:%x:%x:%x:%x:%x 2 | Line 169: [*] mcc: %x, mnc:%x, plmn: %x 3 | Line 188: [*] SIM TYPE: %d 4 | Line 253: [*] hfcn_UpdateInitialPolicy: simtype:%d 5 | -------------------------------------------------------------------------------- /HEDGE/HCommon/UCommon/Code/Src/Ul1Ul2Gateway.c: -------------------------------------------------------------------------------- 1 | Line 127: TDD mode will be started 2 | Line 182: UMTS_RAT_MODE_REQ[id:%d] received UPHY_CREATE 3 | Line 200: URRC Token. aTokenP->iDeadline = %d, aTokenP->iTimestamp = %d, Cur RSN %d 4 | -------------------------------------------------------------------------------- /HEDGE/HCommon/UCommon/List/Code/Src/uphy_CList.c: -------------------------------------------------------------------------------- 1 | Line 147: objectListElem == NULL pointer 2 | Line 200: smc_MemMMPRegAlloc failure: newListElem == NULL pointer 3 | -------------------------------------------------------------------------------- /HEDGE/HCommon/UFramework/Code/Inc/smc_list.inl: -------------------------------------------------------------------------------- 1 | Line 519: SMC: TokenPoolQ Pointers FirstP=0x%x, LastP=0x%x 2 | Line 519: SMC: TokenPoolQ Pointers FirstP=0x%x, LastP=0x%x 3 | -------------------------------------------------------------------------------- /HEDGE/HCommon/UFramework/Code/Src/smc_osal.c: -------------------------------------------------------------------------------- 1 | Line 2279: pal_TaskAfcHandler_EDFS: currentRSN %d 2 | Line 2844: Debug smc_TimerExpiredAfc: timer exipired when KernDfcQue have unhandled expiry 3 | -------------------------------------------------------------------------------- /HEDGE/HedgeExport/UMAC_DB.inl: -------------------------------------------------------------------------------- 1 | Line 357: UPhy StatusInd Rcd Pwr:%d, TFCI:%d,Bd:%d,Bc:%d 2 | -------------------------------------------------------------------------------- /HEDGE/NASL3/CC/Code/Src/cc_BearerManagement.c: -------------------------------------------------------------------------------- 1 | Line 56: NORMAL Initialisation of 2 | Line 62: GSM to UMTS Initialisation of 3 | Line 68: UMTS to GSM Initialisation of 4 | Line 76: Unknown Initialisation Type (%x) in cc_InitialiseBearerManagement 5 | -------------------------------------------------------------------------------- /HEDGE/NASL3/CC/Code/Src/cc_CodeId.c: -------------------------------------------------------------------------------- 1 | Line 36: CC Code Id -> %s 2 | Line 48: D-Mode Project Code Id -> %s 3 | -------------------------------------------------------------------------------- /HEDGE/NASL3/CC/Code/Src/cc_CugManagement.c: -------------------------------------------------------------------------------- 1 | Line 43: NORMAL Initialisation of 2 | Line 49: GSM to UMTS Initialisation of 3 | Line 55: UMTS to GSM Initialisation of 4 | Line 63: Unknown Initialisation Type (%x) in cc_InitialiseCugManagement 5 | -------------------------------------------------------------------------------- /HEDGE/NASL3/CC/Code/Src/cc_EmlppManagement.c: -------------------------------------------------------------------------------- 1 | Line 34: NORMAL Initialisation of 2 | Line 40: GSM to UMTS Initialisation of 3 | Line 46: UMTS to GSM Initialisation of 4 | Line 54: Unknown Initialisation Type (%x) in cc_InitialiseEmlppManagement 5 | -------------------------------------------------------------------------------- /HEDGE/NASL3/CC/Code/Src/cc_MsgDescription.c: -------------------------------------------------------------------------------- 1 | Line 1661: cc_MapSubTypeToMessageNum SubType = 0x%x 2 | -------------------------------------------------------------------------------- /HEDGE/NASL3/LLC/Code/Src/llc_Crc.c: -------------------------------------------------------------------------------- 1 | Line 81: llc_CalculateCrc() BlockCrc %08X, BlockAdd %08X, BlockLength %d, Crc %08X 2 | Line 99: CRC Fail Calculated %02X %02X %02X, Received %02X %02X %02X 3 | -------------------------------------------------------------------------------- /HEDGE/NASL3/LLC/Code/Src/llc_FlowControlManagement.c: -------------------------------------------------------------------------------- 1 | Line 112: iscellUpdate set to false 2 | -------------------------------------------------------------------------------- /HEDGE/NASL3/LLC/Code/Src/llc_TlliManagement.c: -------------------------------------------------------------------------------- 1 | Line 42: TLLIOld received from GMM 0x%x 0x%x 0x%x 0x%x 2 | Line 43: TLLINew received from GMM 0x%x 0x%x 0x%x 0x%x 3 | Line 44: CipheringAlgorithm received from GMM %d 4 | -------------------------------------------------------------------------------- /HEDGE/NASL3/MM/Code/Src/mm_GmmRrConManagement.c: -------------------------------------------------------------------------------- 1 | Line 77: Unknown Initialisation Type (%x) 2 | Line 176: GMM_IDLE sent to GRR 3 | Line 183: GMM_READY sent to GRR 4 | Line 190: GMM_STANDBY sent to GRR 5 | Line 197: Unknown GMM Functional State (%x) in mm_GetGmmFunctionalStateForRr, Assuming GMM_IDLE 6 | -------------------------------------------------------------------------------- /HEDGE/NASL3/MM/Code/Src/mm_GmmSndcpIntfManagement.c: -------------------------------------------------------------------------------- 1 | Line 123: NpduNumPtr 2 | Line 158: Data Resumed on GSM so Send Ind to URRC and Check Conn Released or not 3 | Line 251: GMMSN_REEST_REQ not expected in state %s 4 | Line 258: ERROR: GMMSN_REEST_REQ received in MM_UMTS_RAT_MODE 5 | -------------------------------------------------------------------------------- /HEDGE/NASL3/MM/Code/Src/mm_GmmSsIntfManagement.c: -------------------------------------------------------------------------------- 1 | Line 249: GMM SIM is considered INVALID !...Operations Abnorted ! 2 | Line 257: RAT Change occurring, Message Ignored ! 3 | -------------------------------------------------------------------------------- /HEDGE/NASL3/SM/Code/Src/sm_CodeId.c: -------------------------------------------------------------------------------- 1 | Line 54: SM Code Id -> %s 2 | Line 68: D-Mode Project Code Id -> %s 3 | -------------------------------------------------------------------------------- /HEDGE/NASL3/SM/Code/Src/sm_PmInterface.c: -------------------------------------------------------------------------------- 1 | Line 127: PrevCid -> %d, NewCid -> %d Current RAT %d 2 | Line 151: UE is not in 2G/3G 3 | Line 153: [%d] CID is updated for NSAPI(%d) 4 | Line 183: [%d] CID %d's State(%d) Stack %d 5 | -------------------------------------------------------------------------------- /HEDGE/NASL3/SNDCP/Code/Src/V42b_enc.c: -------------------------------------------------------------------------------- 1 | Line 457: v42bSetupCompress() : Overrun - call, sieze of codewordSizeX100 is 4 (%d) 2 | -------------------------------------------------------------------------------- /HEDGE/NASL3/SNDCP/Code/Src/V42b_int.c: -------------------------------------------------------------------------------- 1 | Line 48: v42InitDict dictSize %d 2 | Line 52: pDict NULL 3 | Line 58: pcompBuffer NULL 4 | Line 74: rcpcompBuffer NULL 5 | -------------------------------------------------------------------------------- /HEDGE/NASL3/SNDCP/Code/Src/V42bdict.c: -------------------------------------------------------------------------------- 1 | Line 391: v42bDictReinit 2 | -------------------------------------------------------------------------------- /HEDGE/NASL3/SS/Code/Src/ss_CallerNamePresent.c: -------------------------------------------------------------------------------- 1 | Line 135: Invalid REQ 2 | Line 224: Disp Msg Contents: %s 3 | Line 258: Oss Encoding Failed 4 | Line 266: Oss Encoding Failed 5 | Line 323: Invalid OP Type 6 | Line 371: Disp Msg Contents: %s 7 | Line 427: Disp Msg Contents: %s 8 | -------------------------------------------------------------------------------- /HEDGE/NASL3/SS/Code/Src/ss_Emlpp.c: -------------------------------------------------------------------------------- 1 | Line 243: Invalid REQ 2 | Line 286: Invalid REQ 3 | Line 595: Disp Msg Contents: %s 4 | -------------------------------------------------------------------------------- /HEDGE/NASL3/SS/Code/Src/ss_GapiIntfManagement.c: -------------------------------------------------------------------------------- 1 | Line 137: Bearer Name = %s 2 | Line 255: Unknwon ServiceType 3 | Line 296: Disp Msg Contents: %s 4 | Line 331: Disp Msg Contents: %s 5 | Line 362: Unable To Send %s 6 | Line 406: Unable To Send %s 7 | Line 466: RAT Mode -> %s 8 | -------------------------------------------------------------------------------- /HEDGE/NASL3/SS/Code/Src/ss_MultiCall.c: -------------------------------------------------------------------------------- 1 | Line 635: Disp Msg Contents: %s 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/Interface/THAL/src/hal_dmover_3g_Import.c: -------------------------------------------------------------------------------- 1 | Line 138: GetDmCilentId():WorngNumber=%d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/Interface/THAL/src/hal_modem_3g_Import.c: -------------------------------------------------------------------------------- 1 | Line 215: Setting TDS modem clock : Mode=%d[%s] 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/Interface/THAL/src/pal_hpcm_3g_Import.c: -------------------------------------------------------------------------------- 1 | Line 480: [HPCM]TDSCDMA: Init() -START- 2 | Line 485: [HPCM]TDSCDMA: MPLL [ON] 3 | Line 496: [HPCM]TDSCDMA: MODEM [ON] 4 | Line 530: [HPCM]TDSCDMA: DSP [ON] 5 | Line 540: [HPCM]TDSCDMA: RF [ON] 6 | Line 543: [HPCM]TDSCDMA: Init() -END- 7 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/dl/src/thal_CHmcpData.c: -------------------------------------------------------------------------------- 1 | Line 143: Memory allocation failed this->cctrchPortArray=NULL 2 | Line 153: Memory allocation failed this->cctrchDeadlineArray=NULL 3 | Line 198: wrong cctrch number: cctrchNr %d 4 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/dl/src/thal_CHmcpDlCctrchRelease.c: -------------------------------------------------------------------------------- 1 | Line 158: DlCctrchRelease: Array index out of bound %d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/dl/src/thal_CHmcpDlCctrchStop.c: -------------------------------------------------------------------------------- 1 | Line 148: DlCctrchStop: Array index out of bound %d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/dl/src/thal_CHmcpDlPhychConfig.c: -------------------------------------------------------------------------------- 1 | Line 121: DlPhychConfig: phyChType = %d, phyChNum = %d, slotString = 0x%x 2 | Line 140: DlPhychConfig: for slot = %d, midAmbleType = %d, offlineMode = %d 3 | Line 141: DlPhychConfig: for slot = %d, sf = %d, chcode = 0x%x, , cellId = %d 4 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/dl/src/thal_CHmcpDlTrchConfig.c: -------------------------------------------------------------------------------- 1 | Line 122: DLTrchConfig: trchnr = %d type = %d 2 | Line 183: DLTrchConfig: wrong trch state. trchnr = %d old_state = %d old_type = %d 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/dl/src/thal_CHmcpDlTrchRelease.c: -------------------------------------------------------------------------------- 1 | Line 112: DLTrchrelease: trchnr = %d 2 | Line 170: DLTrchRelease: wrong state. trchnr = %d old_state = %d 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/dl/src/thal_CTfc.c: -------------------------------------------------------------------------------- 1 | Line 117: tfcTable is NULL from TL1_Mem_Alloc 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/eUL/src/thal_CHmcpEdchCctrchToEncode.c: -------------------------------------------------------------------------------- 1 | Line 89: Etfci %d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/eUL/src/thal_CHmcpEdpchConfig.c: -------------------------------------------------------------------------------- 1 | Line 244: TS %d midAllocMode %d midConfig %d midShift %d 2 | Line 282: Edpch Config 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/eUL/src/thal_CHmcpEdpchRelease.c: -------------------------------------------------------------------------------- 1 | Line 115: Edpch Release 2 | Line 334: Cancel WT Timer Token 3 | Line 347: Cancel Select Uppch Token 4 | Line 355: Cancel First Uppch Token 5 | Line 363: Cancel Stop Uppch Token 6 | Line 388: Cancel Erucch Encode Token 7 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/eUL/src/thal_CHmcpEdpchStart.c: -------------------------------------------------------------------------------- 1 | Line 106: Edpch Start 2 | Line 167: [THAL_DSP_WRITE_ELEM] scrCode(%d) pRxDesBase(%d) tpcStepSize(%d) beaconPlEst(%d) epuchPcGap(%d) 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/hsdpa/src/thal_CHmcpHsPdschEnable.c: -------------------------------------------------------------------------------- 1 | Line 98: HsPdschEnable_Request: HS UE category = %d MidType = %d MidCong = %d Shift = %d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/hsdpa/src/thal_CHmcpHsPdschHarqConfig.c: -------------------------------------------------------------------------------- 1 | Line 105: HSPDSCH HARQ config t(), numOfHarqProcesses = %d, HS Category = %d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/irat/measurementServer/src/thal_CMeasurementRequest.c: -------------------------------------------------------------------------------- 1 | Line 75: Memory Allocation Error 2 | Line 122: Memory Allocation Error 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/rf/src/thal_CHmcpRfOn.c: -------------------------------------------------------------------------------- 1 | Line 165: During RF on : RFIC initialized 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/rf/src/thal_CHmcpRxOff.c: -------------------------------------------------------------------------------- 1 | Line 92: ### Rx off Cmd is called ### 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/rf/src/thal_CHmcpRxOn.c: -------------------------------------------------------------------------------- 1 | Line 96: ### Rx on Cmd is called ### 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/rf/src/thal_CHmcpTxOff.c: -------------------------------------------------------------------------------- 1 | Line 92: thal_CHmcpTxOff_request() 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/rf/src/thal_CHmcpTxOn.c: -------------------------------------------------------------------------------- 1 | Line 209: [Tx]GetNeedToChangeBand (Pre %d VS. Cur %d) 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/searcher/src/thal_CHmcpSrchPccpchFrameSync.c: -------------------------------------------------------------------------------- 1 | Line 135: S3_SEARCHER_UNDO 2 | Line 207: S3 Srch:PccpchFrameSyncProcess activated 3 | Line 215: S3 Srch: PccpchFrameSyncPrcs ABORT triggered 4 | Line 226: S3 Srch: PccpchFrameSyncPrcs: cmd_ptr==0 5 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/ul/src/thal_CHmcpCctrchToEncode.c: -------------------------------------------------------------------------------- 1 | Line 221: Cctrch To Encode: TrchNr %d TB Num %d TB Size %d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/ul/src/thal_CHmcpPrach.c: -------------------------------------------------------------------------------- 1 | Line 72: aSeedTddPrach High %d Low %d 2 | Line 167: syncUlCodeBitmap %d syncUlCodeIndiceBitmap %d 3 | Line 188: numAvailSignatures %d 4 | Line 218: numAvailSubChan %d 5 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/ul/src/thal_CHmcpPrachConfig.c: -------------------------------------------------------------------------------- 1 | Line 115: SynchInfoHO: Prach Config 2 | Line 171: Prach Config (isErucchConfig %d) 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/ul/src/thal_CHmcpUlDpch.c: -------------------------------------------------------------------------------- 1 | Line 407: [DPCH_CFG] BHO Triggered 2 | Line 408: [DPCH_CFG] isPresynchHO Triggered 3 | Line 409: [DPCH_CFG] isSynchInfoHO Triggered 4 | Line 414: [DPCH_CFG] None of HO type is configured. 5 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/ul/src/thal_CHmcpUlDpchConfig.c: -------------------------------------------------------------------------------- 1 | Line 104: UL Dpch Config 2 | Line 131: DTM RP %d RL %d ActTime %d Off %d 3 | Line 144: SlotNr %d isPhych[0] %d isPhych[1] %d midConfig %d midAllocMode %d midShift %d 4 | Line 250: [THAL_DSP_WRITE_ELEM] PC Mode Control, 0x1(CPU) 5 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/ul/src/thal_CHmcpUlTrchConfig.c: -------------------------------------------------------------------------------- 1 | Line 160: UL Trch Config [%d] 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/THAL_3XXAP/ul/src/thal_CHmcpUlTrchRelease.c: -------------------------------------------------------------------------------- 1 | Line 99: UL Trch Release [%d] 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/ChMgt/edch/src/tphy_CEdchResources.c: -------------------------------------------------------------------------------- 1 | Line 77: theResourceController == NULL 2 | Line 109: tphy_CEDchResources Instance mem allocation failed 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/ChMgt/genChCtrl/src/tphy_CFSM.c: -------------------------------------------------------------------------------- 1 | Line 86: fSM_ptr->eventList == NULL 2 | Line 108: ESmcPanicL1FSM 3 | Line 447: ESmcPanicL1FSM 4 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/ChMgt/genChCtrl/src/tphy_CFSMEventDeadlineList.c: -------------------------------------------------------------------------------- 1 | Line 115: tphy_CFSMEventDeadlineList_isInsertCriteriaMet -For messages with not specified deadline 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/messaging/src/buildTphyUrrcMessages.c: -------------------------------------------------------------------------------- 1 | Line 668: numOfGsmCells is over max 2 | Line 707: numOfGsmCells is over max 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/messaging/src/tphy_CMessageProcessor.c: -------------------------------------------------------------------------------- 1 | Line 38: ESmcPanicUphyPureVirtual 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/messaging/src/tphy_CMsgDeadlineList.c: -------------------------------------------------------------------------------- 1 | Line 108: For messages with not specified deadline - use uphy_CList_addObjectToTail() 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/misc/src/tphy_IsUlDchReadyForData.c: -------------------------------------------------------------------------------- 1 | Line 54: [ST%d T_DSDS] autoPauseTimerStatus %d timeToAutoPause %d 2 | Line 60: tphy_cUlDchProcessor_ptr == NULL 3 | Line 67: [ST%d T_DSDS] isUlReadyForData %d isUlReady %d isRfPauseDelayed %d 4 | Line 85: cUlDchProcessor_ptr == NULL 5 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/misc/src/tphy_LmacGateway.c: -------------------------------------------------------------------------------- 1 | Line 49: etfci %d trBlkSz %d rsn %d harqId %d harpPwOff %d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/cellSrchScheduler/src/tphy_CEutraStepFsm.c: -------------------------------------------------------------------------------- 1 | Line 159: SFN = %d Slot = %d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/cellSrchScheduler/src/tphy_CGsmStepFsm.c: -------------------------------------------------------------------------------- 1 | Line 121: GsmFsmReqMsg : SFN = %d Slot = %d 2 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/cellSrchScheduler/src/tphy_CRfRssiStepFsm.c: -------------------------------------------------------------------------------- 1 | Line 132: SchMgr:RfRssiReply:[%d][%d] Command[%d,%d] result: Rssi %d for uarfcn=%d 2 | Line 177: SchMgr:RfRssistep:[%d][%d]: cmd[%d,%d] uarfcn=%d isOffline=%d 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/cellSrchScheduler/src/tphy_CSearcherAfcStepFsm.c: -------------------------------------------------------------------------------- 1 | Line 183: SchMgr:SrchrAfc:Unknown AFC_Mode=%d 2 | Line 196: SchMgr:SrchrAfc:RSN=%d:SearcherAfcFSM[%d][%d] step NON CM gap Command[%d,%d]: uarfcn=%d 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/cellSrchScheduler/src/tphy_CSearcherMidambleStepFsm.c: -------------------------------------------------------------------------------- 1 | Line 141: SchMgr:MidambleReplyInfo:[%d][%d] results Command[%d,%d]: 2 | Line 205: SchMgr:MidambleStep:[%d][%d] cmd[%d,%d] 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/cellSrchScheduler/src/tphy_CSearcherMultipathStepFsm.c: -------------------------------------------------------------------------------- 1 | Line 152: SchMgr: Unknown MP_mode=%d 2 | Line 160: SchMgr: fbId[%d],instanceId [%d],commandId[%d] and its instanceId [%d] 3 | Line 242: SchMgr: Unknown MP_mode=%d 4 | Line 252: SchMgr :MultipathStep:[%d][%d] cmd[%d,%d] 5 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/cellSrchScheduler/src/tphy_CSearcherPccpchFrameSyncStepFsm.c: -------------------------------------------------------------------------------- 1 | Line 113: SchMgr:S3Fsm:[%d][%d] results Command[%d,%d]: 2 | Line 155: SchMgr:S3:[%d][%d] cmd[%d,%d] 3 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/cellSrchScheduler/src/tphy_SchedulerMsgs.c: -------------------------------------------------------------------------------- 1 | Line 35: SchMgr:ReleasedTransitionMsg:msg == NULL pointer 2 | Line 69: SchMgr:RssiReqMsg: msg == NULL pointer 3 | Line 128: msg == NULL pointer 4 | Line 151: msg == NULL pointer 5 | Line 179: msg == NULL pointer 6 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/cellSrchScheduler/src/tphy_SchedulerUtil.c: -------------------------------------------------------------------------------- 1 | Line 78: SchMgr:FillUmtsHeader:Unexpected SearcherController msg 2 | Line 91: SchMgr:FillUmtsHeader:Unexpected MeasurementController msg 3 | Line 98: SchMgr:FillUmtsHeader:Unexpected Scheduler Client 4 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/iratMsmt/inc/tphy_CEutraCellReselectionMeasurementMidServer.inl: -------------------------------------------------------------------------------- 1 | Line 45: [IRAT T2L] EutraCellReselection outstandingRequests=%d 2 | Line 45: [IRAT T2L] EutraCellReselection outstandingRequests=%d 3 | Line 45: [IRAT T2L] EutraCellReselection outstandingRequests=%d 4 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/iratMsmt/src/tphy_CGsmCellManager.c: -------------------------------------------------------------------------------- 1 | Line 74: [IRAT U2G] cellInfo==NULL pointer !!! 2 | Line 101: [IRAT U2G] cellInfo==NULL pointer !!! 3 | Line 152: [IRAT U2G] ARFCN=%d belongs to invalid BAND 4 | -------------------------------------------------------------------------------- /HEDGE/TL1/TL1C/rrm/tddMsmt/src/tphy_CTransactIdUarfcnMidambleIndexMap.c: -------------------------------------------------------------------------------- 1 | Line 124: isExtractCriteriaMet :SeekCriteriaType 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/DSCOMMON/Code/Src/DsCommon.c: -------------------------------------------------------------------------------- 1 | Line 154: L1Instance Status [%d %d] 2 | Line 167: 3G3G: RSN is in Past Client ID= %d RSN = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/Interface/UHAL/Src/hal_rx_filter_3gf_Import.c: -------------------------------------------------------------------------------- 1 | Line 539: SetRfFilterCommon 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/CPC/Code/Src/uhal_CHmcpUeDrxConfig.c: -------------------------------------------------------------------------------- 1 | Line 145: [IPC:IPC_CONSUMER_ACTION_ID_UE_DRX_CONFIG_REQUEST] execution=%d 2 | Line 152: uhal_CHmcpUeDrxConfig.c Drx configured in dsp ueDrxCycle: %d, ueDrxConf->inactiveThresholdForDrx: %d, tauDpch: %d, ueDrxConf->tauDrx: %d, drxActiveCfn: %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/CPC/Code/Src/uhal_CHmcpUeDrxRelease.c: -------------------------------------------------------------------------------- 1 | Line 114: [IPC:IPC_CONSUMER_ACTION_ID_UE_DRX_RELEASE_REQUEST] execution=%d 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/Irat/Code/Src/uhal_CMeasurementQueue.c: -------------------------------------------------------------------------------- 1 | Line 46: Memory Allocation Error 2 | Line 130: req->reqPathArray or reqPathArray are NULL !!! 3 | Line 158: Invalid: numOfRequestedCells %d should be less than maxNumOfCells %d 4 | Line 164: Measurement Queue Full 5 | Line 212: Queue is empty 6 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/Irat/Code/Src/uhal_CMeasurementRequest.c: -------------------------------------------------------------------------------- 1 | Line 59: Memory Allocation Error 2 | Line 82: Memory Allocation Error 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/Misc/Code/Src/uhal_CmdPool.c: -------------------------------------------------------------------------------- 1 | Line 85: this->numOfCmdIdInstances=0 cmdId=%d 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpAfcEnable.c: -------------------------------------------------------------------------------- 1 | Line 224: uhal_CHmcpAfcEnable_init initAfcPdm %d 2 | Line 245: AFC initilize AFC_GAIN_FIELD set to %d AFC_LF_OUT_SEL_FIELD set to %x AFC_PDM_INIT set to %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpFreqAdjust.c: -------------------------------------------------------------------------------- 1 | Line 125: activeStackId %d AFC reset: isGsmAfcCalDone=%d, gsmAfcDacIn=%d, signed pdmInput=%d, unsigned pdmInput=%d, unsigned FddOut=%d 2 | Line 211: campingUarfcn=%d, bandClass=%d, RakeEcIo=%d, afcFreqCombGain=%d 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpRfAPI.c: -------------------------------------------------------------------------------- 1 | Line 95: SetExtLNA bandClass %d 2 | Line 140: LNA_GAIN_SWITCH_1 lnaGainOffset %d lnaFall %d lnaRise %d lnaHyst %d 3 | Line 204: Calibration LNA Mode 0x%x 4 | Line 208: Wrong LNA Mode 0x%x 5 | Line 211: enable lnaMode %d path %d 6 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpRfOff.c: -------------------------------------------------------------------------------- 1 | Line 93: activeStackId %d RF set to OFF 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpRfOn.c: -------------------------------------------------------------------------------- 1 | Line 145: uhal_CHmcpRfOn_request:rfOnCmd==NULL 2 | Line 167: uhal_CHmcpRfOn_request 3 | Line 223: cmdPtr is NULL 4 | Line 238: activeStackId %d uhal_CHmcpRfOn_response commandId %d 5 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpRxGain.c: -------------------------------------------------------------------------------- 1 | Line 85: activeStackId %d camping_band_class=%d, last_rx_class=%d 2 | Line 90: activeStackId %d ############Gaintable & MAPPER RAM Load START############ 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpRxOff.c: -------------------------------------------------------------------------------- 1 | Line 101: Sub SIM RX Off: Common DR Configuration Disabled 2 | Line 108: RF Rx set to OFF 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpRxOn.c: -------------------------------------------------------------------------------- 1 | Line 97: activeStackId %d ### Rx on Cmd is called with Irat gap = %d afterBplmn %d RatMode %d ### 2 | Line 114: RX ON : SubSIM Uarfcn Same as Main SIM, Skipping RX ON 3 | Line 153: activeStackId %d ### uhal_HmcpModemSel_AfterSleep ### 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpTxOff.c: -------------------------------------------------------------------------------- 1 | Line 95: activeStackId %d uhal_CHmcpTxOff_request mode %d 2 | Line 111: activeStackId %d OPEN_LP_WR 3 | Line 115: activeStackId %d ## Warning!! uhal_HmcpIpcGetDstStatus is False## 4 | Line 118: activeStackId %d current_tx_power %d 5 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpTxOn.c: -------------------------------------------------------------------------------- 1 | Line 102: activeStackId %d uhal_CHmcpTxOn_request mode %d last_tx_power %d 2 | Line 116: activeStackId %d ## Warning!! uhal_HmcpIpcGetDstStatus is False## 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/RxFilter/Code/Src/uhal_CHmcpTxUarfcn.c: -------------------------------------------------------------------------------- 1 | Line 115: activeStackId %d tx_uarfcn %d tx_freq %d 2 | Line 234: activeStackId %d uhal_CHmcpTxUarfcn_GetUarfcn %d 3 | Line 248: activeStackId %d uhal_CHmcpTxUarfcn_SetUarfcn %d 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/hsupa/Code/Src/uhal_CHmcpEdchCctrchToEncode.c: -------------------------------------------------------------------------------- 1 | Line 77: sizeOfTrBlock %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/hsupa/Code/Src/uhal_CHmcpEdpchConfig.c: -------------------------------------------------------------------------------- 1 | Line 247: activeStackId %d [CONFIG REQ] eDpchConf->minReducedGainFactor %d 2 | Line 269: activeStackId %d Invalid E-DCH TTI 3 | Line 321: Unknown E-DCH TTI 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/hsupa/Code/Src/uhal_CHmcpEdpchStart.c: -------------------------------------------------------------------------------- 1 | Line 169: activeStackId %d EDpchStart [UL_CH_INFO] 0x%x 2 | Line 176: activeStackId %d ## Warning!! uhal_HmcpIpcGetDstStatus is False## 3 | Line 223: activeStackId %d Mismatched E-TTI 4 | Line 240: Skip reset gAgRgHichInfo because DS Resume 5 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/hsupa/Code/Src/uhal_CHmcpHsupaDlPhychConfig.c: -------------------------------------------------------------------------------- 1 | Line 147: HsupaDlPhychConfig: phychNr = %d, hsupaPhychNr = %d, phychType = %d, Is E-RNTI(Pri, Sec) = (%d, %d), E-RNTI(Pri, Sec) = (%d, %d) 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/hsupa/Code/Src/uhal_CHmcpHsupaDlPhychProc.c: -------------------------------------------------------------------------------- 1 | Line 171: index %d is invalid !!! 2 | Line 244: phychNr(%d) is invalid HSUPA DL channel number !!! 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/platform/Code/Src/uhal_CHmcpIratMuxConfig.c: -------------------------------------------------------------------------------- 1 | Line 100: RAT is changed to GSM (no action here) 2 | Line 104: RAT is changed to UMTS (no action here) 3 | Line 108: RAT is changed to LTE (no action here) 4 | Line 112: IRAT MUX switch failure 5 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_CHmcpAichIndicatorInfo.c: -------------------------------------------------------------------------------- 1 | Line 113: activeStackId %d uhal_CAichIndicatorInfo_parse:GetPhychNum<0 - probably Rach released meanwhile 2 | Line 176: activeStackId %d WARNING!! aich status mismatch ocurred! result %d indicator %d AichIndResult %d aichOvrField 0x%x 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_CHmcpDlDpchSyncModify.c: -------------------------------------------------------------------------------- 1 | Line 130: activeStackId %d DPCH_SYNC Qin Changed to %d 2 | Line 145: activeStackId %d DPCH_SYNC Qout Changed to %d 3 | Line 151: activeStackId %d DPCH_SYNC SyncPhase Changed to %d 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_CHmcpDlPhychConfig.c: -------------------------------------------------------------------------------- 1 | Line 123: DlPhychConfig: Combiner Nr = %d, Phych Type = %d, Slot Format = %d, SF = %d isFdpchUsed = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_CHmcpFingerMultiInfo.c: -------------------------------------------------------------------------------- 1 | Line 80: activeStackId %d Cmd[%d, %d] uhal_CHmcpFingerMultiInfo_request parse failed - status=%d 2 | Line 127: activeStackId %d Modem OFF. Dont't access it. 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_CHmcpRlConfig.c: -------------------------------------------------------------------------------- 1 | Line 86: RlConfig: rlNr = %d PriScrCode =%d SecScrCode = %d TxDiversityMode = %d RefFinger = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_CHmcpRlReferenceConfig.c: -------------------------------------------------------------------------------- 1 | Line 172: activeStackId %d txTmFrameCnt = %d, txTmChipCnt = %d, txTmChipX8Cnt = %d 2 | Line 173: activeStackId %d tx_tm_cpi_init skipped 3 | Line 247: Return FALSE: reference cell = %d, neighbor cell = %d 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_CHmcpRlSfnConfig.c: -------------------------------------------------------------------------------- 1 | Line 106: cellk_sfn(%d) is set to be %d 2 | Line 114: uhal_CHmcpRlSfnConfig_request CFN %d 3 | Line 123: chs_cfn(%d) is set to be %d 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_CHmcpRlTimingReset.c: -------------------------------------------------------------------------------- 1 | Line 108: Reset Tx RTG %d @ time=%d ; Framework SFN=%d , SMCSlot =%d; Chipset SFN=%d Slot=%d Chip=%d 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_CHmcpTgpsConfig.c: -------------------------------------------------------------------------------- 1 | Line 102: TGPS CFG: tgpsNr=%d, tgsn1=%d, tgl1=%d, tgsn2=%d, tgl2=%d, tgpl1=%d, tgdFrames=%d 2 | Line 145: activeStackId %d uhal_CTgpsConfig_check: this->tgpsArray == NULL 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uRake/Code/Src/uhal_DlPhychCommon.c: -------------------------------------------------------------------------------- 1 | Line 73: activeStackId %d uhal_GetRefRlDpchFrameOffset() found no DPCH connected to reference RL 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uSlp/Code/Src/uhal_CHmcpCctrchToEncode.c: -------------------------------------------------------------------------------- 1 | Line 194: activeStackId %d FastSfn %d PhychCFN %d 2 | Line 222: activeStackId %d UHAL UL: Received data at wrong CFN! Data is discarded! F %d S %d C %d 3 | Line 310: activeStackId %d Clear Flag is enabling on uhal_CHmcpCctrchToEncode_request 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uSlp/Code/Src/uhal_CHmcpDlCctrchTfcAdd.c: -------------------------------------------------------------------------------- 1 | Line 211: activeStackId %d added_tfcis is NULL in uhal_CHmcpDlCctrchTfcAdd_request_super 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uSlp/Code/Src/uhal_CHmcpDlTrchConfig.c: -------------------------------------------------------------------------------- 1 | Line 137: DLTrchConfig: wrong trch state. trchnr = %d old_state = %d old_type = %d 2 | Line 250: DLTrchConfig: configured. trchnr = %d type = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uSlp/Code/Src/uhal_CHmcpDlTrchRelease.c: -------------------------------------------------------------------------------- 1 | Line 136: DLTrchRelease: wrong state. trchnr = %d old_state = %d 2 | Line 188: DLTrchrelease: released. trchnr = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uSlp/Code/Src/uhal_CTfc.c: -------------------------------------------------------------------------------- 1 | Line 40: CTfc->tfcTable is NULL from smc_MemMMPDirectAlloc 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uTx/Code/Src/uhal_CHmcpDpchRelease.c: -------------------------------------------------------------------------------- 1 | Line 174: activeStackId %d [UL_CH_INFO] 0x%x 2 | Line 181: activeStackId %d ## Warning!! uhal_HmcpIpcGetDstStatus is False## 3 | Line 210: activeStackId %d Rf Tx On/Off - uhal_Cmd_exec 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uTx/Code/Src/uhal_CHmcpPrachConfig.c: -------------------------------------------------------------------------------- 1 | Line 82: uhal_CPrach_SetState:EPrachConfigured (uhal_CPrachConfig_request) %d 2 | Line 131: activeStackId %d PrachConfig_request [UL_CH_INFO] 0x%x 3 | Line 138: activeStackId %d ## Warning!! uhal_HmcpIpcGetDstStatus is False## 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UHAL/uTx/Code/Src/uhal_CPrach.c: -------------------------------------------------------------------------------- 1 | Line 127: uhal_CPrach_storePreambleSignatures: numSignatures %d 2 | Line 166: uhal_CPrach_initAvailASPerSfn: subChannelBitMask %X 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/ChMgt/Edch/Code/Src/uphy_CEdchResources.c: -------------------------------------------------------------------------------- 1 | Line 179: Message received after Non UMTS rat mode req, so ignored transceiver = %d stackId = %d 2 | Line 179: Message received after Non UMTS rat mode req, so ignored transceiver = %d stackId = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/ChMgt/GenChCtrl/Code/Src/uphy_CFSM.c: -------------------------------------------------------------------------------- 1 | Line 183: In function uphy_CFSM_Run eventToStore is NULL 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/ChMgt/GenChCtrl/Code/Src/uphy_CFSMEventDeadlineList.c: -------------------------------------------------------------------------------- 1 | Line 104: For messages with not specified deadline - use uphy_CList_addObjectToTail() 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/Messaging/Code/Src/uphy_CMsgDeadlineList.c: -------------------------------------------------------------------------------- 1 | Line 85: For messages with not specified deadline - use uphy_CList_addObjectToTail() 2 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/Messaging/Code/Src/urrc_uphySlotFormatUtil.c: -------------------------------------------------------------------------------- 1 | Line 89: numOfTPCBits is wrong 2 | Line 94: numOfFBIBits is wrong (more than 2) 3 | Line 143: Incorrect SF value 4 | Line 164: Invalid numOfPilotBits 5 | Line 170: numOfPilotBits < 2 6 | Line 194: Invalid SF value 7 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/Misc/Code/Src/uphy_common.c: -------------------------------------------------------------------------------- 1 | Line 64: mapSIMInfo : This is an error case 2 | Line 64: mapSIMInfo : This is an error case 3 | Line 67: mapSIMInfo : simInfo %d (NO_SIM/MAIN_SIM/SUB_SIM/MAX_SIM_STATUS) 4 | Line 67: mapSIMInfo : simInfo %d (NO_SIM/MAIN_SIM/SUB_SIM/MAX_SIM_STATUS) 5 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/Misc/Code/Src/uphy_timeout.c: -------------------------------------------------------------------------------- 1 | Line 96: S0 setThreadId: unsupported timeout=%d 2 | Line 96: S0 setThreadId: unsupported timeout=%d 3 | Line 195: S0 Failed to cancel timeout token 4 | Line 195: S0 Failed to cancel timeout token 5 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/RRM/CellSrchScheduler/Code/Src/uphy_CEutraStepFsm.c: -------------------------------------------------------------------------------- 1 | Line 80: SFN = %d Slot = %d 2 | Line 80: SFN = %d Slot = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/RRM/CellSrchScheduler/Code/Src/uphy_CGsmStepFsm.c: -------------------------------------------------------------------------------- 1 | Line 76: SFN = %d Slot = %d 2 | Line 76: SFN = %d Slot = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/RRM/IratMsmt/Code/Src/uphy_CGsmCellManager.c: -------------------------------------------------------------------------------- 1 | Line 72: [IRAT U2G] cellInfo==NULL pointer !!! 2 | Line 100: [IRAT U2G] cellInfo==NULL pointer !!! 3 | Line 100: [IRAT U2G] cellInfo==NULL pointer !!! 4 | -------------------------------------------------------------------------------- /HEDGE/UL1/UL1C/RRM/MpdbMgt/Code/Src/uphy_CMultiPathDatabaseAger.c: -------------------------------------------------------------------------------- 1 | Line 131: Failed to cancel token %08x 2 | Line 131: Failed to cancel token %08x 3 | -------------------------------------------------------------------------------- /HEDGE/UL2/ULayer2Common/Code/Src/UMAC_Timer.c: -------------------------------------------------------------------------------- 1 | Line 51: Umac_MsgTimerInit() : pal_TmCreateMsgTimerPara failed! 2 | Line 180: Umac_TimerStart() timer start 3 | Line 186: Umac_TimerStart() timer running 4 | -------------------------------------------------------------------------------- /HEDGE/UL2/UPDCP/Code/Src/UPDCP_ALGID.c: -------------------------------------------------------------------------------- 1 | Line 87: NumComp exceeds %d 2 | Line 316: HeaderCount(%d)is MAX_HEADER_CHAIN_SIZE 3 | -------------------------------------------------------------------------------- /HEDGE/UL2/UPDCP/Code/Src/UPDCP_EM.c: -------------------------------------------------------------------------------- 1 | Line 285: AlgorithmID value out of bounds : %d 2 | Line 368: updcp_EmDecompress: UPDCP_UNCOMPRESSED_PACKET 3 | Line 379: ****************** Entering updcp_EmDecompress() !!! ****************** 4 | Line 433: updcp_EmDecompress: No data 5 | -------------------------------------------------------------------------------- /HEDGE/UL2/UPDCP/Code/Src/UPDCP_PDUINT.c: -------------------------------------------------------------------------------- 1 | Line 47: updcp_PiInterpretPdu: RbId %d, PDUType %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL2/UPDCP/Code/Src/UPDCP_PIDMAP.c: -------------------------------------------------------------------------------- 1 | Line 83: updcp_PidMapInit: PidMapEntry is a NULL pointer. 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/CellSel/Code/Src/rrc_EutraFreqSelReselInfo.c: -------------------------------------------------------------------------------- 1 | Line 395: Earfcn = %d 2 | Line 426: EutraFreqSelReselInfo_p->Eutra_blackListedCellList exceeds the Cell List EutraBlackListId = %d) 3 | Line 453: CellBlackListed= %d) 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/CellSel/Code/Src/rrc_GsmFreqSelReselInfo.c: -------------------------------------------------------------------------------- 1 | Line 381: Valid arfcn value (%d) 2 | Line 385: Invalid arfcn value (%di) 3 | Line 391: Invalid arfcn value (%d) 4 | Line 400: GsmFreqSelReselInfo created for Arfcn:%d & bandIndicator:%d 5 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/CellSel/Code/Src/rrc_SibInterFCellInfoList.c: -------------------------------------------------------------------------------- 1 | Line 272: DC HSPA CELL(4G)| CellParamId :: %d,URAFCN :: %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/CellSel/Code/Src/rrc_TimerConstants.c: -------------------------------------------------------------------------------- 1 | Line 256: T323 is Present(%d)Ms 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/CellSel/Code/Src/rrc_UtraFreqSelReselInfo.c: -------------------------------------------------------------------------------- 1 | Line 360: UtraFreqSelReselInfo created for Uarfcn %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/CnxMgr/Code/Inc/rrc_CnxMgrConn.inl: -------------------------------------------------------------------------------- 1 | Line 49: CnxMgrConn->IrProcedure %d 2 | Line 49: CnxMgrConn->IrProcedure %d 3 | Line 49: CnxMgrConn->IrProcedure %d 4 | Line 73: CnxMgrConn->StateVar %d 5 | Line 73: CnxMgrConn->StateVar %d 6 | Line 163: CnxMgrConn->ReconfigL2AckReceived set to %d 7 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/CnxMgr/Code/Inc/rrc_UeIdentity.inl: -------------------------------------------------------------------------------- 1 | Line 129: rrc_UeIdentity_GetUraIdentity: UraIdentity[%d] 2 | Line 129: rrc_UeIdentity_GetUraIdentity: UraIdentity[%d] 3 | Line 137: rrc_UeIdentity_GetUraIdValid: IsUraIdValid[%d] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CTPHY_InterFreq_CellResel_MeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 248: TheFreqInfoIndx >= numOfFreqToAdd 2 | Line 282: TheFreqInfoIndx >= numOfFreqToRemove 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CTPHY_IntraFreq_CellResel_MeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 220: rrc_CTPHY_IntraFreq_CellResel_MeasMod_REQ_print 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUMAC_Meas_REQ.c: -------------------------------------------------------------------------------- 1 | Line 358: Periodic Trigger method called with Event Trigger Criteria 2 | Line 382: Event Trigger method called with Periodic Trigger Criteria 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_EutraCellSelMeasConf_REQ.c: -------------------------------------------------------------------------------- 1 | Line 143: Index > numOfEutraFreqs 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_EutraCellSelMeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 160: Index > numOfEutraFreqs 2 | Line 188: Index > numOfEutraFreqs 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_GsmCellSelMeasConf_REQ.c: -------------------------------------------------------------------------------- 1 | Line 66: No Memory allocated for CUPHY_GsmCellSelMeasConf_REQ ILM 2 | Line 151: Index > numOfGsmCells 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_GsmCellSelMeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 69: No Memory allocated for CUPHY_GsmCellSelMeasMod_REQ ILM 2 | Line 169: Index > numOfGsmCellsToAdd 3 | Line 198: Index > numOfGsmCellsToRemove 4 | Line 292: Index(%i) out of bounds (max allowed val: %i) 5 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_GsmMeasConf_REQ.c: -------------------------------------------------------------------------------- 1 | Line 81: No Memory allocated for CUPHY_GsmMeasConf_REQ ILM 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_GsmMeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 85: No Memory allocated for CUPHY_GsmMeasMod_REQ ILM 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_InterFreq_MeasConf_REQ.c: -------------------------------------------------------------------------------- 1 | Line 87: No Memory allocated for CUPHY_InterFreq_MeasConf_REQ ILM 2 | Line 266: Indx out of range 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_InterFreq_MeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 91: No Memory allocated for CUPHY_InterFreq_MeasMod_REQ ILM 2 | Line 279: Indx out of range 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_Intern_MeasConf_REQ.c: -------------------------------------------------------------------------------- 1 | Line 94: No Memory allocated for CUPHY_Intern_MeasConf_REQ ILM 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_Intern_MeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 94: No Memory allocated for CUPHY_Intern_MeasMod_REQ ILM 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_IntraFreq_CellResel_MeasConf_REQ.c: -------------------------------------------------------------------------------- 1 | Line 76: No Memory allocated for CUPHY_IntraFreq_CellResel_MeasConf_REQ ILM 2 | Line 172: TheCellInfoIndex >= NumOfCells 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_IntraFreq_CellResel_MeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 78: No Memory allocated for CUPHY_RACH_RESCONF_REQ ILM 2 | Line 177: TheCellInfoIndex >= NumOfCellsToAdd 3 | Line 202: TheCellInfoIndex >= req->payload.numOfCellsToRemove 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_IntraFreq_MeasConf_REQ.c: -------------------------------------------------------------------------------- 1 | Line 103: No Memory allocated forCUPHY_IntraFreq_MeasConf_REQ ILM 2 | Line 418: Requested Cell Not Found 3 | Line 450: Requested Quantity Not Found 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_IntraFreq_MeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 117: No Memory allocated for CUPHY_IntraFreq_MeasMod_REQ ILM 2 | Line 471: Requested Cell Not Found 3 | Line 666: Requested Quantity Not Found 4 | Line 703: Requested Quantity Not Found 5 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_MeasRel_REQ.c: -------------------------------------------------------------------------------- 1 | Line 78: No Memory allocated for CUPHY_MeasRel_REQ ILM 2 | Line 204: isIratHhoOngoing[%d] 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_Quality_MeasConf_REQ.c: -------------------------------------------------------------------------------- 1 | Line 92: No Memory allocated for CUPHY_Quality_MeasConf_REQ ILM 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_CUPHY_Quality_MeasMod_REQ.c: -------------------------------------------------------------------------------- 1 | Line 90: No Memory allocated for CUPHY_Quality_MeasMod_REQ ILM 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_ILE_InterFreqCellInfoList.c: -------------------------------------------------------------------------------- 1 | Line 273: Indx out of range 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_ILMSet.c: -------------------------------------------------------------------------------- 1 | Line 132: FAILED: set full 2 | Line 141: there is no space to store IlmSet_p ILM type!!! 3 | Line 147: ILM already in the list 4 | Line 330: [ERROR] ILM Set not found, layer[%d], msgId[%d] 5 | Line 433: [ERROR] ILM not found, layer[%d], msgId[%d] 6 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_InterLayerMsg.c: -------------------------------------------------------------------------------- 1 | Line 67: init: Not creating message buffer. 2 | Line 151: setSent: called on NULL message buffer pointer 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_InterLayerMsgElement.c: -------------------------------------------------------------------------------- 1 | Line 97: No Overide of ILE print available 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_LCSM_pos_cap_REQ.c: -------------------------------------------------------------------------------- 1 | Line 106: [rrc_LCSM_pos_cap_REQ_free] INFO : 2 | Line 132: [rrc_LCSM_stop_meas_IND_GetBasicMsgSize] SIZE(bytes): [%d] 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_LCSM_stop_meas_IND.c: -------------------------------------------------------------------------------- 1 | Line 106: [rrc_LCSM_stop_meas_IND_free] INFO : 2 | Line 132: [rrc_LCSM_stop_meas_IND_GetBasicMsgSize] SIZE(bytes): [%d] 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_LCSM_sys_info_IND.c: -------------------------------------------------------------------------------- 1 | Line 210: rrc_LCSM_sys_info_IND_SetMessageBuffer: rrc_ss_AllocBuff returned NULL !! 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Ilm/Code/Src/rrc_popILM_SMS.c: -------------------------------------------------------------------------------- 1 | Line 36: [URRC_ETWS]:: INVALID ARGS rrc_SMS_Etws_Notify_Ind_Create 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Code/Inc/rrc_EutraMeasMapper.inl: -------------------------------------------------------------------------------- 1 | Line 34: [rrc_EutraMeasMapper_SetAllMIDReleased]: EutraMeasMapper_p->AllMIDRelease = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Code/Inc/rrc_InterFMeasMapper.inl: -------------------------------------------------------------------------------- 1 | Line 34: [rrc_InterFMeasMapper_SetAllMIDReleased]: InterFMeasMapper_p->AllMIDRelease = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Code/Inc/rrc_InterRMeasMapper.inl: -------------------------------------------------------------------------------- 1 | Line 34: [rrc_InterRMeasMapper_SetAllMIDReleased]: InterRMeasMapper_p->AllMIDRelease = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Code/Inc/rrc_IntraFMeasMapper.inl: -------------------------------------------------------------------------------- 1 | Line 41: [rrc_IntraFMeasMapper_SetAllMIDReleased]: IntraFMeasMapper_p->AllMIDRelease = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Code/Src/rrc_EutraCellSortLib.c: -------------------------------------------------------------------------------- 1 | Line 54: [rrc_Class_EutraCellSortLib_CellResultsSort] ERROR - MeasurementQuantity not valid [%i]. 2 | Line 78: [rrc_Class_EutraCellSortLib_CellResultsSort] ERROR - MeasurementQuantity not valid [%i]. 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Code/Src/rrc_InterFSortLib.c: -------------------------------------------------------------------------------- 1 | Line 54: [rrc_Class_IntraFSortLib_CellResultsSort] ERROR - MeasurementQuantity not valid [%i]. 2 | Line 100: [FreqQualSort] FreqCount == 0 3 | Line 128: [rrc_Class_IntraFSortLib_TddCellResultsSort] ERROR - MeasurementQuantity not valid [%i]. 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/DlMsg/Code/Src/rrc_IEMeFachMeasOccasionInfo.c: -------------------------------------------------------------------------------- 1 | Line 87: StartUpCreate: ClassData_ptr is NULL 2 | Line 87: StartUpCreate: Class structure memory already allocated! 3 | Line 167: IE Create [%s] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/DlMsg/Code/Src/rrc_IEMeInterRatMeasRepCrit.c: -------------------------------------------------------------------------------- 1 | Line 88: StartUpCreate: ClassData_ptr is NULL 2 | Line 88: StartUpCreate: Class structure memory already allocated! 3 | Line 181: IE Create [%s] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/DlMsg/Code/Src/rrc_IEMeIntraFreqRepQtyForRachRep.c: -------------------------------------------------------------------------------- 1 | Line 61: StartUpCreate: ClassData_ptr is NULL 2 | Line 61: StartUpCreate: Class structure memory already allocated! 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/DlMsg/Code/Src/rrc_IEMePerRepCrit.c: -------------------------------------------------------------------------------- 1 | Line 87: StartUpCreate: ClassData_ptr is NULL 2 | Line 87: StartUpCreate: Class structure memory already allocated! 3 | Line 218: IE Create [%s] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/DlMsg/Code/Src/rrc_IEMeQualMeas.c: -------------------------------------------------------------------------------- 1 | Line 85: StartUpCreate: ClassData_ptr is NULL 2 | Line 85: StartUpCreate: Class structure memory already allocated! 3 | Line 183: IE Create [%s] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/DlMsg/Code/Src/rrc_IEMeTrfVolMeas.c: -------------------------------------------------------------------------------- 1 | Line 88: StartUpCreate: ClassData_ptr is NULL 2 | Line 88: StartUpCreate: Class structure memory already allocated! 3 | Line 212: rrc_IEMeTrfVolMeas_SetupMeas: error - TrCh Type of %d not handled 4 | Line 534: IE Create [%s] 5 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Report/Code/Src/rrc_TrafficVolRep.c: -------------------------------------------------------------------------------- 1 | Line 192: [rrc_TrafficVolRep_SetAdditionalMeasRep] BEGIN 2 | Line 204: additional meas report instance NULL!!! 3 | Line 248: [rrc_TrafficVolRep_SetupMeasResultsPeriodic] BEGIN 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Report/RepEvents/Code/Src/rrc_RepEvent4a.c: -------------------------------------------------------------------------------- 1 | Line 149: [rrc_RepEvent4a_TimeToTriggerExpired] NOT NEEDED 2 | Line 176: [rrc_RepEvent4a_SetOtherQuantities] BEGIN 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Report/RepEvents/Code/Src/rrc_RepEvent4b.c: -------------------------------------------------------------------------------- 1 | Line 142: [rrc_RepEvent4b_TimeToTriggerExpired] NOT NEEDED 2 | Line 169: [rrc_RepEvent4b_SetOtherQuantities] BEGIN 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Report/RepEvents/Code/Src/rrc_RepEvent7a.c: -------------------------------------------------------------------------------- 1 | Line 142: [rrc_RepEvent7a_TimeToTriggerExpired] NOT NEEDED 2 | Line 153: [rrc_RepEvent7a_SetOtherQuantities] BEGIN 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Report/RepEvents/Code/Src/rrc_RepEvent7c.c: -------------------------------------------------------------------------------- 1 | Line 171: [rrc_RepEvent7c_SetOtherQuantities] BEGIN 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/Report/RepEvents/Code/Src/rrc_RepEvent7d.c: -------------------------------------------------------------------------------- 1 | Line 171: [rrc_RepEvent7d_SetOtherQuantities] BEGIN 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IEEutraRatEventResults.c: -------------------------------------------------------------------------------- 1 | Line 108: Event 3A (%i) 2 | Line 111: Event 3B (%i) 3 | Line 114: Event 3C (%i) 4 | Line 117: Event 3D (%i) 5 | Line 120: Unknown Event (%i) 6 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IEInterFreqEventResults.c: -------------------------------------------------------------------------------- 1 | Line 112: Event 2A (MID%i) 2 | Line 115: Event 2B (MID%i) 3 | Line 118: Event 2C (MID%i) 4 | Line 121: Event 2D (MID%i) 5 | Line 124: Event 2E (MID%i) 6 | Line 127: Event 2F (MID%i) 7 | Line 130: Unknown Event (MID%i) 8 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IEInterFreqEventResultsLcr.c: -------------------------------------------------------------------------------- 1 | Line 129: Event 2A (MID%i) 2 | Line 132: Event 2B (MID%i) 3 | Line 135: Event 2C (MID%i) 4 | Line 138: Event 2D (MID%i) 5 | Line 141: Event 2E (MID%i) 6 | Line 144: Event 2F (MID%i) 7 | Line 147: Unknown Event (MID%i) 8 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IEInterFreqMeasResultsList.c: -------------------------------------------------------------------------------- 1 | Line 177: myNoOfCellResults >= Asn_maxCellMeas 2 | Line 265: myNoOfCellResults >= Asn_maxCellMeas 3 | Line 313: [rrc_IETInterFreqMeasResultsList_AddTddMeasuredResult] ERROR - Wrong RRSI Value Received from TPHY %d. 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IEInterRatEventResults.c: -------------------------------------------------------------------------------- 1 | Line 112: Event 3A (%i) 2 | Line 115: Event 3B (%i) 3 | Line 118: Event 3C (%i) 4 | Line 121: Event 3D (%i) 5 | Line 124: Unknown Event (%i) 6 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IEIntraFreqMeasResultsList.c: -------------------------------------------------------------------------------- 1 | Line 202: myNoOfCellResults >= Asn_maxCellMeas 2 | Line 287: myNoOfCellResults >= Asn_maxCellMeas 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IEQualityEventResults.c: -------------------------------------------------------------------------------- 1 | Line 156: Event 5A (%i) 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IETrfVolEventResults.c: -------------------------------------------------------------------------------- 1 | Line 134: Event 4A (%i) 2 | Line 137: Event 4B (%i) 3 | Line 140: Unknown Event (%i) 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IETrfVolMeasResultsList.c: -------------------------------------------------------------------------------- 1 | Line 234: [rrc_IETrfVolMeasResultsList_AddRBResult] ERROR max no of Rbs exceeded 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_IEUeInternalEventResults.c: -------------------------------------------------------------------------------- 1 | Line 144: Event 6A (%i) 2 | Line 167: Event 6B (%i) 3 | Line 190: Event 6C (%i) 4 | Line 213: Event 6D (%i) 5 | Line 236: Event 6E (%i) 6 | Line 260: Event 6F (%i) 7 | Line 284: Event 6G (%i) 8 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/MeasMgr/UlMsg/Code/Src/rrc_MsgMeasFailure.c: -------------------------------------------------------------------------------- 1 | Line 150: setFailureCause: method failed. 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Misc/Code/Src/rrc_AsstDataDeliveryCntrlMgr.c: -------------------------------------------------------------------------------- 1 | Line 201: Assistance data delivery Msg received in dch state 2 | Line 226: ilmSet is NULL!! 3 | Line 232: Current state is not either in celldch or cellfach 4 | Line 238: UE is not in connected state 5 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Misc/Code/Src/rrc_FreeList.c: -------------------------------------------------------------------------------- 1 | Line 188: [NON FATAL ERROR]: ElementRef = NULL 2 | Line 226: Error: Element with bad address cannot be returned to free list 3 | Line 238: Error: Element with bad entry Id cannot be returned to free list 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Misc/Code/Src/rrc_TrFmtCombCtrlMgr.c: -------------------------------------------------------------------------------- 1 | Line 249: ilmSet is NULL!! 2 | Line 299: ilmSet is NULL!! 3 | Line 317: msgDlInst is NULL!! 4 | Line 353: ilmSet is NULL!! 5 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Misc/UeCapa/Code/Inc/rrc_UeCapMngr.inl: -------------------------------------------------------------------------------- 1 | Line 44: SupressHsEdchSupport = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Misc/UeCapa/Code/Inc/rrc_UeSysSpecificCap.inl: -------------------------------------------------------------------------------- 1 | Line 43: rrc_UeSysSpecificCap_GetEutraCapability: EutraCapability.length(%d) EutraCapability.value(0x%X) 2 | Line 49: rrc_UeSysSpecificCap_GetEutraCapability: NULL 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Misc/UeCapa/Code/Src/rrc_MeasCap.c: -------------------------------------------------------------------------------- 1 | Line 183: No Memory allocated for rrc_MeasCap_init 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Misc/UeCapa/Code/Src/rrc_RlcCap.c: -------------------------------------------------------------------------------- 1 | Line 156: ClassData_ptr->SingletonInstId is NULL 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Misc/UeCapa/Code/Src/rrc_SecurityCap.c: -------------------------------------------------------------------------------- 1 | Line 171: URRC Rat Mode Changed and TDD Cipher is Disabled 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/ResMgr/Code/Src/rrc_fsm_resourcemgr_GenerateFunctions.c: -------------------------------------------------------------------------------- 1 | Line 372: GenMsg = NULL 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Secu/Code/Inc/rrc_StartValueMgr.inl: -------------------------------------------------------------------------------- 1 | Line 112: StartMgr SetSMCStartValue PS: %x 2 | Line 121: StartMgr SetSMCStartValue CS: %x 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Secu/Code/Src/rrc_CntrChkMngr.c: -------------------------------------------------------------------------------- 1 | Line 60: CntrChkMngr StartUpInit 2 | Line 69: CntrChkMngr ShutdownDestroy 3 | Line 82: CntrChkMgr init 4 | Line 125: CntrChkMgr GetInstanceId creates instance 5 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/Secu/Code/Src/rrc_F9.c: -------------------------------------------------------------------------------- 1 | Line 589: Entering F9 Integrity AlgoType = Kasumi 2 | Line 705: Entering F9 Integrity Algo Type = Snow 3G 3 | Line 898: F9 Calculate FO - Index is Out of Bound 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/SysInfo/Code/Src/rrc_SIB1.c: -------------------------------------------------------------------------------- 1 | Line 107: free: [%s] @ 0x%0.8x, RefCount = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/SysInfo/Code/Src/rrc_SIB15.c: -------------------------------------------------------------------------------- 1 | Line 95: free: [%s] @ 0x%0.8x, RefCount = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/SysInfo/Code/Src/rrc_SIB15bis.c: -------------------------------------------------------------------------------- 1 | Line 93: free: [%s] @ 0x%0.8x, RefCount = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/SysInfo/Code/Src/rrc_SIB16.c: -------------------------------------------------------------------------------- 1 | Line 84: free: [%s] @ 0x%0.8x, RefCount = %d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/SysInfo/Code/Src/rrc_SIB2.c: -------------------------------------------------------------------------------- 1 | Line 111: free: [%s] @ 0x%0.8x, RefCount = %d 2 | Line 154: rrc_SIB2_GetUraIdList: called by client 3 | Line 178: rrc_SIB2_GetUraIdList: UraIdList length: %d 4 | Line 182: rrc_SIB2_GetUraIdList: UraIdList[%d]: %x 5 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/SysInfo/Code/Src/rrc_SIB20.c: -------------------------------------------------------------------------------- 1 | Line 62: No Memory allocated for rrc_SIB20_init 2 | Line 92: free: [%s] @ 0x%0.8x, RefCount = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/SysInfo/Code/Src/rrc_SysInfoFach.c: -------------------------------------------------------------------------------- 1 | Line 203: RB Instance is NULL 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/TaskMain/Code/Src/rrc_system_services.c: -------------------------------------------------------------------------------- 1 | Line 217: rrc_ss_SendToSelf: [SUCCESS] - Sent Msg 2 | Line 704: %s Message received to URRC[%d] 3 | Line 717: %s Message received to URRC[%d] 4 | Line 733: %s Message received to URRC[%d] 5 | Line 737: %s sent wrong SimId %d 6 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Code/Src/rrc_UeRequest.c: -------------------------------------------------------------------------------- 1 | Line 177: Add: Method called with Non-Request Ul Msg. 2 | Line 241: RemoveReqForReceivedResp: Method called with Non-Response Dl Msg. 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig14Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 145: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 222: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig15Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 148: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 225: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig16Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 148: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 227: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig17Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 143: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 221: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig18Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 171: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 248: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig19Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 171: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 248: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig20Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 169: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 246: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig21Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 174: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 252: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig22Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 148: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 227: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_DefaultConfig23Prcocess.c: -------------------------------------------------------------------------------- 1 | Line 144: ERROR! dl_RLC_PDU_size.choice = %d 2 | Line 223: ERROR! dl_RLC_PDU_size.choice = %d 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_MsgDlScnxRelProcess.c: -------------------------------------------------------------------------------- 1 | Line 53: SCNX instance NOT found when expected 2 | Line 197: msgProcess: Failed 3 | Line 245: DlScnxRel Initial Process 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Downlink/Code/Src/rrc_MsgTrFmtCombCntrlTMProcess.c: -------------------------------------------------------------------------------- 1 | Line 47: msgSendIndicationToConsumer: generate indication FAILED! 2 | Line 58: TrFmtCombCntrl_TM Initial Process 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Phy/Code/Src/rrc_IEPhDlSecondaryCellInfoExtnR8Process.c: -------------------------------------------------------------------------------- 1 | Line 43: Unsupported protocol version - R8 supported 2 | Line 77: [SUCCESS] DlSecCellInfoExtnR8 IE, isDlTxModeConfigured[%d] 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Phy/Code/Src/rrc_IEPhDtxDrxInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 78: Unsupported protocol version 2 | Line 163: DtxDrxInfo asn1Check: [FAILURE] 3 | Line 206: [FAILURE] DtxDrxInfo asn1Check 4 | Line 218: [FAILURE] DtxDrxInfo asn1Check 5 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Phy/Code/Src/rrc_IEPhDtxDrxTimingInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 42: Unsupported protocol version 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Phy/Code/Src/rrc_IEPhHsDschDrxCelFachInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 229: [ECELL_FACH_DRX] ANS1 CHECK FOR SIB5: t321 = %d hs_dsch_DrxCycleFach = %d hs_dsch_RxBurstFach=%d 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Phy/Code/Src/rrc_IEPhHsscchLessInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 49: rrc_iePhHsscchLessInfo_getHsscchLessInfo:[ERROR] Number of TFC is more than 4 2 | Line 62: rrc_iePhHsscchLessInfo_getHsscchLessInfo: Unsupported protocol version 3 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Phy/Code/Src/rrc_IEPhUlSecondaryCellInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 274: [FAILURE] UlSecondaryCellInfo IE 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/RB/Code/Src/rrc_IERbInfoAffProcess.c: -------------------------------------------------------------------------------- 1 | Line 84: Unsupported protocol version 2 | Line 120: RbID %d does not exist in ConfDB 3 | Line 133: [SUCCESS] RB Affected IE RbId[%d] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/RB/Code/Src/rrc_IERbInfoRelProcess.c: -------------------------------------------------------------------------------- 1 | Line 73: [FATAL ERROR] RbId: [%d] For Release Is Not In ConfigDb 2 | Line 75: [SUCCESS] RB Release IE RbId[%d] 3 | Line 80: [FAILURE] RB Release IE RbId[%d] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/RB/Code/Src/rrc_IERbRabInfoReconProcess.c: -------------------------------------------------------------------------------- 1 | Line 192: RABid [%d] for CN Domain doesnt exist 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/RB/Code/Src/rrc_IERbSigSetInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 138: rrc_ieRbSigSetInfo_InitialiseRbId: Unsupported protocol version 2 | Line 173: RB ID Already exists in DB: %d 3 | Line 184: [SUCCESS] SRB[%d] Setup IE 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/RB/Code/Src/rrc_IERbWithPdcpInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 79: [SUCCESS] RB[%d] with PDCP IE, SN[%d] 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Tr/Code/Src/rrc_IETrChDlCmnInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 97: Unsupported protocol version 2 | Line 169: SCCPCH TFCS present 3 | Line 260: dl_DCH_TFCS not present - possible problem! 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Tr/Code/Src/rrc_IETrChUlDelInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 52: Unsupported protocol version 2 | Line 106: [FAIL] R6/Wrong Choice from Network 3 | Line 112: Unsupported protocol version 4 | Line 141: Unsupported protocol version 5 | Line 172: [FAILURE] TDD Received 6 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Tr/Code/Src/rrc_IETrTfcs.c: -------------------------------------------------------------------------------- 1 | Line 96: StartUpCreate: ClassData_ptr is NULL 2 | Line 96: StartUpCreate: Class structure memory already allocated! 3 | Line 194: IE Create [%s] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/Tr/Code/Src/rrc_IETrTfs.c: -------------------------------------------------------------------------------- 1 | Line 97: StartUpCreate: ClassData_ptr is NULL 2 | Line 97: StartUpCreate: Class structure memory already allocated! 3 | Line 293: IE Create [%s] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/UE/Code/Src/rrc_IECnInfoInfoProcess.c: -------------------------------------------------------------------------------- 1 | Line 206: CnInfoInfo IE, CnDomainId[%d] 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/UE/Code/Src/rrc_IECnPlmnIdProcess.c: -------------------------------------------------------------------------------- 1 | Line 62: asn1CheckImpl: MCC digit count error. Number [%d] 2 | Line 75: asn1CheckImpl: MNC digit count error. Number [%d] 3 | Line 80: [SUCCESS] CnPlmnId IE, plmnid[%d] 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/IE/UE/Code/Src/rrc_IEUeTimersAndConstCMProcess.c: -------------------------------------------------------------------------------- 1 | Line 2371: PLMN ID is not available 2 | Line 2391: For Orange, T323 is forced set to 15sec from 0 3 | Line 2423: T323 timer is present: [%d]ms 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Uplink/Code/Src/rrc_ActSetFailure.c: -------------------------------------------------------------------------------- 1 | Line 93: No Memory allocated for rrc_ActSetFailure_init 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Uplink/Code/Src/rrc_RrcCnxRelComplete.c: -------------------------------------------------------------------------------- 1 | Line 109: No Memory allocated for rrc_RrcCnxRelComplete_init 2 | Line 169: invalid setMsgParams return code=%d 3 | Line 249: invalid FailureCause type=%d 4 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Uplink/Code/Src/rrc_TfCombCtrlFail.c: -------------------------------------------------------------------------------- 1 | Line 170: rrc_MsgProcErrors_populateAsnFailureCause: method failed. 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Uplink/Code/Src/rrc_UlDtMsg.c: -------------------------------------------------------------------------------- 1 | Line 184: rrc_UlDtMsg_SetNasMsg: invalid length detected. 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Uplink/Code/Src/rrc_UlScnxRel.c: -------------------------------------------------------------------------------- 1 | Line 111: No Memory allocated for rrc_UlScnxRel_init 2 | -------------------------------------------------------------------------------- /HEDGE/UL3/URRC/UtranMsg/Uplink/Code/Src/rrc_UlUtranRequestMsg.c: -------------------------------------------------------------------------------- 1 | Line 132: Method called with Non-Request Ul Msg. 2 | -------------------------------------------------------------------------------- /LTESAE/LCommon/L-Common/LteTlp/Code/src/Tlp_Utils.c: -------------------------------------------------------------------------------- 1 | Line 233: Stack ID changed : %d->%d 2 | -------------------------------------------------------------------------------- /LTESAE/LHAL/Common/src/hal_rf_gdb.c: -------------------------------------------------------------------------------- 1 | Line 158: Current RF Band #%d does not exist in registry!!! 2 | Line 162: Now reading cal values from NVRAM (RF Band: %d, Reg Index: %d) 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/HALCommon/Chipset/S5123/src/hal_common.c: -------------------------------------------------------------------------------- 1 | Line 111: [COMMON] InitCommon 2 | Line 159: [COMMON] SetAntDetectOn(CC%d): on(%d) CC0_INIT_PBCH_MIN_TX_NUM(%d) 3 | Line 226: [COMMON] SetSibUnknownOn(CC%d): on(%d) 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/HALCommon/Common/src/hal_common_lmac_4g.c: -------------------------------------------------------------------------------- 1 | Line 208: pal_LmacDlHCB Activation : LmacPduQ[%d] 2 | Line 226: HAL_LmacRxSduDoneLisr 3 | Line 240: LMAC Invalid TrBK Error Triggered 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/BB/Pltcode/drbsband.c: -------------------------------------------------------------------------------- 1 | Line 263: RXInput_selection_Task called %d 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/BB/Pltcode/frbufs.c: -------------------------------------------------------------------------------- 1 | Line 1251: [ERR] Wrong buffer detection: tasksel(%d), chk_BufStatus(%d), TdsPtr(%x), *TdsPtr(%x), channel(%d) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/BB/Pltcode/mcamrdecode.c: -------------------------------------------------------------------------------- 1 | Line 3021: [Chd AMR] diBuffer: %x %x %x %x %x %x 2 | Line 3445: [Chd AMR] diBuffer: %x %x %x %x %x %x 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/BB/Pltcode/mcdecnbhe.c: -------------------------------------------------------------------------------- 1 | Line 493: payloadBits: %d 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/BB/Pltcode/mcformatnb.c: -------------------------------------------------------------------------------- 1 | Line 292: [TX side] eqTscSet(%d), eqTsc(%d) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/BB/Pltcode/mcudecode.c: -------------------------------------------------------------------------------- 1 | Line 273: usfCode %d, channel %x, status %x 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/BB/Pltcode/rxprimeagc.c: -------------------------------------------------------------------------------- 1 | Line 275: [PrimeAgcTask] command(%x), primeVal_12b4(%d), agcBuffer_p->g2(%d), agcBuffer2_p->g2(%d), agcSetpoint(%x) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/BB/Pltcode/rxsetgain.c: -------------------------------------------------------------------------------- 1 | Line 216: [ACI detection] sizeGainTable(%d), GSMRFBand(%d) 2 | Line 282: [SetGainTask] command(%x) [PRX] agcBuffer_p->g2(%d), agcBuffer_p->gainUsed(%d) [DRX] agcBuffer2_p->g2(%d), agcBuffer2_p->gainUsed(%d) 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/BB/Pltcode/rxstarttx.c: -------------------------------------------------------------------------------- 1 | Line 422: [2G]AIT Dump Set (%d)[0:dis, 1: for, 2: rev] 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/HALPhy/Src/GsmReg_Asip_utility.c: -------------------------------------------------------------------------------- 1 | Line 394: [ASIP_OUT_SD0] 0x%08X 2 | Line 405: [ASIP_OUT_SD1] 0x%08X 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/EDGE/HALPhy/Src/GsmReg_eDma_utility.c: -------------------------------------------------------------------------------- 1 | Line 400: DMA is not updated !!!! 2 | Line 473: DMA is not updated !!!! 3 | Line 596: TX DMA not started!!! 4 | Line 639: EDMAC[%02x]: %08x 5 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/HALPhy_FDD/Src/UpHAL_HSPA_Interrupt.c: -------------------------------------------------------------------------------- 1 | Line 99: Ant Configuration Error : num_of_fa = %d, num_of_rxdiv = %d, agc_dm_ctrl_max 0x%08X, agc_dm_ctrl_val0 0x%08X, agc_dm_ctrl_val1 0x%08X 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/HALPhy_TDD/Src/TpHAL_tCLP_offline.c: -------------------------------------------------------------------------------- 1 | Line 124: Offline Reg. Set: [SbfCnt=%4d] [DECOD_CTRL= %d ] [DECOD_TS_SEL= 0x%08X ] [DECOD_TS_BM= 0x%08X ] [MEAS_CTRL= %d] [BUF_BITMAP= 0x%08X ] 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/HALPhy_TDD/Src/TpHAL_thspa_main.c: -------------------------------------------------------------------------------- 1 | Line 104: DSP_REL: DSP Interrupts are disabled!!! [meas_flag= %d] [irat_flag= %d] [hold_flag= %d] 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/HALPhy_TDD/Src/TpHAL_thspa_modem_irq.c: -------------------------------------------------------------------------------- 1 | Line 94: [Active RAT=%d] The EXCEPTIONAL RAT CHANGE TO LTE HAPPENED!!!!!!!!!!!!! 2 | Line 190: [SbfCnt=%4d][RxF_IQDump]Dump_Done !!! 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1/Src/HCLP_AGC_Control.c: -------------------------------------------------------------------------------- 1 | Line 452: hCLP_AGC_Normal_Control: i_pDoppler_mode= %d, lf_gain1= %d, dump_rate= %d, o_HW_ADDR_rxf_agc[0]= 0x%x, HAL_READ_MIO32(p_agc_blk->o_HW_ADDR_rxf_agc[0])= 0x%x 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1/Src/HCLP_CMCtrl.c: -------------------------------------------------------------------------------- 1 | Line 388: CmTgEnd(%d), TgStart(%d), Tgl(%d), SlotType(%d), CmModeEn(%d), UlDlMode(%d) 2 | Line 404: ERROR @hCLP_CM_IPC_ReCfg i_tauDpch %d, i_TgStart %d, i_TgStart %d 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1/Src/HCLP_Delay_Spread.c: -------------------------------------------------------------------------------- 1 | Line 230: rms_delay %d, channel_mode %d 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1/Src/HCLP_Doppler.c: -------------------------------------------------------------------------------- 1 | Line 270: doppler_val %d, doppler_mode %d 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1/Src/HCLP_ParamCtrl.c: -------------------------------------------------------------------------------- 1 | Line 1170: doppler %d, channel %d, sinr_value %d, sinr_mode %d 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1/Src/HCLP_Phase_Rotator.c: -------------------------------------------------------------------------------- 1 | Line 234: [CPR] equ_init_type3i : 0x%x 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1/Src/HSPA_AckNack_PwrCtrl.c: -------------------------------------------------------------------------------- 1 | Line 120: HSDPCCH PwrCtrl DSP : AckStatus = %d deltaAckAcc = %d AckOffset %d NackStatus = %d deltaNackAcc = %d NackOffset %d 2 | Line 135: HSDPCCH PwrCtrl XSWI : AckOffset %d NackOffset %d 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1/Src/HSPA_Main.c: -------------------------------------------------------------------------------- 1 | Line 113: hspa_Modem_Initialize 2 | Line 189: hspa_DSP_Initialize 3 | Line 230: DSP_3G_Enable 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1_TDD/Src/tCLP_MEAS_main.c: -------------------------------------------------------------------------------- 1 | Line 71: MEAS Done: [SbfCnt=%4d] Online_MEAS_DONE_ISR [SlotIdx= %d ] 2 | Line 128: MEAS Done: [SbfCnt=%4d] Offline_MEAS_DONE_ISR [SlotIdx= %d ] 3 | Line 223: DCH Slot Check: [SbfCnt=%4d] [dch_ts= %d ] 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/HSPA/L1_TDD/Src/thSLP_tick_ctrl.c: -------------------------------------------------------------------------------- 1 | Line 61: TCU_PEL [SbfCnt=%4d] SLPSubFrameTick, SLPSlotTick and RxSLPSlotInt 2 | Line 72: TCU_PEL [SbfCnt=%4d] SLPFrameTick, RxSLPFraInt 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/LTE/L1/Src/LteD2D_Config.c: -------------------------------------------------------------------------------- 1 | Line 3354: IPC:IpcHndlr_Sidelink_RX_ACT_DEACT:%d, %d 2 | Line 3358: IPC:IpcHndlr_Sidelink_RX_RSCPOOL_UPDATE:%d, %d 3 | Line 3362: IPC:IpcHndlr_Sidelink_PAUSE_RX_RSCPOOL:%d, %d 4 | Line 3366: IPC:IpcHndlr_Sidelink_RX_GroupDestID:%d, %d 5 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/LTE/L1/Src/LteDm.c: -------------------------------------------------------------------------------- 1 | Line 332: [DM] ErrorEvent - Buffer Full 2 | Line 709: CC0 AVG: Idle Ratio (%d), %d MHz 3 | Line 717: CC%d AVG: DCI(D/U):%d,%d BLER(D/U):%d,%d #RB:%d Rank/MCS0/1:%06d 4 | Line 977: PDSCH_BLER(SF%d): %5d/%5d=%3d.%02d, total=%3d.%02d 5 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/LTE/L1/Src/LteFdp_ceUeRs.c: -------------------------------------------------------------------------------- 1 | Line 1171: WARNING REMOVAL TRACE : %d 2 | Line 1350: DMRS_MEAS: CCRX(%02X), TO(%d,%d), FO(%d,%d), PWR_P7(%d,%d) 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/LTE/L1/Src/LteFdp_doppler.c: -------------------------------------------------------------------------------- 1 | Line 190: [TC]TC_Reset 2 | Line 447: Doppler filtered(short/long): flag(short/long):0x%3x, CC0(%d/%d), CC1(%d/%d), CC2(%d/%d) 3 | Line 540: HST_STATE: cg_idx(%d), hs_flag(%d), dop(%d), mode_bitmap(0x%x), equip_test_mode(%d) 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/LTE/L1/Src/LteModemRegister.c: -------------------------------------------------------------------------------- 1 | Line 186: FPGA TEST - ISR COUNT, TTI:%d, CCH:%d, FDP:%d, TDP:%d, Tx:%d, HARQ:%d, CSI:%d 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/LTE/L1/Src/LtePdcch_preprocessing.c: -------------------------------------------------------------------------------- 1 | Line 140: CCH_FrmTime: CC_NUM(%d), CC_IDX(%03d), total_sf_num(%d,%d,%d), ftg0(%d,%d) 2 | Line 272: (F)Fail DCI det, CCH_DM_TRANSFER_MODE (%x, MCG_EPDCCH_CC_BITMAP (%x 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/LTE/L1/Src/LteTdp_rsrp.c: -------------------------------------------------------------------------------- 1 | Line 298: [TC_RSRP] Ipc_PatternBitMap[%d] = 0x%x 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NDAS/Code/Src/M2S_ISR.c: -------------------------------------------------------------------------------- 1 | Line 99: [VMM]POS1_IRQ(%d, %d) 2 | Line 115: [VMM]GSM Enc Start: encCodecType(%d), EncCodecMode(%d) 3 | Line 134: [VMM]hm_EncDoneISR : mismatch(%x,%x) 4 | Line 141: [VMM]hm_EncDoneISR : flag(%d),FT(%d) 5 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/Common/NrIsrCsi.cpp: -------------------------------------------------------------------------------- 1 | Line 36: [error] NrCSIRS_Isr: CC_Per_Proc:%d wrong cc idx (%d) 2 | Line 78: [error] NrCSI_Isr: CC_Per_Proc:%d wrong cc idx (%d) 3 | Line 116: [error] NrCSI_Isr: CC_Per_Proc:%d wrong cc idx (%d) 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/Common/NrIsrDemodCore.cpp: -------------------------------------------------------------------------------- 1 | Line 30: [error] NrDemodC_ISR: CC_Per_Proc:%d wrong cc idx (%d) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/Common/NrIsrDemodSub.cpp: -------------------------------------------------------------------------------- 1 | Line 32: [error] NrDemodS_Isr: CC_Per_Proc:%d wrong cc idx (%d) 2 | Line 55: [error] NrQsleep_Isr: wrong cc idx (%d) 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/Common/NrIsrHarq.cpp: -------------------------------------------------------------------------------- 1 | Line 31: [error] NrHarq_Isr: CC_Per_Proc%d wrong cc idx (%d) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/Common/NrIsrTti.cpp: -------------------------------------------------------------------------------- 1 | Line 31: [error] NrTti_Isr: CC_Per_Proc:%d wrong cc idx (%d) 2 | Line 59: [error] NrTti_Isr: CC_Per_Proc:%d wrong cc idx (%d) 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/Common/NrMutex.cpp: -------------------------------------------------------------------------------- 1 | Line 179: Multi_Core_Mutex=> wait_cnt[%d], mutexType[%d], curPid[%d] 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/Common/NrTickGen.cpp: -------------------------------------------------------------------------------- 1 | Line 717: [BM][NrTickGen][slotboundary] BeamIdx(0x%x), called(%d), ticktime (0x%x) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALDev/CSI/NrCsiDev.cpp: -------------------------------------------------------------------------------- 1 | Line 280: [cc_idx=%d] NrCsiDev undefined isr_type (%d) 2 | Line 367: [cc_idx=%d] NrCsiDev (SYM_DM ISR End) De-act 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALDev/DemodSub/NrDsDev.cpp: -------------------------------------------------------------------------------- 1 | Line 223: NrDsDev NR_RELEASE_DONE 2 | Line 286: NrDsDev (CSIRS ISR, StrCtrl) End 3 | Line 328: NrDsDev (DemodSub ISR) End 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALDev/SymbProc/NrSpDevIPCTask.cpp: -------------------------------------------------------------------------------- 1 | Line 43: [error] NrSymbP_Isr: CC_Per_Proc%d wrong cc idx (%d) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALDev/SymbProc/NrSpUlgrantDev.cpp: -------------------------------------------------------------------------------- 1 | Line 148: NrSpUlGrantDev Discard Second DCI of Same HID in same Slot rx_time.aslot_idx (%d), dlCurTime.aslot_idx(%d) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALDev/TX/NrTxChPucchDev.cpp: -------------------------------------------------------------------------------- 1 | Line 168: [NrTxChPucchDev] PR sequence generation - hoppingId:%d, cInit:%d 2 | Line 1226: [NrTxChPucchDev] UpdateUci - m_pStoredPucchCfg is NULL 3 | Line 1230: [NrTxChPucchDev] UpdateUci - chType is Not PUCCH [chType %d] 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALDev/TX/NrTxChSrsDev.cpp: -------------------------------------------------------------------------------- 1 | Line 133: [SRS] PR sequence generation : [rscId %d][cInit %d][groupOrSeqHop %d] 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALProc/Phy/NrPhyMeasProc.cpp: -------------------------------------------------------------------------------- 1 | Line 425: (F) Invalid NrMeasTimer ID: %d 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALProc/Phy/NrPhyNtmProc.cpp: -------------------------------------------------------------------------------- 1 | Line 62: [NR NTM] PHY_L1C_DL_NTM_MEASURE mode:%d(%d), onOff:%d(%d), duration:%d(%d) 2 | Line 79: [NR NTM] IPC_NR_L1C_PHY_NTM_MEASURE_COMPLETE_IND pdschBler:%d(%d) 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALProc/Phy/NrPhyPllProc.cpp: -------------------------------------------------------------------------------- 1 | Line 63: [PHY_Pll] AFC_Jitter (%d) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALProc/Phy/NrPhyRntiProc.cpp: -------------------------------------------------------------------------------- 1 | Line 78: [PHY_RNTI_PROC] NrRntiRegister RntiId(%d), RntiVal(%x), RntiUpdateMap(0x%x), DcCchsetdecinfoCfg.status_reg(0x%x) 2 | Line 123: [PHY_RNTI_PROC] NrRntiUnRegister RntiId(%d), RntiUpdateMap(%x) 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/HALProc/Phy/NrPhyRxSchedulerProc.cpp: -------------------------------------------------------------------------------- 1 | Line 147: [RxSched]update aslot index. TrsConfig:%d aslot [ cdrxWakeup:%d, ssb:%d, trs:%d, update aslot:%d] 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/PhyHal/S5123/DemodCore/CE/NrDcCeNcalHal.cpp: -------------------------------------------------------------------------------- 1 | Line 294: [NcalCsi] CsiBmSlot num always need to be 1 (%d) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/PhyHal/S5123/DemodFront/NrDfDbHal.cpp: -------------------------------------------------------------------------------- 1 | Line 120: (f) NrDfDbDev time mismatched GetDlRtgInfo(0x%x) GetParam(Df).update_time.reg(0x%x) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/APP/NS/NR/PhyHal/S5123/SymbProc/NrSpHal.cpp: -------------------------------------------------------------------------------- 1 | Line 281: [llrChecker] Invalid llrReadFlag(0x%x) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/SPL/HAL/S5123/Device/Src/PHYD_PhyD.c: -------------------------------------------------------------------------------- 1 | Line 21: !!!!!! PHYD_xTracePackage : 0x%08x 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/SPL/SPLM/Driver/DebugUtility/PerformanceProfiler/Src/PHYP_IdleRatio.c: -------------------------------------------------------------------------------- 1 | Line 74: ! can't print the idle ratio (idle : %ld, running time : %ld) 2 | Line 93: Idle Ratio : %d.%u%% 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/SPL/SPLM/PLK/Src/PHYP_Deprecated.c: -------------------------------------------------------------------------------- 1 | Line 45: [CDMA] CDMA_Fake_Section %d %d %d %d %d %d 2 | Line 52: PHYP_Init Done [%d] 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/SPL/SPLM/PLK/Src/PHYP_ModemIrq.c: -------------------------------------------------------------------------------- 1 | Line 277: not clear irq : %d, inx %d, st 0x%08x 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY/SPL/SPLM/PLK/Src/PHYP_Service.c: -------------------------------------------------------------------------------- 1 | Line 210: LCPU monitor timer interrupt,core_id[%d],cnt[%d],slipCont[save:%u][copy:%u] 2 | Line 476: 2G GSM_DMA is working when L-CPU turn off 3 | Line 543: DSP DSP hold during BPLL / DDR clock change,cnt[%d] 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY_IPC/CHIPSET/S5123/Platform/Src/PHYP_CMU.c: -------------------------------------------------------------------------------- 1 | Line 67: LCPU DFS enable skip - clock value %dMHz 2 | Line 83: LCPU DFS enable skip[%x, %x] 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY_IPC/CHIPSET/S5123/Platform/Src/PHYP_SubDataMover.c: -------------------------------------------------------------------------------- 1 | Line 229: [SubDMOVER] Release: monitor(0x%x, 0x%x) error!!! mbuf(0x%x) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY_IPC/CHIPSET/S5123/Platform/Src/frmcu.c: -------------------------------------------------------------------------------- 1 | Line 285: 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY_IPC/MCU/RatIPC/Src/frGsmInit.c: -------------------------------------------------------------------------------- 1 | Line 163: L1BgSetIQLogFlag(Prev) : 0x%x 2 | Line 177: L1BgSetIQLogFlag(After) : 0x%x 3 | Line 192: SetIQLogFlag2CfTds : 0x%x 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY_IPC/MCU/RatIPC/Src/frbufc.c: -------------------------------------------------------------------------------- 1 | Line 240: [2G BUF ERROR#1] frBufCltHandles[%d] = 0x%x, handleRef=0x%x 2 | Line 242: [2G BUF ERROR#2] frBufCltHandles[%d] = 0x%x, handleRef=0x%x 3 | Line 291: frBufCltHandlesBackup[%d] = %x, %x 4 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY_IPC/PhyAsyncIPC/Code/Src/PHY_IPC_CircularBuffer.c: -------------------------------------------------------------------------------- 1 | Line 62: IPC queue init done[0x%x] 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/PHY_IPC/PhyAsyncIPC/Code/Src/PHY_IPC_Monitoring.c: -------------------------------------------------------------------------------- 1 | Line 62: IPC External CMDQ U2L(0)[%d/%d] U2L(1)[%d] U2L(2)[%d] U2L(3)[%d] U2L(4)[%d] 2 | Line 70: IPC C2P CMDQ C2P(0)[%d/%d] C2P(1)[%d] C2P(2)[%d] C2P(3)[%d] C2P(4)[%d] 3 | -------------------------------------------------------------------------------- /PALCommon/C-Common/StackCommon/Common/Code/src/Qna_Db.c: -------------------------------------------------------------------------------- 1 | Line 243: QnaCircle: %d 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/StackCommon/Common/Code/src/Tcs_LteBandConfiguration.c: -------------------------------------------------------------------------------- 1 | Line 128: Wrong Format 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/VCG/Sve/src/bitstream_fx.c: -------------------------------------------------------------------------------- 1 | Line 180: evs_dec_previewFrame(%d)(ind(%d),rf_flag(%d),index(%d),partialCopyOffset(%d),partialCopyFrameType(%d)) 2 | -------------------------------------------------------------------------------- /PALCommon/C-Common/VCG/Sve/src/jbm_pcmdsp_apa.c: -------------------------------------------------------------------------------- 1 | Line 689: TSM: scale(%d),maxScale(%d) 2 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/inc/sys/sockbuf.h: -------------------------------------------------------------------------------- 1 | Line 214: [sbavail] sb->sb_acc %d 2 | Line 214: [sbavail] sb->sb_acc %d 3 | Line 214: [sbavail] sb->sb_acc %d 4 | Line 214: [sbavail] sb->sb_acc %d 5 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/common/domain.c: -------------------------------------------------------------------------------- 1 | Line 597: Started slow timer! 2 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/common/uipc_mbuf.c: -------------------------------------------------------------------------------- 1 | Line 170: mbuf_init>> 2 | Line 212: m_get2 :: Out of memory 3 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/if.c: -------------------------------------------------------------------------------- 1 | Line 399: 2 | Line 430: 3 | Line 1539: ifa_alloc ifa [%x] 4 | Line 1584: ifa_free refcnt [%x] 5 | Line 1593: ifa_free freeing ifa [%x] 6 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/if_ether.c: -------------------------------------------------------------------------------- 1 | Line 416: cannot find matching address 2 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/if_loop.c: -------------------------------------------------------------------------------- 1 | Line 383: if_simloop: can't handle af=%d 2 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/igmp.c: -------------------------------------------------------------------------------- 1 | Line 598: [igmp_domifattach]: Allocated igi [%x] 2 | Line 719: [igi_delete_locked]: Freeing igi [%x] 3 | Line 2009: inm->inm_state - return value %d 4 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/in.c: -------------------------------------------------------------------------------- 1 | Line 160: sds_in_localip:>> 2 | Line 172: sds_in_localip: error in finding ifp.. 3 | Line 1307: ifp dropped packets ifp:%d pkts_dropped:%d 4 | Line 1547: in_lltable_dump_entry: lltable is NULL.. retuning 5 | Line 1643: 6 | Line 1657: 7 | Line 1661: 8 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/ip_encap.c: -------------------------------------------------------------------------------- 1 | Line 218: IPENCAP: Inject into a raw socket 2 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/ip_options.c: -------------------------------------------------------------------------------- 1 | Line 487: opts == NULL! 2 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/ip_reass.c: -------------------------------------------------------------------------------- 1 | Line 281: IPQ Node empty => IP Reassembly fail 2 | Line 569: ipreass_init>> 3 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/radix.c: -------------------------------------------------------------------------------- 1 | Line 365: Found radix node match 2 | Line 1473: 3 | Line 1492: 4 | Line 1497: 5 | Line 1544: 6 | Line 1549: 7 | Line 1555: 8 | Line 1557: 9 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/raw_cb.c: -------------------------------------------------------------------------------- 1 | Line 112: raw_detach 2 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/raw_ip.c: -------------------------------------------------------------------------------- 1 | Line 502: RIP_OUTPUT:null pointers so: [%x], m: [%x] 2 | Line 1145: RAW_IP: Cannot send more 3 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet/raw_usrreq.c: -------------------------------------------------------------------------------- 1 | Line 250: raw_ip>>socantsendmore_locked>> 2 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet6/in6_ifattach.c: -------------------------------------------------------------------------------- 1 | Line 870: in6_ifdetach > removing neighbor mgmt table 2 | Line 882: in6_ifdetach > ifa refcnt [%d] 3 | Line 921: [RSRA] [temp ifid] 4 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet6/ip6_forward.c: -------------------------------------------------------------------------------- 1 | Line 125: ip6_forward: mbuf is NULL.. returning! 2 | Line 732: Bad: Freeing Mbuf! 3 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet6/nd6.c: -------------------------------------------------------------------------------- 1 | Line 293: [nd6_ifattach]: Malloc Failed nd:%d 2 | Line 1286: nd6_purge > ifa refcnt [%d] 3 | Line 1323: IFP is NULL => exit 4 | Line 2099: nd6_alloc >> 5 | Line 2719: nd6_add_ifa_lle >> 6 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet6/nd6_nbr.c: -------------------------------------------------------------------------------- 1 | Line 156: [nd6_ns_input] ifp is null!!! 2 | Line 661: nd6_ns_output_fib: Sending Neighbor Solicitation Request!! 3 | Line 1217: nd6_na_output_fib: Sending Neighbor Advertisement Message!! 4 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet6/raw_ip6.c: -------------------------------------------------------------------------------- 1 | Line 508: No buffer space available! 2 | Line 521: No buffer space available! 3 | Line 943: raw_ip>>socantsendmore_locked>> 4 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/inet6/scope6.c: -------------------------------------------------------------------------------- 1 | Line 113: 2 | Line 349: [sa6_embedscope] Invalid scope error!! zoneid=%d, V_if_index=%d 3 | Line 381: SCOPE ERROR: Invalid zoneid=%d, V_if_index=%d 4 | Line 433: [in6_setscope] ifp is null!!! 5 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/tcp/tcp_hostcache.c: -------------------------------------------------------------------------------- 1 | Line 277: [TCP] tcp_hc_init 2 | Line 305: tcp_hc_destroy >> 3 | Line 321: tcp_hc_destroy [%x] 4 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/tcp/tcp_reass.c: -------------------------------------------------------------------------------- 1 | Line 130: [TCP_REASS]tcp_reass_global_init 2 | Line 387: [TCP_REASS] TCP re-assembly len %d 3 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/CORE/Code/src/tcp/tcp_timewait.c: -------------------------------------------------------------------------------- 1 | Line 239: tcp_tw_destroy >> 2 | -------------------------------------------------------------------------------- /PSS/DataStack/BSD/SDS/Code/src/SDS_osal_semaphore.c: -------------------------------------------------------------------------------- 1 | Line 193: TCPIP DESTROY SEMAPHORE: PAL SEM DEL Failed => %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Inc/RohcManager.h: -------------------------------------------------------------------------------- 1 | Line 117: [ROHC-COMP] Compressor: Invalid Buffer Length 2 | Line 126: [ROHC-COMP] Compressor: Invalid Buffer Length 3 | Line 133: [ROHC-COMP] Compressor: Invalid IP Version 4 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompIpIrPktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 107: Buidling UDP IR packet for context ID = %d 2 | Line 116: IPV4 UDP IR packet builder 3 | Line 135: IPV6 UDP IR packet builder 4 | Line 156: [ROHC-COMP]Compressed Header length = %d 5 | Line 157: [ROHC-COMP] Compressed Packet Dump 6 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompIpR0CrcPktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 54: [ROHC-COMP]In function RohcCompIpR0CrcPktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompIpR0PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 54: [ROHC-COMP]In function RohcCompIpR0PktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompIpR1PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 49: [ROHC-COMP]In function RohcCompUdpR1PktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompIpUo0PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 48: [ROHC-COMP]In function RohcCompIpUo0PktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompIpUo1PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 56: [ROHC-COMP]In function RohcCompIpUo1PktBldr::PacketBuilder 2 | Line 77: [ROHC-COMP]UO1_t BaseHeaderSize = %d 3 | Line 82: [ROHC-COMP]Compressed Header length = %d 4 | Line 83: [ROHC-COMP] Compressed Packet Dump 5 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompOModeFOState.cpp: -------------------------------------------------------------------------------- 1 | Line 48: In function RohcCompOModeFOState::CompStateHdlr Context Id = %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompOModeIRState.cpp: -------------------------------------------------------------------------------- 1 | Line 48: In function RohcCompOModeIRState::CompStateHdlr Context Id = %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompOModeSOState.cpp: -------------------------------------------------------------------------------- 1 | Line 46: In functionRohcCompOModeSOState::CompStateHdlr Context Id = %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompPktDecider.cpp: -------------------------------------------------------------------------------- 1 | Line 33: Calling RohcCompPktDecider destructor 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompRModeFOState.cpp: -------------------------------------------------------------------------------- 1 | Line 46: In function RohcCompRModeFOState::CompStateHdlr Context Id = %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompRModeIRState.cpp: -------------------------------------------------------------------------------- 1 | Line 46: In function RohcCompRModeIRState::CompStateHdlr Context Id = %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompRModeSOState.cpp: -------------------------------------------------------------------------------- 1 | Line 46: In function RohcCompRModeSOState::CompStateHdlr Context Id = %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompRtpR0CrcPktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 56: [ROHC-COMP]In function RohcCompRtpR0CrcPktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompRtpR0PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 54: [ROHC-COMP]In function RohcCompRtpR0PktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompRtpUo0PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 54: [ROHC-COMP]In function RohcCompRtpUo0PktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompRtpUo1PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 63: [ROHC-COMP]In function RohcCompRtpUo1PktBldr::PacketBuilder 2 | Line 87: [ROHC-COMP]UO1_t BaseHeaderSize = %d 3 | Line 92: [ROHC-COMP]Compressed Header length = %d 4 | Line 93: [ROHC-COMP] Compressed Packet Dump 5 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompRtpUo1TsPktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 61: [ROHC-COMP]In function RohcCompRtpUo1TsPktBldr::PacketBuilder 2 | Line 91: [ROHC-COMP]Compressed Header length = %d 3 | Line 92: [ROHC-COMP] Compressed Packet Dump 4 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUModeFOState.cpp: -------------------------------------------------------------------------------- 1 | Line 46: In function RohcCompUModeFOState::CompUmodeStateHdlr Context Id = %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUModeIRState.cpp: -------------------------------------------------------------------------------- 1 | Line 48: In function RohcCompUModeIRState::CompUmodeStateHdlr Context Id = %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUModeSOState.cpp: -------------------------------------------------------------------------------- 1 | Line 46: In function RohcCompUModeSOState::CompUmodeStateHdlr Context Id = %d 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUdpR0CrcPktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 56: [ROHC-COMP]In function RohcCompUdpR0CrcPktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUdpR0PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 54: [ROHC-COMP]In function RohcCompUdpR0PktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUdpR1PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 49: [ROHC-COMP]In function RohcCompUdpR1PktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUdpUo0PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 55: [ROHC-COMP]In function RohcCompUdpUo0PktBldr::PacketBuilder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUdpUo1PktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 64: [ROHC-COMP]In function RohcCompRtpUo1PktBldr::PacketBuilder 2 | Line 85: [ROHC-COMP]UO1_t BaseHeaderSize = %d 3 | Line 91: [ROHC-COMP]Compressed Header length = %d 4 | Line 92: [ROHC-COMP] Compressed Packet Dump 5 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUnCompIrPktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 49: In function RohcCompUnCompIrPktBldr:: PacketBuilder 2 | Line 84: [ROHC-COMP] Compressed Packet Dump 3 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUnCompNorPktBldr.cpp: -------------------------------------------------------------------------------- 1 | Line 47: In function RohcCompUnCompNorPktBldr:: PacketBuilder 2 | Line 56: [ROHC-COMP] Compressed Packet Dump 3 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcCompUnCompPktDecider.cpp: -------------------------------------------------------------------------------- 1 | Line 49: In function RohcCompUnCompPktDecider::SoPktDecider 2 | Line 68: In function RohcCompUnCompPktDecider::FoPktDecider 3 | Line 85: In function RohcCompUnCompPktDecider::IrPktDecider 4 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcContextUpdate.cpp: -------------------------------------------------------------------------------- 1 | Line 30: Calling RohcCompContextUpdate destructor 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompContextOfRbId.cpp: -------------------------------------------------------------------------------- 1 | Line 147: [ROHC-DECOMP]In function DeleteDeCompContextOfRbId RB Id = %d 2 | Line 152: [ROHC-DECOMP]Deleting the DeleteDeCompContextDb context ID = %d 3 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompIpIrDynPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 43: In Function RohcDeCompIpIrDynPktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompIpIrPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 42: In Function RohcDeCompIpIrPktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompIpR0CrcPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 53: In function RohcDeCompIpR0CrcPktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompIpR0PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 55: In function RohcDeCompIpR0PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompIpR1PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 44: In function RohcDeCompIpR1PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompIpUo0PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 54: In function RohcDeCompIpUo0PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompIpUo1PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 54: In function RohcDeCompIpUo1PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompIpUor2PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 45: In function RohcDeCompIpUor2PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompOModeFcState.cpp: -------------------------------------------------------------------------------- 1 | Line 49: In function RohcDeCompOModeFcState::DeCompStateHdlr 2 | Line 63: ERROR :Error in Packet type decoder = %d 3 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompOModeNcState.cpp: -------------------------------------------------------------------------------- 1 | Line 50: In function RohcDeCompOModeNcState::DeCompStateHdlr 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompOModeScState.cpp: -------------------------------------------------------------------------------- 1 | Line 49: In function RohcDeCompOModeScState::DeCompStateHdlr 2 | Line 56: Sending STATIC_NACK 3 | Line 63: Sending ACK and changing the state to Full context(FC) 4 | Line 71: ERROR :Error in Packet type decoder = %d 5 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompPktTypeDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 32: Calling RohcDeCompPktTypeDecoder destructor 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompRModeFcState.cpp: -------------------------------------------------------------------------------- 1 | Line 51: In function RohcDeCompRModeFcState::DeCompStateHdlr 2 | Line 69: ERROR :Error in Packet type decoder = %d 3 | Line 74: Changing return type of ROHCNOCRC/ROHCR0CRC to ROHCNOERROR 4 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompRModeNcState.cpp: -------------------------------------------------------------------------------- 1 | Line 49: In function RohcDeCompRmodeNCState::RohcDeCompOmodeNCState 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompRtpIrDynPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 47: In function RohcDeCompRtpIrDynPktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompRtpIrPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 46: In function RohcDeCompRtpIrPktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompRtpPktTypeDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 49: In function RohcDeCompRtpPktTypeDecoder::NcPktTypeDecoder 2 | Line 81: In function RohcDeCompRtpPktTypeDecoder::FcPktTypeDecoder 3 | Line 85: ERROR :CurrentPacket is NULL 4 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompRtpR0CrcPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 72: In function RohcDeCompRtpR0CrcPktDecoder::PacketDecoder LastSnRef = %d ,TsStride = %d,OffsetIpId = %d 2 | Line 123: IP ID = %d , RTP_SN = %d, RTP TS = %x 3 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompRtpUo0PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 70: In function RohcDeCompRtpUo0PktDecoder::PacketDecoder LastSnRef = %d ,TsStride = %d,OffsetIpId = %d 2 | Line 116: IP ID = %d , RTP_SN = %d, RTP TS = %x 3 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompRtpUo1PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 64: In function RohcDeCompRtpUo1PktDecoder::PacketDecoder 2 | Line 119: IP ID = %d , RTP_SN = %d, RTP TS = %x 3 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompRtpUo1TsPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 62: In function RohcDeCompRtpUo1TsPktDecoder::PacketDecoder 2 | Line 111: IP ID = %d , RTP_SN = %d, RTP TS = %x 3 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUModeFcState.cpp: -------------------------------------------------------------------------------- 1 | Line 50: In function RohcDeCompUmodeFCState::DeCompUmodeStateHdlr 2 | Line 57: Changing the Decompression mode to OMode 3 | Line 98: ERROR :Error in Packet type decoder = %d 4 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUdpIrDynPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 42: In function RohcDeCompUdpIrDynPktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUdpIrPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 41: In function RohcDeCompUdpIrPktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUdpR0CrcPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 55: In function RohcDeCompUdpR0CrcPktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUdpR0PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 58: In function RohcDeCompUdpR0PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUdpR1PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 44: In function RohcDeCompUdpR1PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUdpUo0PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 57: In function RohcDeCompUdpUo0PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUdpUo1PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 55: In function RohcDeCompUdpUo1PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUdpUor2PktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 45: In function RohcDeCompRtpUor2PktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUnCompNorPktDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 48: In function RohcDeCompUnCompNorPktDecoder::PacketDecoder 2 | -------------------------------------------------------------------------------- /PSS/LTESpecific/SRoHC/Code/Src/RohcDeCompUnCompPktTypeDecoder.cpp: -------------------------------------------------------------------------------- 1 | Line 48: In function RohcDeCompUnCompPktTypeDecoder::NcPktTypeDecoder 2 | Line 79: In function RohcDeCompUnCompPktTypeDecoder::FcPktTypeDecoder 3 | Line 83: ERROR :CurrentPacket is NULL 4 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/AsSap/Code/Src/ns_AsFreeMsg.c: -------------------------------------------------------------------------------- 1 | Line 29: RSSI Data Free , Length : %d , Mode: %d 2 | Line 35: Free Data: %d 3 | Line 39: Reset 4 | Line 49: Link Data: %d 5 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/AsSap/Code/Src/ns_ServiceHandlerNrRrc.c: -------------------------------------------------------------------------------- 1 | Line 106: internalMsg =%d, paramId =%d 2 | Line 110: Error: Null Pointer 3 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/Common/Code/Src/ns_Codec.c: -------------------------------------------------------------------------------- 1 | Line 73: ns_NsCodec is NULL 2 | Line 90: Error: Null Pointer 3 | Line 109: Msg encoding fail, RetVal (%d), NsEncoder.Nm(%d), NsEncoder.Length(%d) 4 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/Common/Code/Src/ns_Conf.c: -------------------------------------------------------------------------------- 1 | Line 49: ns configuration initialize 2 | Line 97: nasFeatureList[%d]: %d 3 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/Common/Code/Src/ns_Router.c: -------------------------------------------------------------------------------- 1 | Line 47: Error: Null Pointer 2 | Line 76: ERROR:Invalid Message Base 3 | Line 85: ns_SndMsgDsc is NULL 4 | Line 90: ERROR NS Router could not route message 5 | Line 207: ERROR: UNKNOWN CAT 6 | Line 246: ERROR: UNKNOWN CAT 7 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/Common/Code/Src/ns_StateMgr.c: -------------------------------------------------------------------------------- 1 | Line 144: sendMsgData is NULL 2 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/DbgSap/Code/Src/ns_ServiceHandlerDbg.c: -------------------------------------------------------------------------------- 1 | Line 252: LTE RTM Var Reg result =0x%x 2 | Line 282: GSM RTM Var Reg result =0x%x 3 | Line 390: HSPA RTM Var Reg result =0x%x 4 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/RegSap/Code/Src/ns_RegFreeMsg.c: -------------------------------------------------------------------------------- 1 | Line 60: Error: Null Pointer 2 | Line 90: Error: Null Pointer 3 | Line 119: Error: Null Pointer 4 | Line 149: Error: Null Pointer 5 | Line 179: Error: Null Pointer 6 | Line 534: Error: Null Pointer 7 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/SimSap/Code/Src/ns_SimFreeMsg.c: -------------------------------------------------------------------------------- 1 | Line 28: Error: Null Pointer 2 | -------------------------------------------------------------------------------- /PSS/StackService/CNS/SmsSap/Code/Src/ns_SmsFreeMsg.c: -------------------------------------------------------------------------------- 1 | Line 31: Error: Null Pointer 2 | Line 55: Error: Null Pointer 3 | Line 100: Error: Null Pointer 4 | Line 140: Error: Null Pointer 5 | Line 169: Error: Null Pointer 6 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/GmcF/code/src/Gmc_BuildCfg.c: -------------------------------------------------------------------------------- 1 | Line 67: [I]------------------------- Displaying GMC BUILD FLAG Data ---------------------------- 2 | Line 71: [I]%s 3 | Line 75: [I]------------------------------------------------------------------------------------- 4 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/GmcF/code/src/Gmc_ContextInfo.c: -------------------------------------------------------------------------------- 1 | Line 96: [I]------------------------- Displaying GmcF Context ---------------------------- 2 | Line 100: [I]%s 3 | Line 104: [I]------------------------------------------------------------------------------------- 4 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/GmcF/code/src/Gmc_Registry.c: -------------------------------------------------------------------------------- 1 | Line 416: [I]Reg. Write : %s(%d) - 0x%x 2 | Line 521: [I]Reg. Array Write : %s(%d) - 0x%x 3 | Line 566: [I]%s 4 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/GmcF/code/src/Gmc_Utilities.c: -------------------------------------------------------------------------------- 1 | Line 247: [!]GMC Assert Failed : %s, file : %s, line :%d 2 | Line 281: [!]GMC Error : %s, file : %s, line :%d 3 | Line 443: pGmc_UtilData->PowerDownFlag : %d -> %d 4 | Line 578: [!]%s : unexpected RAT mode :%d 5 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/GmcM/code/src/Mmc_HedgeMsgDescription.c: -------------------------------------------------------------------------------- 1 | Line 549: [W]IPC message NOT ALLOWED in EPD mode[%d] 2 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/MMC/code/src/Mmc_ContextInfo.c: -------------------------------------------------------------------------------- 1 | Line 90: [I]------------------------- Displaying Mmc Context ---------------------------- 2 | Line 94: [I]%s 3 | Line 98: [I]------------------------------------------------------------------------------------- 4 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/MMC/code/src/Mmc_RatModeCoordination.c: -------------------------------------------------------------------------------- 1 | Line 251: [W]Invalid Rat : %d 2 | Line 968: [W]EPD mode mismatch : 1.Write(%d), 2.Read(%d) 3 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/PLMN/Code/Src/plmn_PerformActions/plmn_RatResumeSuspendCnf.c: -------------------------------------------------------------------------------- 1 | Line 167: %s : 2 | Line 213: [I]Selected Plmn : %06x (%s) 3 | Line 214: [I]Plmn State : %s (%s) 4 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/PLMN/Code/Src/plmn_PerformPlmnAction/plmn_AuthRejAction.c: -------------------------------------------------------------------------------- 1 | Line 111: %s : Active RAT -> %s, EmergencyPlmnAvailable = %s, IsPlmnSelectionInProgress = %s 2 | Line 173: %s : %s(%d) 3 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/PLMN/Code/Src/plmn_PerformPlmnAction/plmn_DetachAction.c: -------------------------------------------------------------------------------- 1 | Line 99: %s : %s(%d) 2 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/PLMN/Code/Src/plmn_PerformPlmnAction/plmn_ServiceRejAction.c: -------------------------------------------------------------------------------- 1 | Line 95: %s : %s(%d) 2 | Line 137: Attach Failure received with unKnown cause for selected preferred Class 3 | -------------------------------------------------------------------------------- /PSS/StackService/GMC/PLMN/Code/Src/plmn_Utilities.c: -------------------------------------------------------------------------------- 1 | Line 378: %d %d %d 2 | Line 412: %d %d %d 3 | -------------------------------------------------------------------------------- /PSS/StackService/MMC_IF/code/src/Mmc_If_EmmMsg.c: -------------------------------------------------------------------------------- 1 | Line 133: [MMCIF_EMM] %s Msg Id: 0x%x 2 | -------------------------------------------------------------------------------- /PSS/StackService/PBM/Code/Src/pbm_ContextDef.c: -------------------------------------------------------------------------------- 1 | Line 66: InitTaskId taskId=%x, p_current_task=%x 2 | -------------------------------------------------------------------------------- /PSS/StackService/SMS/Code/Src/sms_CodeId.c: -------------------------------------------------------------------------------- 1 | Line 33: SMS Code Id -> SMS_V0.0 2 | Line 47: D-Mode Project Code Id -> Dual Mode Project 3 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Code/Src/SRM_IncomingMsgHandler.c: -------------------------------------------------------------------------------- 1 | Line 296: [SRM]VOICE TIME TICK =%d 2 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Code/Src/SRM_Task.c: -------------------------------------------------------------------------------- 1 | Line 107: Unknown Message ID!(%d) 2 | Line 118: Unknown Message Class! 3 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Inc/SRM_CSrtpAuthenticationTransform.h: -------------------------------------------------------------------------------- 1 | Line 71: [SetTagLen] tagLen(%d) 2 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CIpInfo.cpp: -------------------------------------------------------------------------------- 1 | Line 403: IPv4 DUMP 2 | Line 411: IPv6 DUMP 3 | Line 416: mIpString 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtcpAppCodecModeRequest.cpp: -------------------------------------------------------------------------------- 1 | Line 65: +[CONSTRUCTOR] SRM_CRtcpAppCodecModeRequest 2 | Line 86: [E]| Codec Mode Request mData(0x%x) 3 | Line 108: [D]| Codec Mode Request mData(0x%x) 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtcpAppEvsAmrWbIoToEvsPrimary.cpp: -------------------------------------------------------------------------------- 1 | Line 66: +[CONSTRUCTOR] SRM_CRtcpAppEvsAmrWbIoToEvsPrimary 2 | Line 87: [E]| EVS AMR-WB IO to EVS Primary mData(0x%x) 3 | Line 109: [D]| EVS AMR-WB IO to EVS Primary mData(0x%x) 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtcpAppEvsBandwidthRequest.cpp: -------------------------------------------------------------------------------- 1 | Line 65: +[CONSTRUCTOR] SRM_CRtcpAppEvsBandwidthRequest 2 | Line 86: [E]| EVS Bandwidth Request mData(0x%x) 3 | Line 108: [D]| EVS Bandwidth Request mData(0x%x) 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtcpAppEvsChannelAwareRequest.cpp: -------------------------------------------------------------------------------- 1 | Line 66: +[CONSTRUCTOR] SRM_CRtcpAppEvsChannelAwareRequest 2 | Line 87: [E]| EVS Channel Aware Request mData(0x%x) 3 | Line 109: [D]| EVS Channel Aware Request mData(0x%x) 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtcpAppEvsPrimaryRateRequest.cpp: -------------------------------------------------------------------------------- 1 | Line 66: +[CONSTRUCTOR] SRM_CRtcpAppEvsPrimaryRateRequest 2 | Line 87: [E]| EVS Primary Rate Request mData(0x%x) 3 | Line 109: [D]| EVS Primary Rate Request mData(0x%x) 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtcpAppEvsPrimaryToEvsAmrWbIo.cpp: -------------------------------------------------------------------------------- 1 | Line 66: +[CONSTRUCTOR] SRM_CRtcpAppEvsPrimaryToEvsAmrWbIo 2 | Line 92: [E]| EVS Primary to EVS AMR-WB IO mData(0x%x) 3 | Line 116: [D]| EVS Primary to EVS AMR-WB IO mData(0x%x) 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtcpAppFrameAggregationRequest.cpp: -------------------------------------------------------------------------------- 1 | Line 66: +[CONSTRUCTOR] SRM_CRtcpAppFrameAggregationRequest 2 | Line 87: [E]| Frame Aggregation Request mData(0x%x) 3 | Line 109: [D]| Frame Aggregation Request mData(0x%x) 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtcpAppRedundancyRequest.cpp: -------------------------------------------------------------------------------- 1 | Line 65: +[CONSTRUCTOR] SRM_CRtcpAppRedundancyRequest 2 | Line 91: [E]| Redundancy Request mData(0x%x) 3 | Line 115: [D]| Redundancy Request mData(0x%x) 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtpPayloadT140.cpp: -------------------------------------------------------------------------------- 1 | Line 65: +[CONSTRUCTOR] SRM_CRtpPayloadT140 2 | Line 79: -[DESTRUCTOR] SRM_CRtpPayloadT140 3 | Line 151: [RTP-T140][D] 0x%x 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CRtpPayloadT140ForRtt.cpp: -------------------------------------------------------------------------------- 1 | Line 124: [SRM_CRtpPayloadT140ForRtt] Receiving RTT and Send NTF 2 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CSrcIdEntry.cpp: -------------------------------------------------------------------------------- 1 | Line 69: -[CONSTRUCTOR] SRM_CSrcIdEntry 2 | Line 133: -[DESTRUCTOR] SRM_CSrcIdEntry 3 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CSrtcpContextRecv.cpp: -------------------------------------------------------------------------------- 1 | Line 88: [SRTCP RX] PacketLen(%d) too short 2 | Line 105: [SRTCP RX] rtcpIndex(%d) 3 | Line 122: [SRTCP RX] AUTH FAIL! 4 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CSrtcpContextSend.cpp: -------------------------------------------------------------------------------- 1 | Line 98: [SRTCP TX] mTxRtcpIndex(%d) 2 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CSrtpAuthenticationTransform.cpp: -------------------------------------------------------------------------------- 1 | Line 76: -[DESTRUCTOR] SRM_CSrtpAuthenticationTransform 2 | Line 93: mRtpAuthKey 3 | Line 110: mRtcpAuthKey 4 | Line 127: [SetRocTransRate] rocTransRate(%d) 5 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CSrtpContextRecv.cpp: -------------------------------------------------------------------------------- 1 | Line 91: [SRTP RX] SSRC(0x%x) ROC(0x%x) Seq(0x%x) 2 | Line 105: [SRTP RX] PacketLen(%d) too short 3 | Line 144: [SRTP RX] 1 AUTH FAIL! Try ROC(0x%x) 4 | Line 157: [SRTP RX] 2 AUTH FAIL! Try ROC(0x%x) 5 | Line 170: [SRTP RX] 3 AUTH FAIL! 6 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CSrtpContextSend.cpp: -------------------------------------------------------------------------------- 1 | Line 94: [SRTP TX] SSRC(0x%x) ROC(0x%x) Seq(0x%x) 2 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CSrtpEncrAesInCounterMode.cpp: -------------------------------------------------------------------------------- 1 | Line 93: [RtpEncrypt] SSRC(0x%x) ROC(0x%x) Seq(0x%x) Size(%d) 2 | Line 201: [RtcpEncrypt] SSRC(0x%x %x %x %x) Index(0x%x) Size(%d) 3 | -------------------------------------------------------------------------------- /PSS/StackService/SRM/Lib/Src/SRM_CSrtpEncryptionTransform.cpp: -------------------------------------------------------------------------------- 1 | Line 78: -[DESTRUCTOR] SRM_CSrtpEncryptionTransform 2 | Line 95: mRtpEncrKey 3 | Line 112: mRtpSaltKey 4 | Line 129: mRtcpEncrKey 5 | Line 146: mRtcpSaltKey 6 | -------------------------------------------------------------------------------- /PSS/StackService/SR_IF/SRL1RC/Code/Src/srl1rc_Client.c: -------------------------------------------------------------------------------- 1 | Line 103: %s: Client State Change: OldState - %u NewState - %u 2 | -------------------------------------------------------------------------------- /PSS/StackService/SR_IF/SRL1RC/Code/Src/srl1rc_Common.c: -------------------------------------------------------------------------------- 1 | Line 79: %s: [DebugARFC] srl1rcIsGsmMmsPsOngoing is set to %d 2 | -------------------------------------------------------------------------------- /PSS/StackService/SR_IF/SRRC/SrrcBoundary/Code/Src/Srrc_Bound.c: -------------------------------------------------------------------------------- 1 | Line 65: SubscribeEvent[%s] by %s [Cid = %d] 2 | Line 74: UnsubscribeEvent [%s] by %s [Cid = %d] 3 | Line 85: UnsubscribeClient by %s [Cid = %d] 4 | -------------------------------------------------------------------------------- /PSS/StackService/SR_IF/SRRC/SrrcCommon/Code/Src/Srrc_FsmMgr.c: -------------------------------------------------------------------------------- 1 | Line 55: [PostNewState] %s: %s -> %s 2 | Line 60: [PostNewState] %s: EntryState -> %s 3 | Line 76: [PostNewState] %s: Invalid NewState %d 4 | -------------------------------------------------------------------------------- /PSS/StackService/SR_IF/SRRC/SrrcCommon/Code/Src/Srrc_InternalQ.c: -------------------------------------------------------------------------------- 1 | Line 19: Srrc_PostToInternalQueue FAIL : No Element(%x) Or Dest (%x) 2 | Line 25: Srrc_PostToInternalQueue FAIL : Q FULL 3 | Line 35: InternalMsg %s : %s -> %s[%x] 4 | Line 39: InternalMsg %s : -> %s[%x] 5 | -------------------------------------------------------------------------------- /PSS/StackService/SR_IF/code/src/Sr_If_Common.c: -------------------------------------------------------------------------------- 1 | Line 116: [!][CPR_SR_IF][SRIF] SRIF Assert Failed : %s, file : %s, line :%d 2 | Line 324: [I][SRIF] gSrIfStackId : %d -> %d 3 | Line 361: [I][SRIF] : ClientEntity %d -> ClientEntity %d 4 | -------------------------------------------------------------------------------- /PSS/StackService/SR_IF/code/src/Sr_If_TraceLog.c: -------------------------------------------------------------------------------- 1 | Line 670: --------------------- Displaying SRIF Msg Log ---------------------------------- 2 | Line 677: !!SRIF LOG!! %d. %s 3 | -------------------------------------------------------------------------------- /PSS/StackService/USAT/Code/Src/usat_ContextDef.c: -------------------------------------------------------------------------------- 1 | Line 95: InitTaskId taskId=%x, p_current_task=%x 2 | -------------------------------------------------------------------------------- /PSS/StackService/USAT/Code/Src/usat_IpcIntfManagement.c: -------------------------------------------------------------------------------- 1 | Line 174: [USAT_%d] Ignoring REFRESH TR /BIP Proactive cmd TR from AP. Sending a dummy TR Status 90 00 2 | Line 198: [USAT_%d] TR Received for SetupEventList 3 | Line 315: [USAT_%d] Store command for AP, usat_EnvelopeCmdFromApp = 0x%02X 4 | -------------------------------------------------------------------------------- /PSS/StackService/USAT/Code/Src/usat_OemIntfManagement.c: -------------------------------------------------------------------------------- 1 | Line 285: [USAT_%d] Data : 2 | Line 671: [USAT_%d] MessageType: %s 3 | -------------------------------------------------------------------------------- /PSS/StackService/USAT/Code/Src/usat_ProactiveCmdRsp.c: -------------------------------------------------------------------------------- 1 | Line 1758: [USAT_%d] HandleCallControlReq: addLen invalid %d 2 | Line 1896: [USAT_%d] HandleSmsControllReq: addLen1 invalid %d 3 | Line 1909: [USAT_%d] HandleSmsControllReq: addLen2 invalid %d 4 | -------------------------------------------------------------------------------- /PSS/StackService/USIM/Code/Src/usim_CodeId.c: -------------------------------------------------------------------------------- 1 | Line 30: [USIM_%d] USIM SW Code Id -> USIM_V3.1.00_SEC 2 | Line 42: [USIM_%d] MultiMode Project(GSM/UMTS/LTE) 3 | -------------------------------------------------------------------------------- /PSS/StackService/USIM/Code/Src/usim_ContextDef.c: -------------------------------------------------------------------------------- 1 | Line 124: InitTaskId taskId=%x, p_current_task=%x 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/CmdHdlr/NR/GAP_BLOCK/ch_HalGapExtCmdsNr.cpp: -------------------------------------------------------------------------------- 1 | Line 67: ###[NR_GAP Config Cmd] abnormal gap config type %d 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/CmdHdlr/NR/IRAT_BLOCK/ch_HalIratExtCmdsNr.cpp: -------------------------------------------------------------------------------- 1 | Line 56: RatType %d IsActiveRat %d 2 | Line 76: RatType %d IsActiveRat %d 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/CmdHdlr/NR/PKTPROC_BLOCK/ch_HalPktProcExtCmdsNr.cpp: -------------------------------------------------------------------------------- 1 | Line 83: [HAL][PktProc] CreatePktProcStartNrCmd 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/CmdHdlr/NR/RF_BLOCK/ch_HalRfExtCmdsNr.cpp: -------------------------------------------------------------------------------- 1 | Line 62: FreqSetCmd: Wrong RAT Type(%d)!! 2 | Line 207: [AS] AsEnableCmd(%d) resultEn(%d)!! 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/CmdHdlr/NR/SYSTIME_BLOCK/ch_HalSysTimeExtCmdsNr.cpp: -------------------------------------------------------------------------------- 1 | Line 141: NR SysTimeInfo: Sfn %d Subframe %d Offset %d 2 | Line 146: DoSysTimeInfo: Nr modem status off %d 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/CmdHdlr/ch_HalRfDevBlk.cpp: -------------------------------------------------------------------------------- 1 | Line 121: [RFBLK] Band(%u) CdmaCh(%u) GapBand(%u) CdmaCh(%u) 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/CmdHdlr/ch_HalRxFilterDevBlk.cpp: -------------------------------------------------------------------------------- 1 | Line 166: SetAgcVal(%d) 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/DeviceDriver/Chipset/S5123/IRAT_BLOCK/ch_HalDevIratNr.cpp: -------------------------------------------------------------------------------- 1 | Line 47: ###[NR_IRAT_DEV] %s 2 | Line 64: ###[NR_IRAT_DEV] %s : CompliantType(%d) 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/DeviceDriver/Chipset/S5123/SLEEP_BLOCK/ch_HalDevSleepNr.cpp: -------------------------------------------------------------------------------- 1 | Line 64: [NR_SLEEP_DEV] SleepTime in SClk %d, status %x 2 | Line 100: [NR_SLEEP] SetDrxStartPos: rtg(%d), mode(%d), time(0x%x), drxStartPos_Nr(0x%x) 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/HAL/MODEM/DeviceDriver/Proc/LMAC_BLOCK/ch_HalLmacProcHwTest.cpp: -------------------------------------------------------------------------------- 1 | Line 331: [HW_TEST][LMAC] Init() Start! 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/Interface/Src/RF_Interface_NR.c: -------------------------------------------------------------------------------- 1 | Line 121: [RFIF] ch_RF_LockCommonRf: sys(%d), wait(%d), en(%d), status(0x%x), ret(%d) 2 | Line 135: [RFIF] ch_RF_UnlockCommonRf: sys(%d), status(0x%x) 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/L1C/NR/ch_L1cAsMsgConvert.cpp: -------------------------------------------------------------------------------- 1 | Line 53: ConvertAstunnelL2FMsg is success. 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/L1C/NR/ch_L1cLifMsgConvert.cpp: -------------------------------------------------------------------------------- 1 | Line 47: ConvertL1tunnelL2FMsg:: pMsg = 0x%x, pSendMsg = 0x%x 2 | Line 56: ConvertL1tunnelL2FMsg is success. 3 | Line 193: ConvertL1tunnelF2LMsg is fail. 4 | Line 199: ConvertL1tunnelF2LMsg is success. 5 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/L1C/NR/ch_L1cPchNr.cpp: -------------------------------------------------------------------------------- 1 | Line 69: [NR_PCH] %s 2 | Line 90: ##[NR_PCH] %s 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/L1C/NR/ch_L1cXphyMsgConvert.cpp: -------------------------------------------------------------------------------- 1 | Line 43: nullPtr 2 | Line 46: ConvertXphyL2FMsg is called. 3 | Line 55: ConvertXphyL2FMsg is success. 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/L1C/ch_L1cCtrlrStateBase.hpp: -------------------------------------------------------------------------------- 1 | Line 61: %s::ChangeState [%d, %s] -> [%d, %s] 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/Channel/L1C/ch_L1cft.cpp: -------------------------------------------------------------------------------- 1 | Line 89: ChangeState [%d, %s] -> [%d, %s] 2 | Line 103: ChangeAfltMode(%d) 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/RRC_NR/DB/NR/cp_RrcNrDbSibNr.hpp: -------------------------------------------------------------------------------- 1 | Line 507: %s 2 | Line 564: %s 3 | Line 1034: %s 4 | Line 1125: [SIB][DB]FindOldestCmasDbIndex :: CMAS buffer full. 5 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/RRC_NR/PRCD/NR/cp_RrcNrPrcdNsaScgSuspend.cpp: -------------------------------------------------------------------------------- 1 | Line 97: %s 2 | Line 114: %s 3 | Line 125: %s 4 | Line 136: %s 5 | Line 146: TriggerStateChange : RrcState(%s) 6 | Line 148: ChangeState : RrcState(%s) 7 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/RRC_NR/PRCD/NR/cp_RrcNrPrcdSaCountercheck.cpp: -------------------------------------------------------------------------------- 1 | Line 82: This PBD can't be run in ENDC mode 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/RRC_NR/PRCD/NR/cp_RrcNrPrcdSaSmc.cpp: -------------------------------------------------------------------------------- 1 | Line 86: This PBD can't be run in ENDC mode 2 | Line 117: RrcNrPrcdSaSmc : m_CurService(%d) 3 | Line 122: m_CurService == MSService_INVALID 4 | Line 165: DB update failure happened! Message is ignored 5 | Line 182: %s 6 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/RRC_NR/PRCS/NR/cp_RrcNrPrcsDsdsBlkNr.cpp: -------------------------------------------------------------------------------- 1 | Line 52: %s 2 | Line 65: %s 3 | Line 79: %s 4 | Line 94: %s 5 | Line 110: %s 6 | Line 128: %s 7 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/RRC_NR/PRCS/NR/cp_RrcNrPrcsNwMsgBlkCodecNr.hpp: -------------------------------------------------------------------------------- 1 | Line 92: RRC_ASSERT %s , %d 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/RRC_NR/PRCS/NR/cp_RrcNrPrcsStatusBlkStateNr.cpp: -------------------------------------------------------------------------------- 1 | Line 53: RrcStateSuspTransitActorNr::Enter 2 | Line 64: RrcStateSuspTransitActorNr::Exit 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/RRC_NR/PRCS/cp_RrcNrPrcsTaskMsgBlkBuildIf.hpp: -------------------------------------------------------------------------------- 1 | Line 72: GetBuildRslt : %d 2 | Line 78: %s 3 | Line 84: %s 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/cp_RrcFt.cpp: -------------------------------------------------------------------------------- 1 | Line 170: RRC_ASSERT %s , %d 2 | Line 290: RRC_ASSERT %s , %d 3 | Line 556: Error in RRC_RRC_RAT_SUSPEND_CNF_Handler 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRC/cp_RrcFtRouter.hpp: -------------------------------------------------------------------------------- 1 | Line 109: RrcFtRouter:: RouteMsg : Route Error 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/Controller/Measure/cp_RrmBlkAccMeasIf.cpp: -------------------------------------------------------------------------------- 1 | Line 43: RrmBlkAccMeasIf:RrmBlkAccMeasIf 2 | Line 49: RrmBlkAccMeasIf:~RrmBlkAccMeasIf 3 | Line 54: RrmBlkAccMeasIf:Init 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/Controller/Measure/cp_RrmBlkConnMeasIf.cpp: -------------------------------------------------------------------------------- 1 | Line 33: RrmBlkConnMeasIf::RrmBlkConnMeasIf 2 | Line 39: RrmBlkConnMeasIf::~RrmBlkConnMeasIf 3 | Line 44: RrmBlkConnMeasIf::Init 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/Controller/Measure/cp_RrmBlkIdleMeasIf.cpp: -------------------------------------------------------------------------------- 1 | Line 35: RrmBlkIdleMeasIf:RrmBlkIdleMeasIf 2 | Line 40: RrmBlkIdleMeasIf:~RrmBlkIdleMeasIf 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/Controller/Mobility/cp_RrmBlkConnEvalIf.cpp: -------------------------------------------------------------------------------- 1 | Line 49: RrmBlkConnEvalIf::Init 2 | Line 54: RrmBlkConnEvalIf::Clear 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/Controller/Mobility/cp_RrmBlkIdleEvalIf.cpp: -------------------------------------------------------------------------------- 1 | Line 37: RrmBlkIdleEvalIf::RrmBlkIdleEvalIf 2 | Line 45: RrmBlkIdleEvalIf::~RrmBlkIdleEvalIf 3 | Line 50: RrmBlkIdleEvalIf::Init 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/Controller/Mobility/cp_RrmBlkMobilityStateIf.cpp: -------------------------------------------------------------------------------- 1 | Line 36: RrmBlkMobilityStateIf::RrmBlkMobilityStateIf() 2 | Line 41: RrmBlkMobilityStateIf::~RrmBlkMobilityStateIf() 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/Controller/Mobility/cp_RrmBlkMobilityStateIf.hpp: -------------------------------------------------------------------------------- 1 | Line 45: RrmBlkMobilityStateIf::SetCurTimestamp() 2 | Line 49: RrmBlkMobilityStateIf::CheckMobilityState() 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/Controller/Mobility/cp_RrmBlkMobilityStateNr.hpp: -------------------------------------------------------------------------------- 1 | Line 51: RrmBlkMobilityStateNr::RrmBlkMobilityStateNr() 2 | Line 56: RrmBlkMobilityStateNr::~RrmBlkMobilityStateNr() 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/Controller/Search/cp_RrmBlkCellSrchNr.cpp: -------------------------------------------------------------------------------- 1 | Line 34: RrmBlkCellSrchNr::RrmBlkCellSrchNr 2 | Line 40: RrmBlkCellSrchNr::~RrmBlkCellSrchNr 3 | Line 45: RrmBlkCellSrchNr::Init 4 | Line 51: RrmBlkCellSrchNr::EvaluateSrchCell 5 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/ProcSv/cp_RrmNrPrcdAnrStop.cpp: -------------------------------------------------------------------------------- 1 | Line 89: RrmNrPrcdAnrStop::RRM_RRC_CGI_STOP_REQ_Hdlr 2 | Line 99: RrmNrPrcdAnrStop::RRM_L1C_CGI_STOP_CNF_Hdlr 3 | Line 120: >>MeasId(%d) ObjId(%d) for reportCGI Found at MeasInfoList!!!! 4 | Line 151: >>Memory Alloc Error!!!! 5 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/ProcSv/cp_RrmNrPrcdBchRelease.cpp: -------------------------------------------------------------------------------- 1 | Line 81: RrmNrPrcdBchRelease::RRM_RRC_BCH_RELEASE_REQ_Hdlr 2 | Line 85: >>Received IsForOsi %d, BchCause %d 3 | Line 94: RrmNrPrcdBchRelease::RRM_L1C_BCH_RELEASE_CNF_Hdlr 4 | Line 99: BchReleaseCnf Param: Result(%d) 5 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/ProcSv/cp_RrmNrPrcdInSync.cpp: -------------------------------------------------------------------------------- 1 | Line 78: RrmNrPrcdInSync::RRM_L1C_IN_SYNC_IND_Hdlr 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/ProcSv/cp_RrmNrPrcdNsaGapConfig.cpp: -------------------------------------------------------------------------------- 1 | Line 110: RrmNrPrcdNsaGapConfig::RRM_RRC_NSA_MEAS_GAP_IND_Hdlr 2 | Line 119: >>Msg data MeasGapStatus:%d Fr1Gap:%d GapPattern:%d GapOffset:%d Mgta:%d 3 | Line 155: RrmNrPrcdNsaGapConfig::RRM_L1C_GAP_CONFIG_CNF_Hdlr 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/ProcSv/cp_RrmNrPrcdOos.cpp: -------------------------------------------------------------------------------- 1 | Line 129: RrmNrPrcdOos::RRM_L1C_OUT_SYNC_IND_Hdlr 2 | Line 178: RrmPrcdOos::RRM_L1C_IN_SYNC_IND_Hdlr 3 | Line 211: OOS Timer is not running 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/ProcSv/cp_RrmNrPrcdPchRelease.cpp: -------------------------------------------------------------------------------- 1 | Line 81: RrmNrPrcdPchRelease::RRM_RRC_PCH_RELEASE_REQ_Hdlr 2 | Line 90: RrmNrPrcdPchRelease::RRM_L1C_PCH_RELEASE_CNF_Hdlr. 3 | Line 94: PchReleaseCnf Param: Result(%d) 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/ProcSv/cp_RrmNrPrcdRestart.cpp: -------------------------------------------------------------------------------- 1 | Line 123: RrmNrPrcdRestart::RRM_RRM_RESTART_IND_Hdlr 2 | Line 135: RrmNrPrcdRestart::RRM_RRM_RESTART_IND_Hdlr - CanNot AllocMsg about RRM_RRM_DS_MEAS_STATE_REQ 3 | Line 143: RrmNrPrcdRestart::RRM_RRM_MEAS_STATE_CNF_Hdlr 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/NR/ProcSv/cp_RrmNrProcSv.cpp: -------------------------------------------------------------------------------- 1 | Line 74: RrmNrProcSv::PreProcessMsg 2 | Line 91: RrmNrProcSv::ProcessMsg 3 | Line 97: RrmNrProcSv::PostProcessMsg 4 | Line 108: RrmNrProcSv::HookingTxMsg 5 | Line 117: RrmNrProcSv::NotifyProcedureEnd 6 | -------------------------------------------------------------------------------- /SMPF/Protocol/ControlPlane/RRM/cp_RrmFtRouter.hpp: -------------------------------------------------------------------------------- 1 | Line 63: ERROR RrmFtRouter::RouteMsg(%d) 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/CoreNetwork/QM/cn_QmRouter.cpp: -------------------------------------------------------------------------------- 1 | Line 77: QmRouter::RouteMsg: Cannot Route! Check RoutingInfo (0x%X) 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/CoreNetwork/cn_RouterMsgByRat.cpp: -------------------------------------------------------------------------------- 1 | Line 144: [N :MM,%d] RouterMsgByRat :: RouteMsg 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/DM/NR/Nr_Serialise.c: -------------------------------------------------------------------------------- 1 | Line 62: pal_EMsgEntity_NR_RADIO : %d 2 | Line 137: nr_GetExtSize_NrMsg diff Msg id(%d)(%d) 3 | Line 156: nr_GetExtSize_NrMsg : %d 4 | Line 262: NR Msg Size : %d 5 | Line 263: NR Msg: 6 | -------------------------------------------------------------------------------- /SMPF/Protocol/Export/exp_L2LayerConfigure.hpp: -------------------------------------------------------------------------------- 1 | Line 18: RAT:%s,Layer(%d), Channel(%d) add 2 | Line 18: RAT:%s,Layer(%d), Channel(%d) removed 3 | Line 18: nullptr 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/Export/up_L2commonDebug.hpp: -------------------------------------------------------------------------------- 1 | Line 41: L2 ASSERT, LR = 0x%8x 2 | Line 42: L2 ASSERT, LR = 0x%8x 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/UserPlane/L2Common/NR/up_L2commonDataVolume.cpp: -------------------------------------------------------------------------------- 1 | Line 106: [LcId:0x--] NewByteLength < 0 @SubVolume() [%d/%d] 2 | Line 111: [LcId:0x--] RetxByteLength < 0 @SubVolume() [%d/%d] 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/UserPlane/L2Common/NR/up_L2commonMacNr.hpp: -------------------------------------------------------------------------------- 1 | Line 725: [ERROR] Wrong ssbPerRachOccasionAndCbPreamblesPerSsb 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/UserPlane/L2Common/NR/up_L2commonPdcpInfoCollectorNr.hpp: -------------------------------------------------------------------------------- 1 | Line 108: Msg1 send failed 2 | Line 114: Msg2 send failed 3 | -------------------------------------------------------------------------------- /SMPF/Protocol/UserPlane/L2Common/NR/up_L2commonRlcNr.cpp: -------------------------------------------------------------------------------- 1 | Line 65: [LcId:0x%02x] [ERROR] gRelRxNackTriggerQueue Nullptr 2 | Line 89: [LcId:0x%02x] [ERROR] gRelRxNackTriggerQueue Nullptr 3 | Line 127: [LcId:0x%02x] [ERROR] gRelRxNackTriggerQueue Nullptr 4 | -------------------------------------------------------------------------------- /SMPF/Protocol/UserPlane/L2Common/NR/up_L2commonRlcNr.hpp: -------------------------------------------------------------------------------- 1 | Line 440: [LcId:0x%02x] [ERROR] Invalid Size[%d/%d] 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/UserPlane/L2HRX/NR/up_L2hrxRlcRxEntity.hpp: -------------------------------------------------------------------------------- 1 | Line 287: [LcId:0x%02x] Trigger Release by ConfigReq [%d -> %d] 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/UserPlane/L2LTX/NR/up_L2ltxMacNr.cpp: -------------------------------------------------------------------------------- 1 | Line 127: [ERROR] Invalid MacEntity=%d !!! 2 | -------------------------------------------------------------------------------- /SMPF/Protocol/UserPlane/L2LTX/up_L2lmactxproxyFt.cpp: -------------------------------------------------------------------------------- 1 | Line 140: [ERROR] Timer start bConfig[%d] eMacTxTimerType[%d] 2 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/Channel/RSM/smpf_RsmUserApi.cpp: -------------------------------------------------------------------------------- 1 | Line 214: [RSM(API),%s] : (DP) SetIsInConnected(true) 2 | Line 292: [RSM(API),%s] : GetRatChangeEventProperty, HoldCause: %u, ReturnProperty: %s 3 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/Channel/TimeHdlr/Src/smpfp_ChCdma1xTimeInfo.cpp: -------------------------------------------------------------------------------- 1 | Line 53: Cdma1xTimeInfo::GetCurSfn - [Error] TimeInfoCmd fail 2 | Line 61: Cdma1xTimeInfo::GetCurSfn - [Error] Modem Off status 3 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/Channel/TimeHdlr/Src/smpfp_ChHrpdTimeInfo.cpp: -------------------------------------------------------------------------------- 1 | Line 64: HrpdTimeInfo::GetCurSfn - [Error] TimeInfoCmd fail 2 | Line 72: HrpdTimeInfo::GetCurSfn - [Error] Modem Off status 3 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/Channel/TimeHdlr/Src/smpfp_ChNrTimeInfo.cpp: -------------------------------------------------------------------------------- 1 | Line 51: NrTimeInfo::GetCurSfn - [Error] TimeInfoCmd fail 2 | Line 59: NrTimeInfo::GetCurSfn - [Error] Modem Off status 3 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/Channel/TimeHdlr/Src/smpfp_ChTimeHdlrInterface.cpp: -------------------------------------------------------------------------------- 1 | Line 155: ConvertPaltimeDomain - CurFrame(%u) FrameNum(%u) RemainFrame(%u) RemainPaltimeUs(%d) 2 | Line 162: ConvertPaltimeDomain - Last Paltime(%u) error, DiffTime(%u) 3 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/ControlPlane/Src/smpfp_CpFlagCenter.cpp: -------------------------------------------------------------------------------- 1 | Line 62: ----ACTIVE GROUP : %s----- 2 | Line 66: ----ACTIVE GROUP : NONE----- 3 | Line 69: --------------------- 4 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/ControlPlane/Src/smpfp_CpFlags.cpp: -------------------------------------------------------------------------------- 1 | Line 81: [%d] %s 2 | Line 86: [%d] NONE 3 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/ControlPlane/Src/smpfp_CpMsgCodec.cpp: -------------------------------------------------------------------------------- 1 | Line 25: MsgCodecBase::~MsgCodecBase() 2 | Line 60: !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 3 | Line 64: Result : %d 4 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/ControlPlane/Src/smpfp_CpTimer.cpp: -------------------------------------------------------------------------------- 1 | Line 61: ----RUNNING TIMERS----- 2 | Line 66: [%d] %s 3 | Line 69: --------------------- 4 | Line 78: [%d] %s : Stop 5 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/UserPlane/Src/smpfp_DpPduDescriptorDir.cpp: -------------------------------------------------------------------------------- 1 | Line 37: DIR: [0x%x][0x%x] Removed[%u] bits 2 | Line 44: DIR: [0x%x][0x%x] Removed[%u] bits, Remaining bits[%u] 3 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/UserPlane/Src/smpfp_DpPduDescriptorIndir.cpp: -------------------------------------------------------------------------------- 1 | Line 115: INDIR: [0x%x] Removed[%u] bits 2 | Line 121: INDIR: [0x%x] Removed[%u] bits, Remaining bits[%u] 3 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/UserPlane/Src/smpfp_DpRxNackTable.cpp: -------------------------------------------------------------------------------- 1 | Line 48: RxNackTable :: ChangeNackPointer ==> %P 2 | Line 57: RxNackTable :: ChangeNackPointer %P => %P 3 | Line 68: RxNackTable :: ChangeNackPointer ==> %P 4 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Core/UserPlane/Src/smpfp_DpTxForwardChannel.cpp: -------------------------------------------------------------------------------- 1 | Line 96: ResetOutputQ - pCurrent(0x%x), pNull(0x%x) 2 | Line 110: ResetInputQ - pCurrent(0x%x), pNull(0x%x) 3 | -------------------------------------------------------------------------------- /SMPF/SMPFProtocol/Export/Private/ControlPlane/smpfp_CpFlags.h: -------------------------------------------------------------------------------- 1 | Line 80: CP FLAG[%s-%s]Enable 2 | Line 86: CPFLAG[%s-%s]Disable 3 | Line 99: CPFLAG[%s]DisableAll 4 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Build/Task/Src/smpf_TaskMsgLogMngr.cpp: -------------------------------------------------------------------------------- 1 | Line 693: [MSG LOG] : MsgLog object is null 2 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/Dev/Src/smpf_DevCmdBase.cpp: -------------------------------------------------------------------------------- 1 | Line 58: [CMD LOG] : Error : Block controller is nullptr. 2 | Line 64: [CMD LOG] : [RUN] %s <0x%X> Domain : %d 3 | Line 70: [CMD LOG] : [STOP] %s <0x%X> Domain : %d 4 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/Hal/Src/smpf_HalUserApi.cpp: -------------------------------------------------------------------------------- 1 | Line 109: [CMD LOG] : Warning! Since %s is being deleted, %s may remain in the message transceiver! 2 | Line 359: [CMD LOG] : Error! : RunCmd list size is too big! 3 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/LegacyInterface/Src/smpf_LifUserApiStack.cpp: -------------------------------------------------------------------------------- 1 | Line 60: CurrentStack is Error: %u 2 | Line 71: SetCurrentNrStack %d 3 | Line 79: CurrentStack is Error: %u 4 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/MultiStack/Agent/Src/smpf_MsaCoreFT.cpp: -------------------------------------------------------------------------------- 1 | Line 27: [MSA] MSA_FT_ID <0x%x> 2 | Line 48: %s 3 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/MultiStack/Agent/Src/smpf_MsaMap.cpp: -------------------------------------------------------------------------------- 1 | Line 57: [MSA] error: ALREADY REGISTERD 2 | Line 186: [MSA] error: NOT FOUND MSA 3 | Line 201: [MSA] error: otObj = nullptr 4 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/MultiStack/Daemon/Src/smpf_MsdAssert.cpp: -------------------------------------------------------------------------------- 1 | Line 11: MSD_ASSERT : AssertType<%d>, FileName<%s>, Line<%d> 2 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/MultiStack/Daemon/Src/smpf_SrControllerApi.cpp: -------------------------------------------------------------------------------- 1 | Line 87: GetRunningDomainForSrrc :%d (CDMA1X_SP : %d, HRPD_SP :%d) 2 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/MultiStack/Daemon/Src/smpf_SrControllerUtility.cpp: -------------------------------------------------------------------------------- 1 | Line 141: Invalid Proc(%d) 2 | Line 191: Invalid Proc(%d) 3 | Line 220: Invalid Service(%d) 4 | Line 270: Invalid Service(%d) 5 | Line 359: Invalid Service(%d) 6 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/MultiStack/Daemon/Src/smpf_SrSvcInfoTableMngr.cpp: -------------------------------------------------------------------------------- 1 | Line 250: %s 2 | Line 269: Service(%d) is not found 3 | Line 299: Null SvcInfo ptr : Service(%d), MsDomain(%d) 4 | Line 315: %s 5 | Line 328: The Number of Triggered Srrc Service : %d 6 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/Task/Inc/smpf_TaskMngr.h: -------------------------------------------------------------------------------- 1 | Line 590: OtId is out of range : %d 2 | Line 595: FtId is out of range : %d 3 | Line 1111: [DATAFM WARNING] DomainType is MAX_DOMAIN. DomainType is changed to DEFAULT_DOMAIN. 4 | Line 1327: (F) Msg pending array is full. 5 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/Task/Inc/smpf_TaskObjBase.h: -------------------------------------------------------------------------------- 1 | Line 79: ProcObj :: %s Deletion <%#X> 2 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/Task/Src/smpf_TaskMsgRouter.cpp: -------------------------------------------------------------------------------- 1 | Line 165: (F) RouterSelectedChild::CheckRoutable Error. Obj is NULL 2 | Line 176: (F) RouteNull::RouteMsg Error. (ObjName: %s, MsgName:%s) 3 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/Task/Src/smpf_TaskMsgTransceiver.cpp: -------------------------------------------------------------------------------- 1 | Line 702: ResolveDeferMsg %s(0x%x,ID:0x%x) 2 | Line 827: ResolveDeferMsg %s(0x%x,ID:0x%x) 3 | Line 1132: DeferMsgUserCtlr %s(0x%x, ID:0x%x) 4 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/Task/Src/smpf_TaskObjs.cpp: -------------------------------------------------------------------------------- 1 | Line 184: (F) TargetObj is null(Name:%s, ObjId:%u) 2 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/Task/Src/smpf_TaskScheduler.cpp: -------------------------------------------------------------------------------- 1 | Line 127: [%d]Schedule::%s[0x%X->0x%X] CPSR_I : %u 2 | Line 135: [%d]Schedule End::%s[0x%X->0x%X] CPSR_I : %u 3 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/TaskDb/Src/smpf_TdbBase.cpp: -------------------------------------------------------------------------------- 1 | Line 230: Wrong m_pVector->Type[%d] 2 | Line 312: Wrong m_pVector->Type[%d] 3 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Core/Timer/Src/smpf_TimerListMngr.cpp: -------------------------------------------------------------------------------- 1 | Line 225: ListTimerMngr(Sort) - Timer context is null (B:0x%x, T:0x%x) 2 | Line 383: ListTimerMngr(0x%x) - RemoveHead, pHead is nullptr 3 | Line 448: ListTimerMngr(0x%x) - 0x%x remove failed!!!. (Remove) 4 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Export/Private/Task/smpf_TaskFsm.h: -------------------------------------------------------------------------------- 1 | Line 257: [FSML1] TransitState 0x%X -> 0x%X 2 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Export/Private/Task/smpf_TaskPbdProcedureConflictCtlr.h: -------------------------------------------------------------------------------- 1 | Line 714: InsertDeferMsg : %s(MsgId:0x%x) 2 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Export/Private/Task/smpf_TaskPbdProcedureConflictElem.h: -------------------------------------------------------------------------------- 1 | Line 140: [PBD Warning] GetConflict RunPid(%d) not exist 2 | -------------------------------------------------------------------------------- /SMPF/SMPFramework/Export/Public/Task/smpf_TaskMsgDispSingle.h: -------------------------------------------------------------------------------- 1 | Line 131: (F) not call MsgHdlr(Name: %s, result:%u) 2 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HIC/ATI/Code/Src/ati_FwMultipleClients.c: -------------------------------------------------------------------------------- 1 | Line 97: MemAlloc fail 2 | Line 109: Client ID: %d 3 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HIC/ATI/Code/Src/ati_LibEmergency.c: -------------------------------------------------------------------------------- 1 | Line 105: MemAlloc fail 2 | Line 248: MemAlloc fail 3 | Line 270: MemAlloc fail 4 | Line 282: MemAlloc fail 5 | Line 372: MemAlloc fail 6 | Line 395: MemAlloc fail 7 | Line 475: MemAlloc fail 8 | Line 529: MemAlloc fail 9 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HIC/ATI/Code/Src/ati_buffer.c: -------------------------------------------------------------------------------- 1 | Line 75: Activating Buffer[%d] 2 | Line 90: Discarding Buffer[%d] 3 | Line 99: Outputting Buffer[%d] 4 | Line 119: Deactivating Buffer[%d] 5 | Line 185: MemAlloc fail 6 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HIC/ATI/Code/Src/ati_error.c: -------------------------------------------------------------------------------- 1 | Line 304: SetExtendedError:type= %d, errorcode=%d 2 | Line 359: AtiSetCmeError:errorcode=%d 3 | Line 469: Error code: %d 4 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HIC/ATI/Code/Src/ati_operator_cmd.c: -------------------------------------------------------------------------------- 1 | Line 65: MemAlloc fail 2 | Line 138: AT+DEVFEAT:%d,%s,OK 3 | Line 144: AT+DEVFEAT= is not supported in this model. 4 | Line 160: AT+DEVFEAT= wrong pamater 5 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HIC/ATI/Code/Src/ati_sregcntl.c: -------------------------------------------------------------------------------- 1 | Line 228: Updating DS registers S%d command 2 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HIC/ATI/Code/Src/ati_test_fn.c: -------------------------------------------------------------------------------- 1 | Line 309: Command Timer Started [%s] [%d] 2 | Line 420: AtiTestPlusWS46: Sent supported side stacks 3 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HIC/PktHnd/Code/Src/pkthndGenericHnd.c: -------------------------------------------------------------------------------- 1 | Line 77: [PKTHND] DUN packet (Len=%d, Chid=%d, Port=%d) 2 | Line 80: [PKTHND_ERR] UART buffer full (%d < %d) 3 | Line 204: [PKTHND_ERR] invalid packet type 4 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HIC/PktHnd/Code/Src/pkthndInit.c: -------------------------------------------------------------------------------- 1 | Line 175: [PKTHND_ERR] <%s(%d)> pal_MemAlloc() failure 2 | Line 190: [PKTHND_ERR] <%s(%d)> pal_MemFree(0x%X) failure 3 | Line 193: [PKTHND_ERR] pal_MsgSendTo(pal_EMsgEntity_MTI) 4 | Line 213: [PKTHND_ERR] HostIf initialization is failed 5 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HID/GDA/Code/Source/gda_ati.c: -------------------------------------------------------------------------------- 1 | Line 63: GdaSendDownlinkData(), UART buffer high- no space in tx buffer 2 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HID/GDA/Code/Source/gda_fcs.c: -------------------------------------------------------------------------------- 1 | Line 211: FCS error. Frame Size %d, 0x%02X%02X%02X != 0x%02X%02X%02X 2 | Line 215: FCS Check - Dummy frame received 3 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HID/GDA/Code/Source/gda_l2rcop.c: -------------------------------------------------------------------------------- 1 | Line 1344: [L2RCOP] %s 2 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HID/GDA/Code/Source/gda_ra1.c: -------------------------------------------------------------------------------- 1 | Line 1655: ra1Info->rate is greater than GDA_NUMBER_OF_CHANNEL_TYPES(%d) 2 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HID/GDA/Code/Source/gda_tdata.c: -------------------------------------------------------------------------------- 1 | Line 349: [TData] Config %s 2 | Line 629: GdaTDataL1DownlinkDataInd( %d ) 3 | Line 632: Not Suppported syncState: %d 4 | Line 742: Not Suppported syncState: %d 5 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HID/HostIF/Code/Src/hostifMsgHandle.c: -------------------------------------------------------------------------------- 1 | Line 60: [HOSTIF_ERR] hostifTriggerPktHnd() < 0 2 | Line 67: [HOSTIF] Rx Main Device : HOSTIF_DEV_INIT_FLAG_MSG 3 | Line 71: [HOSTIF_ERR] hostifSetDevEvent(HOSTIF_MAIN_DEV) < 0 4 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/HID/PPP/Code/Source/uip_pppint.c: -------------------------------------------------------------------------------- 1 | Line 48: ppp_done Malloc failed PtrMsg=NULL 2 | Line 82: int_post_run from %s, gPPPRunSent %d 3 | Line 98: Rec PPPNotification_kPPPUp 4 | Line 102: Rec PPPNotification_kPPPClosing 5 | Line 106: Rec PPPNotification_kPPPDown 6 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmEdgeL1MsgHandler.c: -------------------------------------------------------------------------------- 1 | Line 723: [DM]GERAN Cell Reset(%u:%u) 2 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmExMetric.c: -------------------------------------------------------------------------------- 1 | Line 89: Allocation fail : length(%d) 2 | Line 112: Allocation fail : length(%d) 3 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmExMetricHook.c: -------------------------------------------------------------------------------- 1 | Line 126: [LCE_CONN] PHYTP[%d], CSITP[%d], Conf_Level[%d] 2 | Line 162: [LCE_IDLE] PHYTP[%d], CSITP[%d], Conf_Level[%d] 3 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmExMetricTimer.c: -------------------------------------------------------------------------------- 1 | Line 101: DM Create Timer fail - index(%d) 2 | Line 118: [DM] timer function: %d 3 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmHspaUL3MsgHandler.c: -------------------------------------------------------------------------------- 1 | Line 450: [DM]Invalid HO Type(%d) 2 | Line 610: [DM NEW] OOS Event@HSPA 3 | Line 616: [DM NEW] OOS Event@HEDGE 4 | Line 655: [DM]UTRAN Cell Reset[%u:%u] 5 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmLtePhyMsgHandler.c: -------------------------------------------------------------------------------- 1 | Line 218: LTE Phy N Cell measurement is changed during message transmission, %d to %d 2 | Line 647: DM NR Cell Param: dlnumlayer %d dmnrb %d 3 | Line 652: DM NR Cell Param: cw[%d] dlTbs %d, dlMCS %d 4 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmLteRrcMsgHandler.c: -------------------------------------------------------------------------------- 1 | Line 241: [DM] dmMakeLRrcPeerMsgInfo Malloc Fail 2 | Line 280: [DM] dmMakeLRrcPeerMsgInfo Malloc Fail 3 | Line 1064: NrMeasInfo stackNum %d, MeasType %d, Meas Value %d 4 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmMemInterface.c: -------------------------------------------------------------------------------- 1 | Line 263: dmMemTraceBlockAlloc Queue Init1 %d 2 | Line 300: dmMemTraceBlockAlloc Queue Init2 %d 3 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmPSTMsgHandler.c: -------------------------------------------------------------------------------- 1 | Line 68: DM PST control message 0x%x %d 2 | Line 172: error: Invalid cmd type - dmPSTMsgProc 3 | Line 1679: CA Comb information %d exceed MAX size %d (%d) 4 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/COMMON/UtilityAgent/DM/Code/Src/dmSerialInterface.c: -------------------------------------------------------------------------------- 1 | Line 158: [DM]Invalid UART Frame1(%x:%x:%x:%d) 2 | Line 164: [DM]Invalid UART Frame2(%x:%x:%d) 3 | Line 170: [DM]Invalid UART Frame3(%x:%x:%x) 4 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/MCD/HIC/ATI/Code/Src/ati_manufactory_query.c: -------------------------------------------------------------------------------- 1 | Line 91: +AtiQuePlusESIMQ 2 | -------------------------------------------------------------------------------- /VARIANT/HIUVar/MCD/HIC/SIPC/Code/Src/sipcMsgHandlerDm.c: -------------------------------------------------------------------------------- 1 | Line 51: [SIPC_1_DM] Undefined DM Msg : 0x%X 2 | Line 51: [SIPC_0_DM] Undefined DM Msg : 0x%X 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/ABOX_IPC/OC/MCU/Chipset/S5123/Src/ABOX_LoadImage.c: -------------------------------------------------------------------------------- 1 | Line 67: DMA transfer done, ABOX image loding 0x%x 0x%x 0x%x 0x%x 2 | Line 74: ABOX image loding 0x%x 0x%x 0x%x 0x%x 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/ABOX_IPC/OC/MCU/Chipset/S5123/Src/DmTraceMsgTxQ_ABOX.c: -------------------------------------------------------------------------------- 1 | Line 94: [VHM_DM:Err]Invalid Start Flag in DM message 0x%X startAddr : 0x%X 2 | Line 101: [VHM_DM:Err]Invalid Last Flag in DM message 0x%X addr: 0x%X startAddr : 0x%X 3 | Line 140: [VHM_DM:Err]Invalid message length %d 4 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/NVSS2/Chipset/S5123/Amr/src/pcm_counter.c: -------------------------------------------------------------------------------- 1 | Line 171: EablePcmCounter 2 | Line 195: DisablePcmCounter 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/NVSS2/VcgOem/src/oem_snd_audiolog.c: -------------------------------------------------------------------------------- 1 | Line 387: TxSE output pcm:(%d) 2 | Line 397: encodemode %d, decodemode %d 3 | Line 403: RxSE input pcm:(%d) 4 | Line 422: AudioLogSpeechBadCnt(%d),AudioLogSidBadCnt(%d), AudioLogAbnormalNodataCnt(%d) 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_Info/Code/Src/Lte_Rf_UpdateOpInfo.c: -------------------------------------------------------------------------------- 1 | Line 129: [%s]Invalid Earfcn (%d) 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_GeneralInfo_Band_AUSOPEN.cpp: -------------------------------------------------------------------------------- 1 | Line 9: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 2 | Line 70: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_GeneralInfo_Band_AUSTELSTRA.cpp: -------------------------------------------------------------------------------- 1 | Line 9: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_GeneralInfo_Band_EUCOMM.cpp: -------------------------------------------------------------------------------- 1 | Line 9: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 2 | Line 9: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_GeneralInfo_Band_GLOBAL.cpp: -------------------------------------------------------------------------------- 1 | Line 9: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 2 | Line 70: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 3 | Line 131: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 4 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_GeneralInfo_Band_ORG.cpp: -------------------------------------------------------------------------------- 1 | Line 10: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 2 | Line 10: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_GeneralInfo_Band_n1.cpp: -------------------------------------------------------------------------------- 1 | Line 10: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 2 | Line 10: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_GeneralInfo_Band_n41.cpp: -------------------------------------------------------------------------------- 1 | Line 10: [NRUECAPA] Insert InsertUeCapaBandGeneralInfo: BandNR (%d) 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_RequestedInfo.cpp: -------------------------------------------------------------------------------- 1 | Line 25: [NRUECAPA] FiltDynamicInfo(0x%X) 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_AUSCOMMON.cpp: -------------------------------------------------------------------------------- 1 | Line 13: [NRUECAPA] DB SpecificInfo : AUSTELSTRA 2 | Line 13: [NRUECAPA] DB SpecificInfo : AUSTELSTRA 3 | Line 13: [NRUECAPA] DB SpecificInfo : AUSTELSTRA 4 | Line 13: [NRUECAPA] DB SpecificInfo : AUSTELSTRA 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_AUSOPEN.cpp: -------------------------------------------------------------------------------- 1 | Line 13: [NRUECAPA] DB SpecificInfo : AUSOPEN 2 | Line 13: [NRUECAPA] DB SpecificInfo : AUSOPEN 3 | Line 13: [NRUECAPA] DB SpecificInfo : AUSOPEN 4 | Line 13: [NRUECAPA] DB SpecificInfo : AUSOPEN 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_AUSTELSTRA.cpp: -------------------------------------------------------------------------------- 1 | Line 13: [NRUECAPA] DB SpecificInfo : AUSTELSTRA 2 | Line 13: [NRUECAPA] DB SpecificInfo : AUSTELSTRA 3 | Line 13: [NRUECAPA] DB SpecificInfo : AUSTELSTRA 4 | Line 13: [NRUECAPA] DB SpecificInfo : AUSTELSTRA 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_EUOPEN.cpp: -------------------------------------------------------------------------------- 1 | Line 12: [NRUECAPA] DB SpecificInfo : EUOPEN 2 | Line 12: [NRUECAPA] DB SpecificInfo : EUOPEN 3 | Line 12: [NRUECAPA] DB SpecificInfo : EUOPEN 4 | Line 12: [NRUECAPA] DB SpecificInfo : EUOPEN 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_GCF.cpp: -------------------------------------------------------------------------------- 1 | Line 9: [NRUECAPA] UECAPA GCF 2 | Line 9: [NRUECAPA] UECAPA GCF 3 | Line 9: [NRUECAPA] UECAPA GCF 4 | Line 9: [NRUECAPA] UECAPA GCF 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_GLOBAL.cpp: -------------------------------------------------------------------------------- 1 | Line 12: [NRUECAPA] DB SpecificInfo : GLOBAL 2 | Line 12: [NRUECAPA] DB SpecificInfo : GLOBAL 3 | Line 12: [NRUECAPA] DB SpecificInfo : GLOBAL 4 | Line 12: [NRUECAPA] DB SpecificInfo : GLOBAL 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_LA.cpp: -------------------------------------------------------------------------------- 1 | Line 13: [NRUECAPA] DB SpecificInfo : LA 2 | Line 13: [NRUECAPA] DB SpecificInfo : LA 3 | Line 13: [NRUECAPA] DB SpecificInfo : LA 4 | Line 13: [NRUECAPA] DB SpecificInfo : LA 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_NZL.cpp: -------------------------------------------------------------------------------- 1 | Line 13: [NRUECAPA] DB SpecificInfo : NZL 2 | Line 13: [NRUECAPA] DB SpecificInfo : NZL 3 | Line 13: [NRUECAPA] DB SpecificInfo : NZL 4 | Line 13: [NRUECAPA] DB SpecificInfo : NZL 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_ORG.cpp: -------------------------------------------------------------------------------- 1 | Line 12: [NRUECAPA] DB SpecificInfo : ORG 2 | Line 12: [NRUECAPA] DB SpecificInfo : ORG 3 | Line 12: [NRUECAPA] DB SpecificInfo : ORG 4 | Line 12: [NRUECAPA] DB SpecificInfo : ORG 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/OP_InfoNR/Code/Src/NrRrc_UeCapa_SpecificInfo_TMO.cpp: -------------------------------------------------------------------------------- 1 | Line 12: [NRUECAPA] DB SpecificInfo : TMO 2 | Line 12: [NRUECAPA] DB SpecificInfo : TMO 3 | Line 12: [NRUECAPA] DB SpecificInfo : TMO 4 | Line 12: [NRUECAPA] DB SpecificInfo : TMO 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF/RF_Device/Modem/S5123/RF_Modem_S5123_GSM.c: -------------------------------------------------------------------------------- 1 | Line 66: [RF_GSM_Init_TxFilter] DacSel=%d, SW_RESETn=0x%x, SW_CLK_ON=0x%x, DYN_CLK_ON_EN=0x%x 2 | Line 176: [RF GSM] %s finish 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF/RF_Device/RFIC/S5510/src/RF_RFIC_S5510_GSM_CAL.c: -------------------------------------------------------------------------------- 1 | Line 218: [RF GSM] %s : Modulation:%d, index:%d, TxCode:0x%x 2 | Line 253: [RF GSM] %s : Modulation:%d, index:%d, TxCode:0x%x 3 | Line 439: [RF GSM] DGCIndex_p(%d), TxPwrCode(0x%x), indexRFoutLevel(0x%x) 4 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF/RF_Drv/Common/ET_SAPT/ET_SAPT_Cal/ET_SAPT_Cal_Interface.c: -------------------------------------------------------------------------------- 1 | Line 20: [RF ET][CAL] ET_SAPT_Cal_Interface - Start!! 2 | Line 41: [RF ET][CAL] Invalid Cal Type error - cal_type(%d) 3 | Line 47: [RF ET][CAL] ET_SAPT_Cal_Interface - end(0x%X) 4 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF/RF_Drv/Common/ET_SAPT/ET_SAPT_Cal/ET_SAPT_Psat_Pgain_Cal.c: -------------------------------------------------------------------------------- 1 | Line 16: [RF ET][CAL] %s [%s] start 2 | Line 48: [RF ET][CAL] Invalid rat error - rat(%d) 3 | Line 52: [RF ET][CAL] %s [%s] end 4 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF/RF_Drv/Common/RF_NV.c: -------------------------------------------------------------------------------- 1 | Line 62: [RF NV] RF_NV_AIT_Update : hw_rev[%d], ait_hw_rev[%d], ait_version[%d] 2 | Line 78: [RF Drv] RF_Drv_Get_SM_Inductor_Config : sm_inductor_config[0x%x] sm_inductor_type[%d] 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF/RF_Drv/SM/RF_SM_Interface.c: -------------------------------------------------------------------------------- 1 | Line 127: [RF SM] RF_SM_Open :: sm_type(%d), mipi_path(%d), usid(%d) 2 | Line 176: [RF SM] RF_SM_Get_Handle :%s ERROR %d 3 | Line 385: [RF SM] invalid SM handler : 0x%x 4 | Line 396: [RF SM] RF_SM_Register_All_Driver : SM driver cnt %d 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF/RF_Incs/RF_Drv/RF_Drv.h: -------------------------------------------------------------------------------- 1 | Line 300: [RF Drv] %s copy to %s!! 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF_Models/TANGO/HUBBLEZ3_S5123_S5510/ONESKU/RF_Model_Device/RF_AS_HUBBLEZ3_GPIO.c: -------------------------------------------------------------------------------- 1 | Line 130: [RF MODEL] %s: %s %s event[%d] gpio[%s : %d] 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF_Models/TANGO/HUBBLEZ3_S5123_S5510/ONESKU/RF_Model_NV/RF_Model_NV_HEDGE.c: -------------------------------------------------------------------------------- 1 | Line 22: [RF NV] %s : hw_rev %d 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/C-Var/RF_Models/TANGO/RFFE_Devices/src/RF_AIT_QM13021.c: -------------------------------------------------------------------------------- 1 | Line 31: [RF AIT] %s %s set done. MIPI value0: 0x%08X, MIPI value1: 0x%08X 2 | Line 38: [RF AIT] %s %s set done. MIPI value: 0x%08X 3 | Line 43: [RF AIT] %s not support command [%d] 4 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/CHIPSET/S5123/device/Hw/src/hw_Device.c: -------------------------------------------------------------------------------- 1 | Line 360: [SIM] Dual SIM selected 2 | Line 883: P-Reg Protect : %x 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/CHIPSET/S5123/device/SecondaryPeripherals/src/pal_SpRtc.c: -------------------------------------------------------------------------------- 1 | Line 559: [RTC] No NITZ 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/HAL/Common/driver/Adc/src/drv_Adc.c: -------------------------------------------------------------------------------- 1 | Line 80: [pal_GpAdc_ReadData] Invalid GPADC channel: %d, DSP(%d) 2 | Line 213: [pal_PdAdc_ReadData] PDADC was not existed 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/HAL/Common/driver/Dma/src/xdma.c: -------------------------------------------------------------------------------- 1 | Line 429: [ERROR] DESC_FULL! over >= NUM_TX_DESC - 1 2 | Line 434: [ERROR] DESC_FULL! 3 | Line 831: pal_SetXdmaLliTransfer fail to get task info 4 | Line 836: DMA max desc fail : (%d + %d) >= %d 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/HAL/Common/driver/PowerSave/src/ps_ClientReg.c: -------------------------------------------------------------------------------- 1 | Line 95: PS: Client Registry too small! 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/HAL/Common/driver/PowerSave/src/ps_Util.c: -------------------------------------------------------------------------------- 1 | Line 278: MIPI ALL DEVICE OFF NOT EXCUTE 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/HAL/Common/driver/Uart/src/uart_lisr.c: -------------------------------------------------------------------------------- 1 | Line 161: 2 | Line 162: 3 | Line 163: 4 | Line 164: 5 | Line 165: 6 | Line 166: 7 | Line 274: 8 | Line 382: 9 | Line 383: 10 | Line 398: 11 | Line 412: 12 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/HAL/Common/driver/Uart/src/vuart_main.c: -------------------------------------------------------------------------------- 1 | Line 117: VUART txKick %d byte 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/HAL/Common/driver/i2c/src/hw_i2c.c: -------------------------------------------------------------------------------- 1 | Line 646: hw_I2cRead param NULL 2 | Line 661: hw_I2cWrite param NULL 3 | Line 676: [ACPM] hw_I2cControl param1 NULL 4 | Line 693: [ACPM] hw_AcpmControl not support cmd:%s 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/PAL/Dbg/Profile/src/dbg_Profile.c: -------------------------------------------------------------------------------- 1 | Line 1011: Profiling is already active 2 | Line 1044: Profiling started 3 | Line 1154: WARNING : Profiling is not active 4 | Line 1170: Profiling stopped 5 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/PAL/DebugManager/src/Cortex/dbg_Core.c: -------------------------------------------------------------------------------- 1 | Line 1351: Reset type: %s File: %s Line:%d CrashDump file number:%d 2 | Line 1401: Reset type: %s 3 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/PAL/DebugManager/src/dbg_Trace.c: -------------------------------------------------------------------------------- 1 | Line 1976: Message payload length is %d. Maximum allowed is %d it will be truncated! 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/PAL/MessageTransport/src/pal_msg.c: -------------------------------------------------------------------------------- 1 | Line 773: pal_MsgRtkSendTimer(): pal_MsgRtkSendTimer return FAIL 2 | Line 808: pal_MsgRtkSend():pal_MsgSendTo return FAIL 3 | Line 841: pal_MsgRtkReceive():pal_MsgReceiveMbx return FAIL 4 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/PAL/Security/src/pal_Security_secsb.c: -------------------------------------------------------------------------------- 1 | Line 176: SECSBLK_destroy : Not Free 2 | -------------------------------------------------------------------------------- /VARIANT/PALVar/Platform_EV/PAL/Security/src/pal_sak_v2.c: -------------------------------------------------------------------------------- 1 | Line 72: parsing sak_v1_root_cert failed %d 2 | Line 80: parsing sak_v2_root_cert failed %d 3 | Line 87: parsing sak_cert failed %d 4 | Line 96: verification sak_cert failed %d 5 | Line 107: %s 6 | -------------------------------------------------------------------------------- /VARIANT/PSSVar/StackService/SRM/Code/Src/SRM_BitrateAdaptation.c: -------------------------------------------------------------------------------- 1 | Line 124: [ACR] UL State : %s 2 | Line 127: [ACR] Meaningless UL state 3 | Line 139: [ACR] UL-BLER(%d)LossRate(%d) 4 | Line 267: [ACR] No Bitrate change on UL 5 | --------------------------------------------------------------------------------