Searched refs:CallController (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Phone/src/com/android/phone/
H A DCallController.java53 * The single CallController instance stays around forever; it's not tied
61 public class CallController extends Handler { class in inherits:Handler
62 private static final String TAG = "CallController";
68 /** The singleton CallController instance. */
69 private static CallController sInstance;
96 * Initialize the singleton CallController instance.
99 * From then on, the CallController instance is available via the
103 /* package */ static CallController init(PhoneGlobals app) {
104 synchronized (CallController.class) {
106 sInstance = new CallController(ap
118 private CallController(PhoneGlobals app) { method in class:CallController
[all...]
H A DEmergencyCallHelper.java39 * Helper class for the {@link CallController} that implements special
48 * {@link CallController} singleton.
68 private CallController mCallController;
78 public EmergencyCallHelper(CallController 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
H A DPhoneGlobals.java164 CallController callController;
518 // Create the CallController singleton, which is the interface
521 callController = CallController.init(this);
522 // ...and also the InCallUiState instance, used by the CallController to

Completed in 11 milliseconds