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

  /packages/apps/Phone/src/com/android/phone/
CallController.java 52 * The single CallController instance stays around forever; it's not tied
60 public class CallController extends Handler {
61 private static final String TAG = "CallController";
67 /** The singleton CallController instance. */
68 private static CallController sInstance;
95 * Initialize the singleton CallController instance.
98 * From then on, the CallController instance is available via the
99 * PhoneApp's public "callController" field, which is why there's no
102 /* package */ static CallController init(PhoneApp app) {
103 synchronized (CallController.class)
    [all...]
EmergencyCallHelper.java 37 * Helper class for the {@link CallController} that implements special
46 * {@link CallController} singleton.
66 private CallController mCallController;
76 public EmergencyCallHelper(CallController callController) {
78 mCallController = callController;
108 * This method is called from the CallController placeCall() sequence
169 // reason the CallController would call this method in the first
382 // of the behavior from CallController.placeCallInternal() here.
466 * activity from the EmergencyCallHelper until the CallController
    [all...]
PhoneApp.java 145 CallController callController;
491 // Create the CallController singleton, which is the interface
494 callController = CallController.init(this);
495 // ...and also the InCallUiState instance, used by the CallController to
    [all...]
OtaUtils.java 177 * OTASP-specific UI state (just like how the CallController uses the
380 // call by calling CallController.placeCall() via the
386 // Instead, the outgoing call request goes straight to CallController.placeCall().
387 // - CallController.placeCall() notices that it's an OTASP
390 // CallController.placeCall()). The InCallScreen notices that
446 // the CallController, rather than directly calling
522 number = CallController.getInitialNumber(intent);
539 * This method is called as part of the CallController placeCall() sequence
744 mApplication.callController.placeCall(newIntent);
    [all...]

Completed in 461 milliseconds