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

  /device/google/cuttlefish_common/tests/ril/src/com/android/cuttlefish/ril/tests/
RilE2eTests.java 141 Assert.assertFalse(mTeleManager.isNetworkRoaming());
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowSubscriptionManager.java 81 * Cache of subscription ids used by {@link #isNetworkRoaming}. Managed by {@link
203 /** Clears the local cache of roaming subscription Ids used by {@link #isNetworkRoaming}. */
209 * If isNetworkRoaming is set, it will mark the provided sim subscriptionId as roaming in a local
210 * cache. If isNetworkRoaming is unset it will remove the subscriptionId from the local cache. The
211 * local cache is used to provide roaming status returned by {@link #isNetworkRoaming}.
213 public void setNetworkRoamingStatus(int simSubscriptionId, boolean isNetworkRoaming) {
214 if (isNetworkRoaming) {
227 protected boolean isNetworkRoaming(int simSubscriptionId) {
ShadowTelephonyManager.java 81 private boolean isNetworkRoaming;
598 protected boolean isNetworkRoaming() {
599 return isNetworkRoaming;
602 /** Sets the value returned by {@link TelephonyManager#isNetworkRoaming()}. */
603 public void setIsNetworkRoaming(boolean isNetworkRoaming) {
604 this.isNetworkRoaming = isNetworkRoaming;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowTelephonyManagerTest.java 344 assertTrue(telephonyManager.isNetworkRoaming());
  /cts/tests/tests/telephony/current/src/android/telephony/cts/
TelephonyManagerTest.java 312 mTelephonyManager.isNetworkRoaming();
    [all...]

Completed in 658 milliseconds