HomeSort by relevance Sort by last modified time
    Searched full:placecall (Results 1 - 15 of 15) sorted by null

  /packages/apps/Phone/src/com/android/phone/
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...]
FakePhoneActivity.java 46 mPlaceCall = (Button) findViewById(R.id.placeCall);
Constants.java 42 * call (see CallController.placeCall() and placeCallInternal()), as
44 * that don't technically result from the placeCall() sequence but
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
EmergencyDialer.java 306 placeCall();
324 placeCall();
400 placeCall();
489 void placeCall() {
OutgoingCallBroadcaster.java 46 * ultimately start the call using the CallController.placeCall() API.
247 // CallController.placeCall() after the SipCallOptionHandler step.
485 if (DBG) Log.v(TAG, "onCreate(): callNow case! Calling placeCall(): " + intent);
489 PhoneApp.getInstance().callController.placeCall(intent);
OtaUtils.java 380 // call by calling CallController.placeCall() via the
386 // Instead, the outgoing call request goes straight to CallController.placeCall().
387 // - CallController.placeCall() notices that it's an OTASP
390 // CallController.placeCall()). The InCallScreen notices that
447 // PhoneUtils.placeCall().
451 int callStatus = PhoneUtils.placeCall(context,
459 if (DBG) log(" ==> successful return from placeCall(): callStatus = " + callStatus);
461 Log.w(LOG_TAG, "Failure from placeCall() for OTA number '"
539 * This method is called as part of the CallController placeCall() sequence
744 mApplication.callController.placeCall(newIntent)
    [all...]
SipCallOptionHandler.java 106 // passed to CallController.placeCall() after displaying the SIP
395 PhoneApp.getInstance().callController.placeCall(mIntent);
InCallUiState.java 162 // during CallController.placeCall() for example), we inform the user
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...]
InCallScreen.java 626 // CallController.placeCall().)
    [all...]
CallNotifier.java     [all...]
  /packages/apps/Phone/res/layout/
fake_phone_activity.xml 39 <Button android:id="@+id/placeCall"
  /external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.h 154 void PlaceCall(const buzz::Jid& jid, const cricket::CallOptions& options);
callclient.cc 578 PlaceCall(found_jid, options);
584 void CallClient::PlaceCall(const buzz::Jid& jid,
630 PlaceCall(voicemail, cricket::CallOptions());

Completed in 6931 milliseconds