/hal_espressif-3.4.0/components/wpa_supplicant/src/common/ |
D | bss.c | 25 void wpa_bss_remove(struct wpa_supplicant *wpa_s, struct wpa_bss *bss, in wpa_bss_remove() argument 31 if (wpa_s->last_scan_res[i] == bss) { in wpa_bss_remove() 41 dl_list_del(&bss->list); in wpa_bss_remove() 42 dl_list_del(&bss->list_id); in wpa_bss_remove() 45 " SSID '%s' due to %s", bss->id, MAC2STR(bss->bssid), in wpa_bss_remove() 46 wpa_ssid_txt(bss->ssid, bss->ssid_len), reason); in wpa_bss_remove() 47 os_free(bss); in wpa_bss_remove() 62 struct wpa_bss *bss; in wpa_bss_get() local 63 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) { in wpa_bss_get() 64 if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0 && in wpa_bss_get() [all …]
|
D | mbo.c | 74 const u8 * wpas_mbo_get_bss_attr(struct wpa_bss *bss, enum mbo_attr_id attr) in wpas_mbo_get_bss_attr() argument 78 if (!bss) in wpas_mbo_get_bss_attr() 81 mbo = wpa_bss_get_vendor_ie(bss, MBO_IE_VENDOR_TYPE); in wpas_mbo_get_bss_attr() 92 void wpas_mbo_check_pmf(struct wpa_supplicant *wpa_s, struct wpa_bss *bss in wpas_mbo_check_pmf() argument 102 if (!bss) in wpas_mbo_check_pmf() 104 mbo = wpas_mbo_get_bss_attr(bss, MBO_ATTR_ID_AP_CAPA_IND); in wpas_mbo_check_pmf() 105 oce = wpas_mbo_get_bss_attr(bss, OCE_ATTR_ID_CAPA_IND); in wpas_mbo_check_pmf() 110 rsne = wpa_bss_get_ie(bss, WLAN_EID_RSN); in wpas_mbo_check_pmf() 514 struct wpa_bss_tmp_disallowed *bss; in wpas_get_disallowed_bss() local 516 dl_list_for_each(bss, &wpa_s->bss_tmp_disallowed, in wpas_get_disallowed_bss() [all …]
|
D | wnm_sta.c | 322 struct wpa_bss *bss = wpa_s->current_bss; in compare_scan_neighbor_results() local 325 if (!bss) in compare_scan_neighbor_results() 363 if (bss->ssid_len != target->ssid_len || in compare_scan_neighbor_results() 364 os_memcmp(bss->ssid, target->ssid, bss->ssid_len) != 0) { in compare_scan_neighbor_results() 387 if (target->level < bss->level && target->level < -80) { in compare_scan_neighbor_results() 437 static u32 wnm_get_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss) in wnm_get_bss_info() argument 448 if (bss->caps & WLAN_CAPABILITY_SPECTRUM_MGMT) in wnm_get_bss_info() 450 if (bss->caps & WLAN_CAPABILITY_QOS) in wnm_get_bss_info() 452 if (bss->caps & WLAN_CAPABILITY_APSD) in wnm_get_bss_info() 454 if (bss->caps & WLAN_CAPABILITY_RADIO_MEASUREMENT) in wnm_get_bss_info() [all …]
|
D | rrm.c | 414 struct wpa_bss *bss, u8 *buf, in wpas_beacon_rep_add_frame_body() argument 449 WPA_PUT_LE64(pos, bss->tsf); in wpas_beacon_rep_add_frame_body() 450 pos += sizeof(bss->tsf); in wpas_beacon_rep_add_frame_body() 451 WPA_PUT_LE16(pos, bss->beacon_int); in wpas_beacon_rep_add_frame_body() 453 WPA_PUT_LE16(pos, bss->caps); in wpas_beacon_rep_add_frame_body() 497 struct wpa_bss *bss, in wpas_add_beacon_rep_elem() argument 518 bss, buf + sizeof(*rep), in wpas_add_beacon_rep_elem() 563 struct wpabuf **wpa_buf, struct wpa_bss *bss, in wpas_add_beacon_rep() argument 567 u8 *ies = (u8 *) (bss + 1); in wpas_add_beacon_rep() 569 size_t ies_len = bss->ie_len ? bss->ie_len : bss->beacon_ie_len; in wpas_add_beacon_rep() [all …]
|
D | bss.h | 64 static inline const u8 * wpa_bss_ie_ptr(const struct wpa_bss *bss) in wpa_bss_ie_ptr() argument 66 return bss->ies; in wpa_bss_ie_ptr() 73 void wpa_bss_remove(struct wpa_supplicant *wpa_s, struct wpa_bss *bss, 83 const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie); 84 const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type); 85 int wpa_bss_ext_capab(const struct wpa_bss *bss, unsigned int capab);
|
D | wpa_supplicant_i.h | 85 struct dl_list bss; /* struct wpa_bss::list */ member 149 const u8 * wpas_mbo_get_bss_attr(struct wpa_bss *bss, enum mbo_attr_id attr); 160 struct wpa_bss *bss, u32 mbo_subtypes); 162 struct wpa_bss *bss, const u8 *sa,
|
/hal_espressif-3.4.0/components/wpa_supplicant/src/ap/ |
D | ap_config.c | 23 void hostapd_config_defaults_bss(struct hostapd_bss_config *bss) in hostapd_config_defaults_bss() argument 25 bss->auth_algs = WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED; in hostapd_config_defaults_bss() 27 bss->wep_rekeying_period = 300; in hostapd_config_defaults_bss() 29 bss->broadcast_key_idx_min = 1; in hostapd_config_defaults_bss() 30 bss->broadcast_key_idx_max = 2; in hostapd_config_defaults_bss() 32 bss->wpa_group_rekey = 600; in hostapd_config_defaults_bss() 33 bss->wpa_gmk_rekey = 86400; in hostapd_config_defaults_bss() 34 bss->wpa_key_mgmt = WPA_KEY_MGMT_PSK; in hostapd_config_defaults_bss() 35 bss->wpa_pairwise = WPA_CIPHER_TKIP; in hostapd_config_defaults_bss() 36 bss->wpa_group = WPA_CIPHER_TKIP; in hostapd_config_defaults_bss() [all …]
|
/hal_espressif-3.4.0/tools/test_idf_size/ |
D | expected_output | 35 .bss size: 8296 bytes 49 .bss size: 48 bytes 60 .bss size: 16000 bytes 74 .bss size: 8296 bytes 83 …Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_t… 128 .bss size: 8296 bytes 137 …Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_to… 425 .bss size: 8296 bytes 436 Symbols from section: .dram0.bss 482 Symbols from section: .rtc.bss [all …]
|
/hal_espressif-3.4.0/tools/ldgen/samples/ |
D | esp32.lf | 10 [sections:bss] 12 .bss+ 37 .rtc.bss 41 .ext_ram.bss+ 56 bss -> dram0_bss 70 bss -> rtc_bss
|
D | sections.info | 11 2 .bss 00000000 00000000 00000000 00000034 2**0 52 8 .bss 00000000 00000000 00000000 000000d8 2**0 70 17 .bss.xPassedTicks 00000004 00000000 00000000 00000394 2**2 72 18 .bss.xLastTickCount 00000004 00000000 00000000 00000394 2**2 74 19 .bss.xCoRoutineTickCount 00000004 00000000 00000000 00000394 2**2 76 20 .bss.uxTopCoRoutineReadyPriority 00000004 00000000 00000000 00000394 2**2 78 21 .bss.pxCurrentCoRoutine 00000004 00000000 00000000 00000394 2**2 80 22 .bss.xPendingReadyCoRoutineList 00000014 00000000 00000000 00000394 2**2 82 23 .bss.pxOverflowDelayedCoRoutineList 00000004 00000000 00000000 00000394 2**2 84 24 .bss.pxDelayedCoRoutineList 00000004 00000000 00000000 00000394 2**2 [all …]
|
D | template.ld | 28 *rtc_wake_stub*.o(.data .rodata .data.* .rodata.* .bss .bss.*) 32 /* RTC bss, from any source file named rtc_wake_stub*.c */ 33 .rtc.bss (NOLOAD) : 39 *rtc_wake_stub*.o(.bss .bss.*) 116 .dram0.bss (NOLOAD) :
|
/hal_espressif-3.4.0/tools/ldgen/test/data/ |
D | base.lf | 10 [sections:bss] 12 .bss+ 37 .rtc.bss 41 .exram.bss 56 bss -> dram0_bss 70 bss -> rtc_bss
|
D | linker_script.ld | 28 *rtc_wake_stub*.o(.data .rodata .data.* .rodata.* .bss .bss.*) 32 /* RTC bss, from any source file named rtc_wake_stub*.c */ 33 .rtc.bss (NOLOAD) : 39 *rtc_wake_stub*.o(.bss .bss.*) 116 .dram0.bss (NOLOAD) :
|
D | libfreertos.a.txt | 11 2 .bss 00000000 00000000 00000000 00000034 2**0 52 8 .bss 00000000 00000000 00000000 000000d8 2**0 70 17 .bss.xPassedTicks 00000004 00000000 00000000 00000394 2**2 72 18 .bss.xLastTickCount 00000004 00000000 00000000 00000394 2**2 74 19 .bss.xCoRoutineTickCount 00000004 00000000 00000000 00000394 2**2 76 20 .bss.uxTopCoRoutineReadyPriority 00000004 00000000 00000000 00000394 2**2 78 21 .bss.pxCurrentCoRoutine 00000004 00000000 00000000 00000394 2**2 80 22 .bss.xPendingReadyCoRoutineList 00000014 00000000 00000000 00000394 2**2 82 23 .bss.pxOverflowDelayedCoRoutineList 00000004 00000000 00000000 00000394 2**2 84 24 .bss.pxDelayedCoRoutineList 00000004 00000000 00000000 00000394 2**2 [all …]
|
/hal_espressif-3.4.0/components/wpa_supplicant/esp_supplicant/src/ |
D | esp_common.c | 197 struct wpa_bss *bss = wpa_bss_get_bssid(wpa_s, bssid); in supplicant_sta_conn_handler() local 198 if (!bss) { in supplicant_sta_conn_handler() 202 wpa_s->current_bss = bss; in supplicant_sta_conn_handler() 203 ie = (u8 *)bss; in supplicant_sta_conn_handler() 205 ieee802_11_parse_elems(wpa_s, ie, bss->ie_len); in supplicant_sta_conn_handler() 239 struct wpa_bss *bss = wpa_bss_get_bssid(&g_wpa_supp, sender); in bss_profile_match() local 240 if (!bss) { in bss_profile_match() 243 const u8 *assoc_disallow = wpas_mbo_get_bss_attr(bss, MBO_ATTR_ID_ASSOC_DISALLOW); in bss_profile_match() 250 if (wpa_is_bss_tmp_disallowed(&g_wpa_supp, bss)) { in bss_profile_match() 349 struct wpa_bss *bss, char *ssid) in wpa_supplicant_connect() argument [all …]
|
/hal_espressif-3.4.0/components/esp_system/ld/esp32/ |
D | sections.ld.in | 66 *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) 71 /* RTC bss, from any source file named rtc_wake_stub*.c */ 72 .rtc.bss (NOLOAD) : 75 *rtc_wake_stub*.*(.bss .bss.*) 226 /* external memory bss, from any global variable with EXT_RAM_ATTR attribute*/ 227 .ext_ram.bss (NOLOAD) : 238 .dram0.bss (NOLOAD) : 381 .iram0.bss (NOLOAD) : 393 /* Marks the end of data, bss and possibly rodata */
|
/hal_espressif-3.4.0/components/esp_system/ld/esp32s2/ |
D | sections.ld.in | 74 *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) 78 /* RTC bss, from any source file named rtc_wake_stub*.c */ 79 .rtc.bss (NOLOAD) : 82 *rtc_wake_stub*.*(.bss .bss.*) 236 /* external memory bss, from any global variable with EXT_RAM_ATTR attribute*/ 237 .ext_ram.bss (NOLOAD) : 248 .dram0.bss (NOLOAD) : 252 *(.ext_ram.bss*) 393 /* Marks the end of data, bss and possibly rodata */
|
/hal_espressif-3.4.0/components/ulp/ld/ |
D | esp32.ulp.ld | 27 .bss : 30 *(.bss) 39 SHORT(SIZEOF(.bss))
|
D | esp32s2.ulp.riscv.ld | 34 .bss ALIGN(4) : 36 *(.bss) 37 *(.bss*)
|
/hal_espressif-3.4.0/components/esp_common/ |
D | soc.lf | 23 .rtc.bss 35 .iram.bss+ 43 .ext_ram.bss+
|
/hal_espressif-3.4.0/components/esp_system/ld/esp32s3/ |
D | sections.ld.in | 73 *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) 77 /* RTC bss, from any source file named rtc_wake_stub*.c */ 78 .rtc.bss (NOLOAD) : 81 *rtc_wake_stub*.*(.bss .bss.*) 230 .dram0.bss (NOLOAD) : 234 *(.ext_ram.bss*) 405 .iram0.bss (NOLOAD) : 417 /* Marks the end of data, bss and possibly rodata */
|
/hal_espressif-3.4.0/components/esp_system/ld/esp32c3/ |
D | sections.ld.in | 62 *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) 66 /* RTC bss, from any source file named rtc_wake_stub*.c */ 67 .rtc.bss (NOLOAD) : 70 *rtc_wake_stub*.*(.bss .bss.*) 188 .dram0.bss (NOLOAD) : 390 .iram0.bss (NOLOAD) : 402 /* Marks the end of data, bss and possibly rodata */
|
/hal_espressif-3.4.0/components/esp_system/ld/esp32h2/ |
D | sections.ld.in | 69 *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) 73 /* RTC bss, from any source file named rtc_wake_stub*.c */ 74 .rtc.bss (NOLOAD) : 77 *rtc_wake_stub*.*(.bss .bss.*) 196 .dram0.bss (NOLOAD) : 392 .iram0.bss (NOLOAD) : 404 /* Marks the end of data, bss and possibly rodata */
|
/hal_espressif-3.4.0/components/bootloader/subproject/main/ld/esp32h2/ |
D | bootloader.ld | 3 * We put 2nd bootloader in the high address space (before ROM stack/data/bss). 68 .dram0.bss (NOLOAD) : 82 *(.bss) 83 *(.bss.*) 180 * | | data/bss |
|
/hal_espressif-3.4.0/components/bootloader/subproject/main/ld/esp32c3/ |
D | bootloader.ld | 3 * We put 2nd bootloader in the high address space (before ROM stack/data/bss). 70 .dram0.bss (NOLOAD) : 84 *(.bss) 85 *(.bss.*) 183 * | | data/bss |
|