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

  /packages/services/Telecomm/src/com/android/server/telecom/components/
TelecomService.java 51 import com.android.server.telecom.TelecomSystem;
61 public class TelecomService extends Service implements TelecomSystem.Component {
76 * the {@link TelecomSystem#getInstance()} will be initialized, or some other invocation of
83 if (TelecomSystem.getInstance() == null) {
87 TelecomSystem.setInstance(
88 new TelecomSystem(
108 Log.i(TelecomSystem.getInstance(),
120 TelecomSystem.SyncRoot lock) {
158 Context context, TelecomSystem.SyncRoot lock,
198 public TelecomSystem getTelecomSystem()
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
TelecomSystem.java 49 public class TelecomSystem {
53 * Activity-s) that wish to use the TelecomSystem but would like to be testable. Such a
57 * A refactoring goal for Telecom is to limit use of the TelecomSystem singleton to those
62 TelecomSystem getTelecomSystem();
101 private static TelecomSystem INSTANCE = null;
167 public static TelecomSystem getInstance() {
171 public static void setInstance(TelecomSystem instance) {
173 Log.w("TelecomSystem", "Attempt to set TelecomSystem.INSTANCE twice");
175 Log.i(TelecomSystem.class, "TelecomSystem.INSTANCE being set")
    [all...]

Completed in 330 milliseconds