Lines Matching full:bssid
891 def request_roam(self, bssid):
892 """Request that we roam to the specified BSSID.
896 1) We're connected to an SSID for which |bssid| is a member.
902 @param bssid: string MAC address of bss to roam to.
905 self._wpa_cli_proxy.run_wpa_cli_cmd('roam %s' % bssid,
910 def request_roam_dbus(self, bssid, interface):
911 """Request that we roam to the specified BSSID through dbus.
915 1) We're connected to an SSID for which |bssid| is a member.
918 @param bssid: string MAC address of bss to roam to.
922 self._shill_proxy.request_roam_dbus(bssid, interface)
925 def wait_for_roam(self, bssid, timeout_seconds=10.0):
926 """Wait for a roam to the given |bssid|.
928 @param bssid: string bssid to expect a roam to
931 @return True iff we detect an association to the given |bssid| within
941 logging.debug('Current BSSID is %s.', current_bssid)
942 if current_bssid == bssid:
949 bssid,