/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
TestDialerActivity.java | 39 placeCall(); 91 private void placeCall() { 94 telecomManager.placeCall(Uri.fromParts(PhoneAccount.SCHEME_TEL,
|
/packages/services/Telephony/src/com/android/phone/ |
FakePhoneActivity.java | 46 mPlaceCall = (Button) findViewById(R.id.placeCall);
|
EmergencyDialer.java | 318 placeCall(); 340 placeCall(); 365 placeCall(); 516 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 | 60 * 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 | 323 // call by calling CallController.placeCall() via the 329 // Instead, the outgoing call request goes straight to CallController.placeCall(). 330 // - CallController.placeCall() notices that it's an OTASP 333 // CallController.placeCall()). The InCallScreen notices that 390 // PhoneUtils.placeCall(). 394 int callStatus = PhoneUtils.placeCall(context, 401 if (DBG) log(" ==> successful return from placeCall(): callStatus = " + callStatus); 403 Log.w(LOG_TAG, "Failure from placeCall() for OTA number '" 481 * This method is called as part of the CallController placeCall() sequence 683 mApplication.callController.placeCall(newIntent) [all...] |
PhoneUtils.java | 88 // Return codes from placeCall() 521 * @see placeCall below 523 public static int placeCall(Context context, Phone phone, String number, Uri contactRef, 525 return placeCall(context, phone, number, contactRef, isEmergencyCall, 551 public static int placeCall(Context context, Phone phone, String number, Uri contactRef, 556 log("placeCall()... number: '" + number + "'" 561 log("placeCall()... number: " + toLogSafePhoneNumber(number) [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/compat/telecom/ |
TelecomManagerCompat.java | 49 public static void placeCall(@Nullable Activity activity, 55 telecomManager.placeCall(intent.getData(), intent.getExtras());
|
/frameworks/base/telecomm/java/com/android/internal/telecom/ |
ITelecomService.aidl | 234 * @see TelecomServiceImpl#placeCall 236 void placeCall(in Uri handle, in Bundle extras, String callingPackage);
|
/packages/apps/Dialer/src/com/android/dialer/util/ |
TelecomUtil.java | 168 public static boolean placeCall(Activity activity, Intent intent) { 170 TelecomManagerCompat.placeCall(activity, getTelecomManager(activity), intent);
|
DialerUtils.java | 90 final boolean hasCallPermission = TelecomUtil.placeCall((Activity) context, intent);
|
/frameworks/base/telecomm/java/android/telecom/ |
TelecomManager.java | [all...] |
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
PhoneAccountTest.java | 135 mTelecomManager.placeCall(phoneUri, extras);
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
TelecomServiceImplTest.java | 658 mTSIBinder.placeCall(handle, extras, DEFAULT_DIALER_PACKAGE); 672 mTSIBinder.placeCall(handle, extras, DEFAULT_DIALER_PACKAGE); 686 mTSIBinder.placeCall(handle, extras, DEFAULT_DIALER_PACKAGE); 710 mTSIBinder.placeCall(handle, extras, "arbitrary_package_name"); [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/ |
CallSubjectDialog.java | 166 TelecomManagerCompat.placeCall(
|