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

  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestDialerActivity.java 28 placeCall();
53 private void placeCall() {
  /packages/services/Telephony/src/com/android/phone/
FakePhoneActivity.java 46 mPlaceCall = (Button) findViewById(R.id.placeCall);
EmergencyDialer.java 316 placeCall();
338 placeCall();
355 placeCall();
512 private void placeCall() {
CallController.java 46 * - actually running the placeCall() method and handling errors or retries
172 * ultimately calls CallController.placeCall() (from the
176 * (4) Here in CallController.placeCall() we read the phone number or SIP
190 public void placeCall(Intent intent) {
191 log("placeCall()... intent = " + intent);
199 Log.wtf(TAG, "placeCall: called with null intent");
200 throw new IllegalArgumentException("placeCall: called with null intent");
206 Log.wtf(TAG, "placeCall: intent had no data");
207 throw new IllegalArgumentException("placeCall: intent had no data");
225 Log.wtf(TAG, "placeCall: unexpected intent action " + action)
    [all...]
EmergencyCallHelper.java 108 * This method is called from the CallController placeCall() sequence
361 // Note we call PhoneUtils.placeCall() directly; we don't want any
369 int callStatus = PhoneUtils.placeCall(mApp,
374 if (DBG) log("- PhoneUtils.placeCall() returned status = " + callStatus);
377 // Note PhoneUtils.placeCall() returns one of the CALL_STATUS_*
388 Log.w(TAG, "placeEmergencyCall(): placeCall() failed: callStatus = " + callStatus);
394 if (DBG) log("==> Success from PhoneUtils.placeCall()!");
446 * placeCall(), since it's still possible the call will disconnect
OutgoingCallBroadcaster.java 58 * ultimately start the call using the CallController.placeCall() API.
583 Log.i(TAG, "onCreate(): callNow case! Calling placeCall(): " + intent);
587 PhoneGlobals.getInstance().callController.placeCall(intent);
    [all...]
OtaUtils.java 327 // call by calling CallController.placeCall() via the
333 // Instead, the outgoing call request goes straight to CallController.placeCall().
334 // - CallController.placeCall() notices that it's an OTASP
337 // CallController.placeCall()). The InCallScreen notices that
395 // PhoneUtils.placeCall().
399 int callStatus = PhoneUtils.placeCall(context,
406 if (DBG) log(" ==> successful return from placeCall(): callStatus = " + callStatus);
408 Log.w(LOG_TAG, "Failure from placeCall() for OTA number '"
486 * This method is called as part of the CallController placeCall() sequence
692 mApplication.callController.placeCall(newIntent)
    [all...]
PhoneUtils.java 80 // Return codes from placeCall()
522 * @see placeCall below
524 public static int placeCall(Context context, Phone phone, String number, Uri contactRef,
526 return placeCall(context, phone, number, contactRef, isEmergencyCall,
552 public static int placeCall(Context context, Phone phone, String number, Uri contactRef,
557 log("placeCall()... number: '" + number + "'"
562 log("placeCall()... number: " + toLogSafePhoneNumber(number)
    [all...]
CallNotifier.java 581 PhoneUtils.placeCall(mApplication, phone, number, null, false);
    [all...]

Completed in 476 milliseconds