HomeSort by relevance Sort by last modified time
    Searched defs:phoneAccountHandle (Results 1 - 6 of 6) sorted by null

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowVisualVoicemailSmsTest.java 10 import android.telecom.PhoneAccountHandle;
26 private final PhoneAccountHandle phoneAccountHandle =
27 new PhoneAccountHandle(new ComponentName(appContext, Object.class), "foo");
40 shadowSms.setPhoneAccountHandle(phoneAccountHandle);
42 assertThat(sms.getPhoneAccountHandle()).isEqualTo(phoneAccountHandle);
73 .setPhoneAccountHandle(phoneAccountHandle)
83 assertThat(newSms.getPhoneAccountHandle()).isEqualTo(phoneAccountHandle);
ShadowTelephonyManagerTest.java 30 import android.telecom.PhoneAccountHandle;
267 PhoneAccountHandle phoneAccountHandle =
268 new PhoneAccountHandle(
271 shadowTelephonyManager.setVoicemailVibrationEnabled(phoneAccountHandle, true);
273 assertTrue(telephonyManager.isVoicemailVibrationEnabled(phoneAccountHandle));
279 PhoneAccountHandle phoneAccountHandle =
280 new PhoneAccountHandle(
284 shadowTelephonyManager.setVoicemailRingtoneUri(phoneAccountHandle, ringtoneUri)
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowVisualVoicemailSms.java 8 import android.telecom.PhoneAccountHandle;
17 private PhoneAccountHandle phoneAccountHandle;
32 protected PhoneAccountHandle getPhoneAccountHandle() {
33 return phoneAccountHandle;
36 public ShadowVisualVoicemailSms setPhoneAccountHandle(PhoneAccountHandle phoneAccountHandle) {
37 this.phoneAccountHandle = phoneAccountHandle;
78 .setPhoneAccountHandle(in.readParcelable(PhoneAccountHandle.class.getClassLoader())
    [all...]
  /cts/hostsidetests/numberblocking/app/src/com/android/cts/numberblocking/hostside/
CallBlockingTest.java 29 import android.telecom.PhoneAccountHandle;
53 PhoneAccountHandle phoneAccountHandle = getPhoneAccountHandle();
55 phoneAccountHandle, phoneAccountHandle.getId())
62 assertPhoneAccountRegistered(phoneAccountHandle, true);
66 PhoneAccountHandle handle = getPhoneAccountHandle();
76 // final PhoneAccountHandle phoneAccountHandle = registerPhoneAccount().getAccountHandle();
110 private PhoneAccountHandle getPhoneAccountHandle()
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelecomManagerFacade.java 30 import android.telecom.PhoneAccountHandle;
59 private List<PhoneAccountHandle> mEnabledAccountHandles = null;
139 public List<PhoneAccountHandle> telecomGetEnabledPhoneAccounts() {
149 List<PhoneAccountHandle> accountHandles = mTelecomManager
151 for (PhoneAccountHandle handle : accountHandles) {
168 public PhoneAccountHandle telecomGetUserSelectedOutgoingPhoneAccount() {
177 Iterator<PhoneAccountHandle> phoneAccounts =
181 PhoneAccountHandle phoneAccountHandle = phoneAccounts.next();
183 mTelecomManager.getPhoneAccount(phoneAccountHandle);
    [all...]
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
PhoneAccountTest.java 38 import android.telecom.PhoneAccountHandle;
71 private static final PhoneAccountHandle PHONE_ACCOUNT_HANDLE = new PhoneAccountHandle(
108 final PhoneAccountHandle phoneAccountHandle = registerPhoneAccount().getAccountHandle();
120 placeCallUsingTelecomManager(phoneAccountHandle, phoneNumber);
122 placeCallUsingActionCall(phoneAccountHandle, phoneNumber);
137 PhoneAccountHandle phoneAccountHandle, String phoneNumber) {
141 extras.putParcelable(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, phoneAccountHandle);
    [all...]

Completed in 3616 milliseconds