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 306 placeCall();
324 placeCall();
400 placeCall();
489 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 46 * ultimately start the call using the CallController.placeCall() API.
243 // CallController.placeCall() after the SipCallOptionHandler step.
450 if (DBG) Log.v(TAG, "onCreate(): callNow case! Calling placeCall(): " + intent);
454 PhoneApp.getInstance().callController.placeCall(intent);
SipCallOptionHandler.java 106 // passed to CallController.placeCall() after displaying the SIP
395 PhoneApp.getInstance().callController.placeCall(mIntent);
OtaUtils.java 359 // call by calling CallController.placeCall() via the
365 // Instead, the outgoing call request goes straight to CallController.placeCall().
366 // - CallController.placeCall() notices that it's an OTASP
369 // CallController.placeCall()). The InCallScreen notices that
420 // PhoneUtils.placeCall().
424 int callStatus = PhoneUtils.placeCall(context,
432 if (DBG) log(" ==> successful return from placeCall(): callStatus = " + callStatus);
434 Log.w(LOG_TAG, "Failure from placeCall() for OTA number '"
512 * This method is called as part of the CallController placeCall() sequence
708 mApplication.callController.placeCall(newIntent)
    [all...]
CallNotifier.java     [all...]
PhoneUtils.java 81 // Return codes from placeCall()
559 public static int placeCall(Context context, Phone phone,
562 if (DBG) log("placeCall '" + number + "' GW:'" + gatewayUri + "'");
    [all...]

Completed in 219 milliseconds