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

  /packages/apps/Phone/src/com/android/phone/
FakePhoneActivity.java 46 mPlaceCall = (Button) findViewById(R.id.placeCall);
EmergencyDialer.java 296 placeCall();
318 placeCall();
395 placeCall();
485 private void placeCall() {
CallController.java 45 * - actually running the placeCall() method and handling errors or retries
165 * ultimately calls CallController.placeCall() (from the
169 * (4) Here in CallController.placeCall() we read the phone number or SIP
183 public void placeCall(Intent intent) {
184 log("placeCall()... intent = " + intent);
194 Log.wtf(TAG, "placeCall: called with null intent");
195 throw new IllegalArgumentException("placeCall: called with null intent");
201 Log.wtf(TAG, "placeCall: intent had no data");
202 throw new IllegalArgumentException("placeCall: intent had no data");
220 Log.wtf(TAG, "placeCall: unexpected intent action " + action)
    [all...]
EmergencyCallHelper.java 108 * This method is called from the CallController placeCall() sequence
381 // Note we call PhoneUtils.placeCall() directly; we don't want any
389 int callStatus = PhoneUtils.placeCall(mApp,
395 if (DBG) log("- PhoneUtils.placeCall() returned status = " + callStatus);
398 // Note PhoneUtils.placeCall() returns one of the CALL_STATUS_*
409 Log.w(TAG, "placeEmergencyCall(): placeCall() failed: callStatus = " + callStatus);
415 if (DBG) log("==> Success from PhoneUtils.placeCall()!");
471 * placeCall(), since it's still possible the call will disconnect
OutgoingCallBroadcaster.java 50 * ultimately start the call using the CallController.placeCall() API.
275 // CallController.placeCall() after the SipCallOptionHandler step.
545 Log.i(TAG, "onCreate(): callNow case! Calling placeCall(): " + intent);
549 PhoneApp.getInstance().callController.placeCall(intent);
    [all...]
SipCallOptionHandler.java 106 // passed to CallController.placeCall() after displaying the SIP
395 PhoneApp.getInstance().callController.placeCall(mIntent);
OtaUtils.java 376 // call by calling CallController.placeCall() via the
382 // Instead, the outgoing call request goes straight to CallController.placeCall().
383 // - CallController.placeCall() notices that it's an OTASP
386 // CallController.placeCall()). The InCallScreen notices that
443 // PhoneUtils.placeCall().
447 int callStatus = PhoneUtils.placeCall(context,
455 if (DBG) log(" ==> successful return from placeCall(): callStatus = " + callStatus);
457 Log.w(LOG_TAG, "Failure from placeCall() for OTA number '"
535 * This method is called as part of the CallController placeCall() sequence
740 mApplication.callController.placeCall(newIntent)
    [all...]
CallNotifier.java     [all...]
PhoneUtils.java 88 // Return codes from placeCall()
596 public static int placeCall(Context context, Phone phone,
600 log("placeCall()... number: '" + number + "'"
605 log("placeCall()... number: " + toLogSafePhoneNumber(number)
    [all...]

Completed in 120 milliseconds