Searched refs:placeCall (Results 1 - 9 of 9) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
H A DTestDialerActivity.java28 placeCall();
53 private void placeCall() { method in class:TestDialerActivity
/packages/services/Telephony/src/com/android/phone/
H A DFakePhoneActivity.java46 mPlaceCall = (Button) findViewById(R.id.placeCall);
H A DEmergencyDialer.java312 placeCall();
334 placeCall();
351 placeCall();
505 private void placeCall() { method in class:EmergencyDialer
H A DCallController.java46 * - 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) { method in class:CallController
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
[all...]
H A DEmergencyCallHelper.java108 * 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
H A DOutgoingCallBroadcaster.java59 * ultimately start the call using the CallController.placeCall() API.
585 Log.i(TAG, "onCreate(): callNow case! Calling placeCall(): " + intent);
589 PhoneGlobals.getInstance().callController.placeCall(intent);
H A DOtaUtils.java327 // 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(newInten
[all...]
H A DPhoneUtils.java85 // Return codes from placeCall()
534 * @see placeCall below
536 public static int placeCall(Context context, Phone phone, String number, Uri contactRef, method in class:PhoneUtils
538 return placeCall(context, phone, number, contactRef, isEmergencyCall,
564 public static int placeCall(Context context, Phone phone, String number, Uri contactRef, method in class:PhoneUtils
569 log("placeCall()... number: '" + number + "'"
574 log("placeCall()... number: " + toLogSafePhoneNumber(number)
H A DCallNotifier.java593 PhoneUtils.placeCall(mApplication, phone, number, null, false);

Completed in 209 milliseconds