Home | History | Annotate | Download | only in dbus

Lines Matching refs:bssid

27  * @bssid: (out) the scanned bssid this object path refers to, if any
31 * and BSSID parts, if those parts exist.
34 char **bssid)
68 } else if (bssid && bssid_part) {
69 /* Deal with a request for a scanned BSSID */
73 *bssid = os_strdup(bssid_name);
75 *bssid = NULL;
116 * wpas_dbus_new_invalid_bssid_error - Return a new invalid bssid error message
120 * Convenience function to create and return an invalid bssid error
125 "The BSSID requested was invalid.");
165 * @bssid: bssid of the scanned network we're interested in
174 u8 bssid[ETH_ALEN];
177 if (hexstr2bin(bssid_txt, bssid, ETH_ALEN) < 0)
180 bss = wpa_bss_get_bssid(wpa_s, bssid);
184 /* Dispatch the method call against the scanned bssid */
212 char *bssid = NULL;
220 &bssid);
243 } else if (bssid && !strcmp(msg_interface, WPAS_DBUS_IFACE_BSSID)) {
245 reply = wpas_dispatch_bssid_method(message, wpa_s, bssid);
299 os_free(bssid);