HomeSort by relevance Sort by last modified time
    Searched defs:UiccController (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneFactory.java 33 import com.android.internal.telephony.uicc.UiccController;
142 // Instantiate UiccController so that all other classes can just call getInstance()
143 UiccController.make(context, sCommandsInterface);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccController.java 41 * UiccController is created with the call to make() function.
42 * UiccController is a singleton and make() must only be called once
45 * Once created UiccController registers with RIL for "on" and "unsol_sim_status_changed"
46 * notifications. When such notification arrives UiccController will call
52 * UiccController
75 public class UiccController extends Handler {
87 private static UiccController mInstance;
95 public static UiccController make(Context c, CommandsInterface ci) {
98 throw new RuntimeException("UiccController.make() should only be called once");
100 mInstance = new UiccController(c, ci)
    [all...]

Completed in 154 milliseconds