/hal_espressif-latest/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-latest/components/bt/esp_ble_mesh/mesh_common/include/ |
D | mesh_timer.h | 84 #define K_MSEC(ms) (ms) argument
|
/hal_espressif-latest/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 *); 320 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 322 return npl_funcs->p_ble_npl_time_ms_to_ticks(ms, out_ticks); in ble_npl_time_ms_to_ticks() 332 IRAM_ATTR ble_npl_time_ms_to_ticks32(uint32_t ms) in ble_npl_time_ms_to_ticks32() argument 334 return npl_funcs->p_ble_npl_time_ms_to_ticks32(ms); in ble_npl_time_ms_to_ticks32()
|
D | nimble_npl.h | 134 ble_npl_error_t ble_npl_time_ms_to_ticks(uint32_t ms, ble_npl_time_t *out_ticks); 138 ble_npl_time_t ble_npl_time_ms_to_ticks32(uint32_t ms);
|
D | npl_freertos.h | 110 ble_npl_error_t npl_freertos_time_ms_to_ticks(uint32_t ms,
|
/hal_espressif-latest/components/bt/porting/npl/freertos/src/ |
D | npl_os_freertos.c | 938 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 942 ticks = (uint64_t)ms; in npl_freertos_time_ms_to_ticks() 944 ticks = ((uint64_t)ms * configTICK_RATE_HZ) / 1000; in npl_freertos_time_ms_to_ticks() 958 uint64_t ms; in npl_freertos_time_ticks_to_ms() local 960 ms = ((uint64_t)ticks); in npl_freertos_time_ticks_to_ms() 962 ms = ((uint64_t)ticks * 1000) / configTICK_RATE_HZ; in npl_freertos_time_ticks_to_ms() 964 if (ms > UINT32_MAX) { in npl_freertos_time_ticks_to_ms() 968 *out_ms = ms; in npl_freertos_time_ticks_to_ms() 974 IRAM_ATTR npl_freertos_time_ms_to_ticks32(uint32_t ms) in npl_freertos_time_ms_to_ticks32() argument 977 return ms; in npl_freertos_time_ms_to_ticks32() [all …]
|
/hal_espressif-latest/components/wpa_supplicant/port/ |
D | eloop.c | 342 uint32_t ms; in eloop_run() local 344 ms = tv.sec * 1000 + tv.usec / 1000; in eloop_run() 347 os_timer_arm(&eloop.eloop_timer, ms, 0); in eloop_run()
|
/hal_espressif-latest/components/soc/esp32c3/include/soc/ |
D | twai_struct.h | 55 uint32_t ms: 1; /* SR.8 Miss Status */ member
|
/hal_espressif-latest/components/soc/esp32s3/include/soc/ |
D | twai_struct.h | 56 uint32_t ms: 1; /* SR.8 Miss Status */ member
|
/hal_espressif-latest/components/soc/esp32s2/include/soc/ |
D | twai_struct.h | 55 uint32_t ms: 1; /* SR.8 Miss Status */ member
|
/hal_espressif-latest/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-latest/components/esp_wifi/esp32s2/ |
D | esp_adapter.c | 333 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 335 return (int32_t)(ms / portTICK_PERIOD_MS); in task_ms_to_tick_wrapper()
|
/hal_espressif-latest/components/esp_wifi/esp32/ |
D | esp_adapter.c | 342 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 344 return (int32_t)(ms / portTICK_PERIOD_MS); in task_ms_to_tick_wrapper()
|
/hal_espressif-latest/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-latest/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-latest/components/esp_wifi/esp32s3/ |
D | esp_adapter.c | 336 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 338 return (int32_t)(ms / portTICK_PERIOD_MS); in task_ms_to_tick_wrapper()
|
/hal_espressif-latest/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-latest/components/esp_wifi/include/esp_private/ |
D | wifi_os_adapter.h | 70 int32_t (* _task_ms_to_tick)(uint32_t ms);
|
/hal_espressif-latest/zephyr/esp32/src/wifi/ |
D | esp_wifi_adapter.c | 310 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 312 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|
/hal_espressif-latest/zephyr/esp32s2/src/wifi/ |
D | esp_wifi_adapter.c | 311 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 313 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|
/hal_espressif-latest/zephyr/esp32s3/src/wifi/ |
D | esp_wifi_adapter.c | 335 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 337 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|
/hal_espressif-latest/zephyr/esp32c2/src/wifi/ |
D | esp_wifi_adapter.c | 326 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 328 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|
/hal_espressif-latest/zephyr/esp32c3/src/wifi/ |
D | esp_wifi_adapter.c | 326 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 328 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|
/hal_espressif-latest/zephyr/esp32c6/src/wifi/ |
D | esp_wifi_adapter.c | 330 static int32_t IRAM_ATTR task_ms_to_tick_wrapper(uint32_t ms) in task_ms_to_tick_wrapper() argument 332 return (int32_t)(k_ms_to_ticks_ceil32(ms)); in task_ms_to_tick_wrapper()
|