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.java48 * Identifies a {@code Network}. This is supplied to applications via
52 * It is used to direct traffic to the given {@code Network}, either on a {@link Socket} basis
56 public class Network implements Parcelable { class in inherits:Parcelable
86 public Network(int netId) { method in class:Network
93 public Network(Network that) { method in class:Network
136 // Lookup addresses only on this Network.
188 * this factory will have its traffic sent over this {@code Network}. Note that if this
189 * {@code Network} ever disconnects, this factory and any {@link Socket} it produced in the
193 * {@code Network}
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java146 static class Network { class in class:SettingsBackupAgent
153 public static Network readFromStream(BufferedReader in) {
154 final Network n = new Network();
262 if (!(o instanceof Network)) return false;
263 final Network other;
265 other = (Network) o;
281 boolean networkInWhitelist(Network net, List<WifiConfiguration> whitelist) {
296 final HashSet<Network> mKnownNetworks = new HashSet<Network>();
[all...]

Completed in 54 milliseconds