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 45 import com.android.server.telecom.TelecomSystem;
55 public class TelecomService extends Service implements TelecomSystem.Component {
70 * the {@link TelecomSystem#getInstance()} will be initialized, or some other invocation of
77 if (TelecomSystem.getInstance() == null) {
81 TelecomSystem.setInstance(
82 new TelecomSystem(
100 Log.i(TelecomSystem.getInstance(),
112 TelecomSystem.SyncRoot lock) {
150 Context context, TelecomSystem.SyncRoot lock,
170 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 83 milliseconds