Home | History | Annotate | Download | only in settings

Lines Matching refs:Network

135     // Class for capturing a network definition from the wifi supplicant config file
136 static class Network {
141 public static Network readFromStream(BufferedReader in) {
142 final Network n = new Network();
181 Log.v(TAG, "network={");
192 if (!(o instanceof Network)) return false;
193 final Network other;
195 other = (Network) o;
211 // Ingest multiple wifi config file fragments, looking for network={} blocks
215 final HashSet<Network> mKnownNetworks = new HashSet<Network>();
216 final ArrayList<Network> mNetworks = new ArrayList<Network>(8);
224 // Parse out 'network=' decls so we can ignore duplicates
225 if (line.startsWith("network")) {
226 Network net = Network.readFromStream(in);
247 for (Network net : mNetworks) {
253 for (Network net : mNetworks) {
819 if (!started && line.startsWith("network")) {