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

  /frameworks/base/core/java/android/net/
NetworkIdentity.java 38 public class NetworkIdentity implements Comparable<NetworkIdentity> {
39 private static final String TAG = "NetworkIdentity";
60 public NetworkIdentity(
78 if (obj instanceof NetworkIdentity) {
79 final NetworkIdentity ident = (NetworkIdentity) obj;
158 res[i] = NetworkIdentity.scrubSubscriberId(subscriberId[i]);
164 * Build a {@link NetworkIdentity} from the given {@link NetworkState},
167 public static NetworkIdentity buildNetworkIdentity(Context context, NetworkState state)
    [all...]
NetworkTemplate.java 26 import static android.net.NetworkIdentity.COMBINE_SUBTYPE_ENABLED;
49 * Template definition used to generically match {@link NetworkIdentity},
211 NetworkIdentity.scrubSubscriberId(mSubscriberId));
215 Arrays.toString(NetworkIdentity.scrubSubscriberId(mMatchSubscriberIds)));
274 * Test if given {@link NetworkIdentity} matches this template.
276 public boolean matches(NetworkIdentity ident) {
304 private boolean matchesMobile(NetworkIdentity ident) {
319 private boolean matchesMobile3gLower(NetworkIdentity ident) {
338 private boolean matchesMobile4g(NetworkIdentity ident) {
355 private boolean matchesWifi(NetworkIdentity ident)
    [all...]

Completed in 108 milliseconds