Joke Collection Website - Blessing messages - What program is codeaurora.ims?

What program is codeaurora.ims?

Codeaurora.ims is an ims server code provided by Qualcomm.

SMS application sends short messages by calling the interface provided by SmsManager. The frame processing flow of SMS is in the process of phone call. GsmSMSDispatcher and CdmaSMSDispatcher are used to process SMS sending of GSM card and CDMA card in CS service respectively, and finally sent to QCRIL through RIL request of RIL.java, and finally sent to Modem.

MT receives short messages, and InboundSmsHandler monitors short messages reported by RIL through observer mode. Furthermore, the state machine of the state machine is triggered to change from the idle state to the delivery state. After a series of operations such as SMS confirmation, insertion and deletion of database, SMS will be notified to SMS App by broadcasting.

In the process of receiving SMS, if the message in the suspended state is not sent to the SMS App due to system crash and other reasons. The SmsBroadcastUndelivered class will resend unfinished messages to the application during the next phone initialization to prevent information from being missed.