HomeSort by relevance Sort by last modified time
    Searched defs:bss (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
tbss.s 2 .globl bss
3 .section .bss,"aw",%nobits
5 .type bss,%object
6 .size bss,4096
7 bss: label
tbss1.s 11 .globl bss
12 .section .bss,"aw",%nobits
14 .type bss,%object
15 .size bss,4096
16 bss: label
  /external/elfutils/tests/
test-nlist.c 25 int bss; variable
40 [1] = { .n_name = "bss" },
  /external/iw/
link.c 28 struct nlattr *bss[NL80211_BSS_MAX + 1]; local
47 fprintf(stderr, "bss info missing!\n");
50 if (nla_parse_nested(bss, NL80211_BSS_MAX,
57 if (!bss[NL80211_BSS_BSSID])
60 if (!bss[NL80211_BSS_STATUS])
63 mac_addr_n2a(mac_addr, nla_data(bss[NL80211_BSS_BSSID]));
66 switch (nla_get_u32(bss[NL80211_BSS_STATUS])) {
82 if (bss[NL80211_BSS_INFORMATION_ELEMENTS])
83 print_ies(nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]),
84 nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS])
    [all...]
  /frameworks/compile/mclinker/unittests/
LinkerTest.cpp 399 /// [ 4] .bss NOBITS 00000000 000044 000000 00 WA 0
401 LDSection* bss = local
403 ".bss",
407 builder.CreateBSS(*bss);
457 ".bss",
463 bss);
  /hardware/qcom/wlan/qcwcn/wpa_supplicant_8_lib/
driver_cmd_nl80211.c 78 struct i802_bss *bss = priv; local
79 struct wpa_driver_nl80211_data *drv = bss->drv;
93 ret = linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname, macaddr);
101 os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
  /external/freetype/src/autofit/
hbshim.c 252 AF_Blue_Stringset bss = style_class->blue_stringset; local
253 const AF_Blue_StringRec* bs = &af_blue_stringsets[bss];
  /external/wpa_supplicant_8/src/ap/
ctrl_iface_ap.c 506 struct hostapd_data *bss = iface->bss[i]; local
508 "bss[%d]=%s\n"
512 (int) i, bss->conf->iface,
513 (int) i, MAC2STR(bss->own_addr),
515 wpa_ssid_txt(bss->conf->ssid.ssid,
516 bss->conf->ssid.ssid_len),
517 (int) i, bss->num_sta);
ap_config.c 23 static void hostapd_config_free_vlan(struct hostapd_bss_config *bss)
27 vlan = bss->vlan;
35 bss->vlan = NULL;
39 void hostapd_config_defaults_bss(struct hostapd_bss_config *bss)
41 dl_list_init(&bss->anqp_elem);
43 bss->logger_syslog_level = HOSTAPD_LEVEL_INFO;
44 bss->logger_stdout_level = HOSTAPD_LEVEL_INFO;
45 bss->logger_syslog = (unsigned int) -1;
46 bss->logger_stdout = (unsigned int) -1;
48 bss->auth_algs = WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED
106 struct hostapd_bss_config *bss; local
    [all...]
