I am currently digging around in the Android source code, in order to understand the different telephony related packages and containing classes. One class I have a problem understanding is the ITelephony interface class. I understand that it is an AIDL interface, which are used for IPC between different Android processes (each application runs under their own PID.) I also understand that it is called frequently by the TelephonyManager class, to provide the actual implementation of the public telephony SDK.
- Which classes are actually implementing this interface and responding to the IPC calls?
- What is the larger context the ITelephony interface is used in?
Thanks in advance.