HomeSort by relevance Sort by last modified time
    Searched full:ssid (Results 26 - 50 of 1021) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
wpa_passphrase.sgml 10 <refpurpose>Generate a WPA PSK from an ASCII passphrase for a SSID</refpurpose>
15 <arg><replaceable>ssid</replaceable></arg>
26 and SSID are used to generate a 256-bit PSK.</para>
33 <term>ssid</term>
35 <para>The SSID whose passphrase should be derived.</para>
  /external/wpa_supplicant_8/wpa_supplicant/
config_winreg.c 25 ssid="example"
289 struct wpa_ssid *ssid; local
300 ssid = os_zalloc(sizeof(*ssid));
301 if (ssid == NULL) {
305 dl_list_init(&ssid->psk_list);
306 ssid->id = id;
308 wpa_config_set_network_defaults(ssid);
338 if (wpa_config_set(ssid, (char *) name, (char *) data, 0) < 0)
344 if (ssid->passphrase)
375 struct wpa_ssid *ssid, *tail = NULL, *head = NULL; local
987 struct wpa_ssid *ssid; local
    [all...]
wpas_glue.h 17 struct wpa_ssid *ssid);
25 void wpas_send_ctrl_req(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
wpas_kay.h 15 struct wpa_ssid *ssid);
23 struct wpa_ssid *ssid)
notify.c 123 "id=%d state=%d BSSID=" MACSTR " SSID=%s",
127 wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
128 wpa_ssid_txt(wpa_s->current_ssid->ssid,
189 struct wpa_ssid *ssid)
194 wpas_dbus_signal_network_enabled_changed(wpa_s, ssid);
199 struct wpa_ssid *ssid)
204 wpas_dbus_signal_network_selected(wpa_s, ssid->id);
209 struct wpa_ssid *ssid,
216 wpas_dbus_signal_network_request(wpa_s, ssid, rtype, default_txt);
315 struct wpa_ssid *ssid)
    [all...]
notify.h 32 struct wpa_ssid *ssid);
34 struct wpa_ssid *ssid);
36 struct wpa_ssid *ssid,
51 struct wpa_ssid *ssid);
53 struct wpa_ssid *ssid);
95 const struct wpa_ssid *ssid,
116 struct wpa_ssid *ssid, int network_id,
121 struct wpa_ssid *ssid);
123 struct wpa_ssid *ssid);
138 struct wpa_ssid *ssid);
    [all...]
scan.c 30 struct wpa_ssid *ssid; local
33 ssid = wpa_supplicant_get_ssid(wpa_s);
34 if (ssid == NULL)
38 wpa_s->current_ssid = ssid;
54 struct wpa_ssid *ssid; local
57 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
97 struct wpa_ssid *ssid = wpa_s->conf->ssid; local
304 struct wpa_ssid *ssid; local
511 struct wpa_ssid *ssid; local
577 struct wpa_ssid *ssid; local
652 struct wpa_ssid *ssid; local
1197 struct wpa_ssid *ssid = NULL; local
2339 struct wpa_ssid *ssid; local
    [all...]
  /external/autotest/client/site_tests/network_RoamWifiEndToEnd/
control 16 * Roam/Transition to a different network with the same ssid when we tear
22 ssid='ssid',
network_RoamWifiEndToEnd.py 21 2. Tests the DUT can Roam/Failover between networks with same SSID.
36 if service['Name'] == self.SSID:
47 raise error.TestFail('Network with ssid=%s is not found', self.SSID)
63 raise error.TestFail('Network with ssid=%s is not found', self.SSID)
73 def run_once(self, ssid, test):
76 @param ssid: SSID of the APs.
81 self.SSID = ssi
    [all...]
  /external/autotest/server/site_tests/network_WiFi_ConnectionIdentifier/
network_WiFi_ConnectionIdentifier.py 21 def _get_service_connection_id(self, ssid):
27 @param ssid: SSID of the service of interest.
33 properties = self.context.client.shill.get_service_properties(ssid)
42 def _connect(self, ssid, expected_connection_id=None):
45 @param ssid: SSID of the AP.
49 client_conf = xmlrpc_datatypes.AssociationParameters(ssid)
51 connection_id = self._get_service_connection_id(ssid)
82 # connection ID sticks with AP instance regardless of the SSID
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ScanResultTest.java 18 ScanResult scanResult = ShadowScanResult.newInstance("SSID", "BSSID", "Caps", 11, 42);
19 assertThat(scanResult.SSID, equalTo("SSID"));
  /system/connectivity/shill/setup_wifi/
main.cc 39 static const char kHexSsid[] = "hex-ssid";
40 static const char kSSID[] = "ssid";
43 " --ssid=<ssid>\n"
44 " Set the SSID to configure (mandatory).\n"
45 " --hex-ssid\n"
46 " SSID is provided in hexadecimal\n"
55 MyClient(std::string ssid, bool is_hex_ssid, std::string psk)
56 : ssid_(ssid), is_hex_ssid_(is_hex_ssid), psk_(psk) {}
126 LOG(ERROR) << "ssid switch is mandatory."
131 std::string ssid = cl->GetSwitchValueASCII(switches::kSSID); local
    [all...]
  /external/selinux/libselinux/src/
