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";
59 public NetworkIdentity(
75 if (obj instanceof NetworkIdentity) {
76 final NetworkIdentity ident = (NetworkIdentity) obj;
149 res[i] = NetworkIdentity.scrubSubscriberId(subscriberId[i]);
155 * Build a {@link NetworkIdentity} from the given {@link NetworkState},
158 public static NetworkIdentity buildNetworkIdentity(Context context, NetworkState state)
    [all...]
NetworkTemplate.java 24 import static android.net.NetworkIdentity.COMBINE_SUBTYPE_ENABLED;
44 * Template definition used to generically match {@link NetworkIdentity},
203 NetworkIdentity.scrubSubscriberId(mSubscriberId));
207 Arrays.toString(NetworkIdentity.scrubSubscriberId(mMatchSubscriberIds)));
256 * Test if given {@link NetworkIdentity} matches this template.
258 public boolean matches(NetworkIdentity ident) {
284 private boolean matchesMobile(NetworkIdentity ident) {
299 private boolean matchesMobile3gLower(NetworkIdentity ident) {
318 private boolean matchesMobile4g(NetworkIdentity ident) {
335 private boolean matchesWifi(NetworkIdentity ident)
    [all...]

Completed in 322 milliseconds