HomeSort by relevance Sort by last modified time
    Searched refs:CallController (Results 1 - 3 of 3) sorted by null

  /packages/apps/Phone/src/com/android/phone/
CallController.java 54 * The single CallController instance stays around forever; it's not tied
62 public class CallController extends Handler {
63 private static final String TAG = "CallController";
69 /** The singleton CallController instance. */
70 private static CallController sInstance;
98 * Initialize the singleton CallController instance.
101 * From then on, the CallController instance is available via the
102 * PhoneApp's public "callController" field, which is why there's no
105 /* package */ static CallController init(PhoneGlobals app, CallLogger callLogger) {
106 synchronized (CallController.class)
    [all...]
EmergencyCallHelper.java 39 * Helper class for the {@link CallController} that implements special
48 * {@link CallController} singleton.
68 private CallController mCallController;
78 public EmergencyCallHelper(CallController callController) {
80 mCallController = callController;
110 * This method is called from the CallController placeCall() sequence
171 // reason the CallController would call this method in the first
384 // of the behavior from CallController.placeCallInternal() here.
468 * activity from the EmergencyCallHelper until the CallController
    [all...]
PhoneGlobals.java 165 CallController callController;
521 // Create the CallController singleton, which is the interface
524 callController = CallController.init(this, callLogger);
525 // ...and also the InCallUiState instance, used by the CallController to
    [all...]

Completed in 270 milliseconds