/hal_espressif-3.7.0/components/wpa_supplicant/src/eap_peer/ |
D | eap_mschapv2.c | 135 struct eap_mschapv2_hdr *ms; in eap_mschapv2_challenge_reply() local 150 ms_len = sizeof(*ms) + 1 + sizeof(*r) + identity_len; in eap_mschapv2_challenge_reply() 156 ms = wpabuf_put(resp, sizeof(*ms)); in eap_mschapv2_challenge_reply() 157 ms->op_code = MSCHAPV2_OP_RESPONSE; in eap_mschapv2_challenge_reply() 158 ms->mschapv2_id = mschapv2_id; in eap_mschapv2_challenge_reply() 166 ms->mschapv2_id++; in eap_mschapv2_challenge_reply() 168 WPA_PUT_BE16(ms->ms_length, ms_len); in eap_mschapv2_challenge_reply() 205 "(response)", id, ms->mschapv2_id); in eap_mschapv2_challenge_reply() 479 struct eap_mschapv2_hdr *ms; in eap_mschapv2_change_password() local 497 ms_len = sizeof(*ms) + sizeof(*cp); in eap_mschapv2_change_password() [all …]
|
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_common/include/ |
D | mesh_timer.h | 84 #define K_MSEC(ms) (ms) argument
|
/hal_espressif-3.7.0/components/bt/porting/npl/freertos/include/nimble/ |
D | nimble_npl_os.h | 115 ble_npl_error_t (*p_ble_npl_time_ms_to_ticks)(uint32_t ms, ble_npl_time_t *); 319 IRAM_ATTR ble_npl_time_ms_to_ticks(uint32_t ms, ble_npl_time_t *out_ticks) in ble_npl_time_ms_to_ticks() argument 321 return npl_funcs->p_ble_npl_time_ms_to_ticks(ms, out_ticks); in ble_npl_time_ms_to_ticks() 331 IRAM_ATTR ble_npl_time_ms_to_ticks32(uint32_t ms) in ble_npl_time_ms_to_ticks32() argument 333 return npl_funcs->p_ble_npl_time_ms_to_ticks32(ms); in ble_npl_time_ms_to_ticks32()
|
D | npl_freertos.h | 110 ble_npl_error_t npl_freertos_time_ms_to_ticks(uint32_t ms,
|
/hal_espressif-3.7.0/components/bt/porting/npl/freertos/src/ |
D | npl_os_freertos.c | 880 IRAM_ATTR npl_freertos_time_ms_to_ticks(uint32_t ms, ble_npl_time_t *out_ticks) in npl_freertos_time_ms_to_ticks() argument 884 ticks = (uint64_t)ms; in npl_freertos_time_ms_to_ticks() 886 ticks = ((uint64_t)ms * configTICK_RATE_HZ) / 1000; in npl_freertos_time_ms_to_ticks() 900 uint64_t ms; in npl_freertos_time_ticks_to_ms() local 902 ms = ((uint64_t)ticks); in npl_freertos_time_ticks_to_ms() 904 ms = ((uint64_t)ticks * 1000) / configTICK_RATE_HZ; in npl_freertos_time_ticks_to_ms() 906 if (ms > UINT32_MAX) { in npl_freertos_time_ticks_to_ms() 910 *out_ms = ms; in npl_freertos_time_ticks_to_ms() 916 IRAM_ATTR npl_freertos_time_ms_to_ticks32(uint32_t ms) in npl_freertos_time_ms_to_ticks32() argument 919 return ms; in npl_freertos_time_ms_to_ticks32() [all …]
|
/hal_espressif-3.7.0/components/bt/porting/nimble/include/nimble/ |
D | nimble_npl.h | 147 ble_npl_error_t ble_npl_time_ms_to_ticks(uint32_t ms, ble_npl_time_t *out_ticks); 151 ble_npl_time_t ble_npl_time_ms_to_ticks32(uint32_t ms);
|
/hal_espressif-3.7.0/components/wpa_supplicant/port/ |
D | eloop.c | 338 uint32_t ms; in eloop_run() local 340 ms = tv.sec * 1000 + tv.usec / 1000; in eloop_run() 343 os_timer_arm(&eloop.eloop_timer, ms, 0); in eloop_run()
|
/hal_espressif-3.7.0/components/soc/esp32c3/include/soc/ |
D | twai_struct.h | 55 uint32_t ms: 1; /* SR.8 Miss Status */ member
|
/hal_espressif-3.7.0/components/soc/esp32s3/include/soc/ |
D | twai_struct.h | 56 uint32_t ms: 1; /* SR.8 Miss Status */ member
|
/hal_espressif-3.7.0/components/soc/esp32s2/include/soc/ |
D | twai_struct.h | 55 uint32_t ms: 1; /* SR.8 Miss Status */ member
|
/hal_espressif-3.7.0/components/esp_wifi/esp32/ |
D | esp_adapter.c | 312 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 314 return (int32_t)(ms / portTICK_PERIOD_MS); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32c2/ |
D | esp_adapter.c | 255 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 257 return (int32_t)(ms / portTICK_PERIOD_MS); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32s2/ |
D | esp_adapter.c | 303 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 305 return (int32_t)(ms / portTICK_PERIOD_MS); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32c6/ |
D | esp_adapter.c | 261 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 263 return (int32_t)(ms / portTICK_PERIOD_MS); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32c3/ |
D | esp_adapter.c | 258 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 260 return (int32_t)(ms / portTICK_PERIOD_MS); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32s3/ |
D | esp_adapter.c | 306 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 308 return (int32_t)(ms / portTICK_PERIOD_MS); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/tools/esptool_py/docs/en/espefuse/inc/ |
D | summary_ESP32-C2.rst | 21 … nit of ms. If the value is less than 15; the waiti
|
D | summary_ESP32-S2.rst | 53 … in unit of (ms/2). When the value is 15; delay is 54 7.5 ms
|
/hal_espressif-3.7.0/components/esp_wifi/include/esp_private/ |
D | wifi_os_adapter.h | 66 int32_t (* _task_ms_to_tick)(uint32_t ms);
|
/hal_espressif-3.7.0/zephyr/esp32/src/wifi/ |
D | esp_wifi_adapter.c | 403 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 405 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/zephyr/esp32s2/src/wifi/ |
D | esp_wifi_adapter.c | 399 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 401 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/zephyr/esp32s3/src/wifi/ |
D | esp_wifi_adapter.c | 420 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 422 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/zephyr/esp32c3/src/wifi/ |
D | esp_wifi_adapter.c | 414 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 416 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|
/hal_espressif-3.7.0/components/efuse/esp32s2/ |
D | esp_efuse_table.csv | 147 …es flash startup delay after SoC power-up; in unit of (ms/2). When the value is 15; delay is 7.5 ms
|
/hal_espressif-3.7.0/components/efuse/esp32c2/ |
D | esp_efuse_table.csv | 73 …LK0, 49, 4, [] Configures flash waiting time after power-up; in unit of ms. If the value is les…
|