Searched defs:Network (Results 1 - 3 of 3) sorted by relevance

/frameworks/volley/src/com/android/volley/
H A DNetwork.java22 public interface Network { interface
/frameworks/base/core/java/android/net/
H A DNetwork.java45 * Identifies a {@code Network}. This is supplied to applications via
49 * It is used to direct traffic to the given {@code Network}, either on a {@link Socket} basis
53 public class Network implements Parcelable { class in inherits:Parcelable
83 public Network(int netId) { method in class:Network
90 public Network(Network that) { method in class:Network
133 // Lookup addresses only on this Network.
185 * this factory will have its traffic sent over this {@code Network}. Note that if this
186 * {@code Network} ever disconnects, this factory and any {@link Socket} it produced in the
190 * {@code Network}
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java137 static class Network { class in class:SettingsBackupAgent
143 public static Network readFromStream(BufferedReader in) {
144 final Network n = new Network();
200 if (!(o instanceof Network)) return false;
201 final Network other;
203 other = (Network) o;
223 final HashSet<Network> mKnownNetworks = new HashSet<Network>();
224 final ArrayList<Network> mNetwork
[all...]

Completed in 120 milliseconds