avc.c 20 security_id_t ssid; member in struct:avc_entry
41 int (*callback) (uint32_t event, security_id_t ssid,
46 security_id_t ssid; member in struct:avc_callback_node
63 static inline int avc_hash(security_id_t ssid,
66 return ((uintptr_t) ssid ^ ((uintptr_t) tsid << 2) ^ tclass)
342 static inline struct avc_node *avc_claim_node(security_id_t ssid,
362 hvalue = avc_hash(ssid, tsid, tclass);
365 new->ae.ssid = ssid;
375 static inline struct avc_node *avc_search_node(security_id_t ssid,
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerTestRunner.java 33 * adb shell am instrument -e ssid <ssid> \
58 String ssid = icicle.getString("ssid"); local
59 if (ssid != null) {
60 mSsid = ssid;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
ScanResultComparator.java 56 if (result1.SSID.equals(mConnectedSSID)
60 if (result2.SSID.equals(mConnectedSSID)
69 if (result1.SSID.equals(result2.SSID)) {
72 return result1.SSID.compareTo(result2.SSID);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
WifiConfigCreator.java 46 public static final String EXTRA_SSID = "extra-ssid";
70 public int addNetwork(String ssid, boolean hidden, int securityType,
74 WifiConfiguration wifiConf = createConfig(ssid, hidden, securityType, password);
81 Log.w(TAG, "Unable to add SSID '" + ssid + "': netId = " + netId);
90 public int updateNetwork(WifiConfiguration wifiConf, String ssid, boolean hidden,
97 WifiConfiguration conf = createConfig(ssid, hidden, securityType, password);
106 Log.w(TAG, "Unable to update SSID '" + ssid + "': netId = " + newNetId);
115 public int updateNetwork(int netId, String ssid, boolean hidden
    [all...]
  /external/autotest/client/common_lib/cros/network/
tcpdump_analyzer.py 13 FRAME_FIELD_WLAN_MGMT_SSID = 'wlan_mgt.ssid'
20 PYSHARK_BROADCAST_SSID = 'SSID: '
29 def __init__(self, frametime, bit_rate, mcs_index, ssid):
33 self._ssid = ssid
60 def ssid(self): member in class:Frame
62 The SSID of the frame, as a string.
64 The value may be None, if the frame does not have an SSID.
150 # Get the SSID for any probe requests
154 ssid = _fetch_frame_field_value(frame, FRAME_FIELD_WLAN_MGMT_SSID)
155 # Since the SSID name is a variable length field, there seems to b
    [all...]
  /external/autotest/client/cros/scripts/
wifi 38 print cmd, 'connect <ssid> [passphrase] [security]'
42 print cmd, 'disconnect <ssid> [timeout seconds]'
44 print cmd, 'connect_with_props <ssid> <timeout seconds>'
49 print cmd, 'configure <ssid> [passphrase] [security]'
55 def configure(ssid, security, passphrase):
60 successful = wifi.configure_wifi_service(ssid, security,
69 def connect(ssid, security, credentials, save_credentials, timeout=15):
75 @param ssid string Name of the network to connect to.
84 result = wifi.connect_to_wifi_network(ssid,
102 def disconnect(ssid, timeout=None)
    [all...]
  /external/libselinux/src/
avc.c 20 security_id_t ssid; member in struct:avc_entry
41 int (*callback) (uint32_t event, security_id_t ssid,
46 security_id_t ssid; member in struct:avc_callback_node
63 static inline int avc_hash(security_id_t ssid,
66 return ((uintptr_t) ssid ^ ((uintptr_t) tsid << 2) ^ tclass)
302 static inline struct avc_node *avc_claim_node(security_id_t ssid,
322 hvalue = avc_hash(ssid, tsid, tclass);
325 new->ae.ssid = ssid;
335 static inline struct avc_node *avc_search_node(security_id_t ssid,
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/model/
WifiInfo.java 49 /** Ssid of the wifi network. */
50 public final String ssid; field in class:WifiInfo
51 /** Wifi network in {@link #ssid} is hidden or not. */
53 /** Security type of the wifi network in {@link #ssid}. */
56 /** Password of the wifi network in {@link #ssid}. */
59 /** Proxy host for the wifi network in {@link #ssid}. */
62 /** Proxy port for the wifi network in {@link #ssid}. */
64 /** The proxy bypass for the wifi network in {@link #ssid}. */
67 /** The proxy bypass list for the wifi network in {@link #ssid}. */
72 ssid = builder.mSsid
    [all...]
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
WifiTest.java 43 // Unique SSID to use for this test (max SSID length is 32)
64 * <li>Network with SSID {@link WifiTest#NETWORK_SSID} is created.</li>
78 * Remove any network through the WifiManager API with a certain SSID. Verifies that the network
83 * <li>If a network with SSID {@link WifiTest#NETWORK_SSID} exists, it will be deleted.</li>
100 * Verify that no network exists with a certain SSID.
102 * <p>The SSID that will be checked for is {@link WifiTest#NETWORK_SSID}.
109 * Block until a network configuration with a certain SSID either exists or ceases to.
113 private boolean awaitNetworkState(String ssid, boolean exists) {
118 if ((getNetworkForSsid(ssid) != null) == exists)
    [all...]
  /external/dhcpcd-6.8.2/dhcpcd-hooks/
01-test 5 set | grep "^if\(carrier\|flags\|mtu\|wireless\|ssid\)=" | sort
  /external/libweave/src/privet/
wifi_delegate.h 29 // Starts WiFi setup. Device should try to connect to provided SSID and
33 virtual bool ConfigureCredentials(const std::string& ssid,
37 // Returns SSID of the currently configured WiFi network. Empty string, if
41 // Returns SSID of the WiFi network hosted by this device. Empty if device is
  /external/wpa_supplicant_8/src/drivers/
android_drv.h 27 /* SSID header size is SSID section type above + SSID length */
49 /* PNO Max command size is total of header, version, ssid and other sections +
  /external/wpa_supplicant_8/wpa_supplicant/examples/
ieee8021x.conf 6 ssid="example 802.1x network"

Completed in 1814 milliseconds

12 3 4 5 6 7 8 91011>>