Home | History | Annotate | Download | only in uicc

Lines Matching refs:UiccController

53  * UiccController is created with the call to make() function.
54 * UiccController is a singleton and make() must only be called once
57 * Once created UiccController registers with RIL for "on" and "unsol_sim_status_changed"
58 * notifications. When such notification arrives UiccController will call
64 * UiccController
92 public class UiccController extends Handler {
95 private static final String LOG_TAG = "UiccController";
119 private static UiccController mInstance;
132 public static UiccController make(Context c, CommandsInterface[] ci) {
135 throw new RuntimeException("UiccController.make() should only be called once");
137 mInstance = new UiccController(c, ci);
142 private UiccController(Context c, CommandsInterface []ci) {
143 if (DBG) log("Creating UiccController");
190 public static UiccController getInstance() {
194 "UiccController.getInstance can't be called before make()");
690 pw.println("UiccController: " + this);