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

  /packages/services/Telephony/src/com/android/phone/
FakePhoneActivity.java 46 mPlaceCall = (Button) findViewById(R.id.placeCall);
EmergencyDialer.java 313 placeCall();
335 placeCall();
412 placeCall();
534 private void placeCall() {
CallController.java 45 * - actually running the placeCall() method and handling errors or retries
170 * ultimately calls CallController.placeCall() (from the
174 * (4) Here in CallController.placeCall() we read the phone number or SIP
188 public void placeCall(Intent intent) {
189 log("placeCall()... intent = " + intent);
197 Log.wtf(TAG, "placeCall: called with null intent");
198 throw new IllegalArgumentException("placeCall: called with null intent");
204 Log.wtf(TAG, "placeCall: intent had no data");
205 throw new IllegalArgumentException("placeCall: intent had no data");
223 Log.wtf(TAG, "placeCall: unexpected intent action " + action)
    [all...]
EmergencyCallHelper.java 107 * This method is called from the CallController placeCall() sequence
359 // Note we call PhoneUtils.placeCall() directly; we don't want any
367 int callStatus = PhoneUtils.placeCall(mApp,
372 if (DBG) log("- PhoneUtils.placeCall() returned status = " + callStatus);
375 // Note PhoneUtils.placeCall() returns one of the CALL_STATUS_*
386 Log.w(TAG, "placeEmergencyCall(): placeCall() failed: callStatus = " + callStatus);
392 if (DBG) log("==> Success from PhoneUtils.placeCall()!");
444 * placeCall(), since it's still possible the call will disconnect
OutgoingCallBroadcaster.java 59 * ultimately start the call using the CallController.placeCall() API.
319 // CallController.placeCall() after the SipCallOptionHandler step.
610 Log.i(TAG, "onCreate(): callNow case! Calling placeCall(): " + intent);
614 PhoneGlobals.getInstance().callController.placeCall(intent);
    [all...]
SipCallOptionHandler.java 123 // passed to CallController.placeCall() after displaying the SIP
420 PhoneGlobals.getInstance().callController.placeCall(mIntent);
OtaUtils.java 328 // call by calling CallController.placeCall() via the
334 // Instead, the outgoing call request goes straight to CallController.placeCall().
335 // - CallController.placeCall() notices that it's an OTASP
338 // CallController.placeCall()). The InCallScreen notices that
396 // PhoneUtils.placeCall().
400 int callStatus = PhoneUtils.placeCall(context,
407 if (DBG) log(" ==> successful return from placeCall(): callStatus = " + callStatus);
409 Log.w(LOG_TAG, "Failure from placeCall() for OTA number '"
487 * This method is called as part of the CallController placeCall() sequence
693 mApplication.callController.placeCall(newIntent)
    [all...]
PhoneUtils.java 86 // Return codes from placeCall()
635 * @see placeCall below
637 public static int placeCall(Context context, Phone phone, String number, Uri contactRef,
639 return placeCall(context, phone, number, contactRef, isEmergencyCall,
665 public static int placeCall(Context context, Phone phone, String number, Uri contactRef,
670 log("placeCall()... number: '" + number + "'"
675 log("placeCall()... number: " + toLogSafePhoneNumber(number)
    [all...]
CallNotifier.java     [all...]

Completed in 99 milliseconds