Lines Matching refs:network

260             // Set the network type, in case the radio does not restore it.
281 // Remove old network selection sharedPreferences since SP key names are now
406 // If the phone is not registered on a network, no need to update.
502 * Re-register network by toggling preferred network type.
503 * This is a work-around to deregister and register network since there is
710 * Registration point for transition into network attached.
773 // In some network, deactivate PDP connection cause releasing of RRC connection,
774 // which MM/IMSI detaching request needs. Without this detaching, network can
775 // not release the network resources previously attached.
1035 // Not a valid network
1100 * Check if device is non-roaming and always on home network.
1103 * @return true if network is always on home network, false otherwise
1111 * Check if the network identifier has membership in the set of
1112 * network identifiers stored in the carrier config bundle.
1115 * @param network The network identifier to check network existence in bundle
1118 * @return true if network has membership in bundle networks, false otherwise
1121 private boolean isInNetwork(BaseBundle b, String network, String key) {
1124 if (networks != null && Arrays.asList(networks).contains(network)) {
1130 protected final boolean isRoamingInGsmNetwork(BaseBundle b, String network) {
1131 return isInNetwork(b, network, CarrierConfigManager.KEY_GSM_ROAMING_NETWORKS_STRING_ARRAY);
1134 protected final boolean isNonRoamingInGsmNetwork(BaseBundle b, String network) {
1135 return isInNetwork(b, network, CarrierConfigManager.KEY_GSM_NONROAMING_NETWORKS_STRING_ARRAY);
1138 protected final boolean isRoamingInCdmaNetwork(BaseBundle b, String network) {
1139 return isInNetwork(b, network, CarrierConfigManager.KEY_CDMA_ROAMING_NETWORKS_STRING_ARRAY);
1142 protected final boolean isNonRoamingInCdmaNetwork(BaseBundle b, String network) {
1143 return isInNetwork(b, network, CarrierConfigManager.KEY_CDMA_NONROAMING_NETWORKS_STRING_ARRAY);