sta_info.c 696 struct hostapd_data *bss = iface->bss[i]; local
698 /* bss should always be set during operation, but it may be
700 * associated to another BSS in that case to avoid NULL pointer
702 if (bss == hapd || bss == NULL)
704 sta2 = ap_get_sta(bss, sta->addr);
709 " association from another BSS %s",
711 bss->conf->iface);
712 ap_sta_disconnect(bss, sta2, sta2->addr
    [all...]
  /external/wpa_supplicant_8/src/common/
hw_features_common.c 147 void get_pri_sec_chan(struct wpa_scan_res *bss, int *pri_chan, int *sec_chan)
154 ieee802_11_parse_elems((u8 *) (bss + 1), bss->ie_len, &elems, 0);
192 struct wpa_scan_res *bss = scan_res->res[i]; local
193 if (bss->freq == pri_freq)
195 else if (bss->freq == sec_freq)
205 * Match PRI/SEC channel with any existing HT40 BSS on the same
211 struct wpa_scan_res *bss = scan_res->res[i]; local
212 get_pri_sec_chan(bss, &bss_pri_chan, &bss_sec_chan);
221 struct wpa_scan_res *bss = scan_res->res[i] local
287 struct wpa_scan_res *bss = scan_res->res[i]; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
mesh.c 101 static void wpas_mesh_copy_groups(struct hostapd_data *bss,
112 bss->conf->sae_groups = os_malloc(groups_size);
113 if (bss->conf->sae_groups)
114 os_memcpy(bss->conf->sae_groups, wpa_s->conf->sae_groups,
123 struct hostapd_data *bss; local
144 ifmsh->bss = os_calloc(wpa_s->ifmsh->num_bss,
146 if (!ifmsh->bss)
149 ifmsh->bss[0] = bss = os_zalloc(sizeof(struct hostapd_data));
150 if (!bss)
    [all...]
bgscan_learn.c 39 struct dl_list bss; member in struct:bgscan_learn_data
45 static void bss_free(struct bgscan_learn_bss *bss)
47 os_free(bss->neigh);
48 os_free(bss);
68 static void bgscan_learn_add_neighbor(struct bgscan_learn_bss *bss,
73 if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0)
75 if (bssid_in_array(bss->neigh, bss->num_neigh, bssid))
78 n = os_realloc_array(bss->neigh, bss->num_neigh + 1, ETH_ALEN)
91 struct bgscan_learn_bss *bss; local
105 struct bgscan_learn_bss *bss; local
164 struct bgscan_learn_bss *bss; local
214 struct bgscan_learn_bss *bss; local
450 struct bgscan_learn_bss *bss, *n; local
515 struct bgscan_learn_bss *bss; local
    [all...]
mesh_rsn.c 46 hapd = wpa_s->ifmsh->bss[0];
81 struct hostapd_data *hapd = mesh_rsn->wpa_s->ifmsh->bss[0];
129 hapd = mesh_rsn->wpa_s->ifmsh->bss[0];
199 struct hostapd_data *bss = wpa_s->ifmsh->bss[0]; local
214 bss->wpa_auth = mesh_rsn->auth;
242 int *groups = wpa_s->ifmsh->bss[0]->conf->sae_groups;
289 struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
539 struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
mesh_mpm.c 174 struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
214 struct hostapd_data *bss = ifmsh->bss[0]; local
269 pos = hostapd_eid_supp_rates(bss, supp_rates);
270 pos = hostapd_eid_ext_supp_rates(bss, pos);
289 info = (bss->num_plinks > 63 ? 63 : bss->num_plinks) << 1;
344 pos = hostapd_eid_ht_capabilities(bss, ht_capa_oper);
345 pos = hostapd_eid_ht_operation(bss, pos);
353 pos = hostapd_eid_vht_capabilities(bss, vht_capa_oper)
    [all...]
wpas_glue.c 26 #include "bss.h"
372 struct wpa_bss *curr = NULL, *bss; local
376 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
377 if (os_memcmp(bss->bssid, wpa_s->bssid, ETH_ALEN) != 0)
380 ((bss->ssid_len == ssid->ssid_len &&
381 os_memcmp(bss->ssid, ssid->ssid, ssid->ssid_len) == 0) ||
383 curr = bss;
558 * Category[1] = 6 (Fast BSS Transition)
559 * Action[1] = 1 (Fast BSS Transition Request
591 struct wpa_bss *bss; local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_cmd_nl80211.c 72 struct i802_bss *bss = priv; local
73 struct wpa_driver_nl80211_data *drv = bss->drv;
78 if (bss->ifindex <= 0 && bss->wdev_id > 0) {
88 bss = wpa_s->parent->drv_priv;
89 drv = bss->drv;
91 " cmd (%s)", bss->ifname, cmd);
96 linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 0);
99 linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1);
104 ret = linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname, macaddr)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
subsegs.h 67 /* This field is set if this is a .bss section which does not really
68 have any contents. Once upon a time a .bss section did not have
72 unsigned int bss : 1; member in struct:segment_info_struct
  /external/wpa_supplicant_8/src/drivers/
driver_nl80211_scan.c 118 nl80211_scan_common(struct i802_bss *bss, u8 cmd,
121 struct wpa_driver_nl80211_data *drv = bss->drv;
126 msg = nl80211_cmd_msg(bss, 0, cmd);
223 * @bss: Pointer to private driver data from wpa_driver_nl80211_init()
227 int wpa_driver_nl80211_scan(struct i802_bss *bss,
230 struct wpa_driver_nl80211_data *drv = bss->drv;
240 msg = nl80211_scan_common(bss, NL80211_CMD_TRIGGER_SCAN, params);
288 bss, NL80211_IFTYPE_STATION))
291 if (wpa_driver_nl80211_scan(bss, params)) {
292 wpa_driver_nl80211_set_mode(bss, old_mode)
405 struct i802_bss *bss = priv; local
516 struct i802_bss *bss = priv; local
569 struct nlattr *bss[NL80211_BSS_MAX + 1]; local
832 struct i802_bss *bss = priv; local
868 struct i802_bss *bss = priv; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old.c 17 #include "../bss.h"
175 struct wpa_bss *bss; local
180 bss = wpa_bss_get_bssid(wpa_s, bssid);
181 if (bss == NULL)
186 return wpas_dbus_bssid_properties(message, wpa_s, bss);
dbus_old_handlers.c 22 #include "../bss.h"
355 struct wpa_bss *bss; local
371 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
381 wpa_s->dbus_path, MAC2STR(bss->bssid));
412 struct wpa_bss *bss)
421 wpa_ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
422 rsn_ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
423 wps_ie = wpa_bss_get_vendor_ie(bss, WPS_IE_VENDOR_TYPE);
428 (const char *) bss->bssid,
431 (const char *) bss->ssid
    [all...]
  /external/wpa_supplicant_8/hostapd/
main.c 153 struct hostapd_data *hapd = iface->bss[0];
197 struct hostapd_data *bss = hapd->iface->bss[i]; local
198 if (bss->conf->bridge[0])
199 params.bridge[i] = bss->conf->bridge;
238 * hostapd_interface_init - Read configuration file and init BSS data
241 * or more BSSes sharing the same radio) and allocate memory for the BSS
258 if (iface->bss[0]->conf->logger_stdout_level > 0)
259 iface->bss[0]->conf->logger_stdout_level--;
262 if (iface->conf->bss[0]->iface[0] == '\0' &
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
nlm32-sparc.c 265 asection *code, *data, *bss, *symsec; local
270 bss = bfd_get_section_by_name (abfd, NLM_UNINITIALIZED_DATA_NAME);
277 else if (symsec == bss)
  /frameworks/base/core/java/android/app/
FragmentManager.java 1631 final BackStackRecord bss = mBackStack.remove(last); local
1646 BackStackRecord bss = mBackStack.get(index); local
1662 BackStackRecord bss = mBackStack.get(index); local
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
FragmentManager.java 1725 final BackStackRecord bss = mBackStack.remove(last); local
1740 BackStackRecord bss = mBackStack.get(index); local
1756 BackStackRecord bss = mBackStack.get(index); local
    [all...]

Completed in 242 milliseconds

1 2 3 4