Home | History | Annotate | Download | only in shadows

Lines Matching refs:config

35     WifiConfiguration config = new WifiConfiguration();
36 config.networkId = realObject.networkId;
37 config.SSID = realObject.SSID;
38 config.BSSID = realObject.BSSID;
39 config.preSharedKey = realObject.preSharedKey;
40 config.wepTxKeyIndex = realObject.wepTxKeyIndex;
41 config.status = realObject.status;
42 config.priority = realObject.priority;
43 config.hiddenSSID = realObject.hiddenSSID;
44 config.allowedKeyManagement = (BitSet) realObject.allowedKeyManagement.clone();
45 config.allowedProtocols = (BitSet) realObject.allowedProtocols.clone();
46 config.allowedAuthAlgorithms = (BitSet) realObject.allowedAuthAlgorithms.clone();
47 config.allowedPairwiseCiphers = (BitSet) realObject.allowedPairwiseCiphers.clone();
48 config.allowedGroupCiphers = (BitSet) realObject.allowedGroupCiphers.clone();
49 config.wepKeys = new String[4];
50 System.arraycopy(realObject.wepKeys, 0, config.wepKeys, 0, config.wepKeys.length);
52 config.creatorName = realObject.creatorName;
55 config.creatorUid = realObject.creatorUid;
57 return config;