/hal_espressif-latest/components/wpa_supplicant/src/crypto/ |
D | des-internal.c | 320 u32 work, right, leftt; in desfunc() local 326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 327 right ^= work; in desfunc() 328 leftt ^= (work << 4); in desfunc() 330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 331 right ^= work; in desfunc() 332 leftt ^= (work << 16); in desfunc() 334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc() 335 leftt ^= work; in desfunc() 336 right ^= (work << 2); in desfunc() [all …]
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/ |
D | mesh_timer.c | 64 int k_delayed_work_init(struct k_delayed_work *work, k_work_handler_t handler) in k_delayed_work_init() argument 68 if (!work || !bm_alarm_hash_map) { in k_delayed_work_init() 73 k_work_init(&work->work, handler); in k_delayed_work_init() 76 if (!hash_map_has_key(bm_alarm_hash_map, (void *)work)) { in k_delayed_work_init() 77 alarm = osi_alarm_new("bt_mesh", (osi_alarm_callback_t)handler, (void *)&work->work, 0); in k_delayed_work_init() 83 if (!hash_map_set(bm_alarm_hash_map, work, (void *)alarm)) { in k_delayed_work_init() 90 alarm = hash_map_get(bm_alarm_hash_map, work); in k_delayed_work_init() 103 int k_delayed_work_submit(struct k_delayed_work *work, int32_t delay) in k_delayed_work_submit() argument 105 if (!work || !bm_alarm_hash_map) { in k_delayed_work_submit() 111 osi_alarm_t *alarm = hash_map_get(bm_alarm_hash_map, (void *)work); in k_delayed_work_submit() [all …]
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/include/ |
D | mesh_timer.h | 50 typedef void (*k_work_handler_t)(struct k_work *work); 148 struct k_work work; member 183 int k_delayed_work_submit(struct k_delayed_work *work, int32_t delay); 185 int k_delayed_work_submit_periodic(struct k_delayed_work *work, int32_t period); 198 int32_t k_delayed_work_remaining_get(struct k_delayed_work *work); 221 static inline void k_work_submit(struct k_work *work) in k_work_submit() argument 223 if (work && work->handler) { in k_work_submit() 224 work->handler(work); in k_work_submit() 238 static inline void k_work_init(struct k_work *work, k_work_handler_t handler) in k_work_init() argument 240 work->handler = handler; in k_work_init() [all …]
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/include/ |
D | state_transition.h | 66 void generic_onoff_work_handler(struct k_work *work); 68 void generic_level_work_handler(struct k_work *work); 70 void generic_power_level_work_handler(struct k_work *work); 72 void light_lightness_actual_work_handler(struct k_work *work); 74 void light_lightness_linear_work_handler(struct k_work *work); 76 void light_ctl_work_handler(struct k_work *work); 78 void light_ctl_temp_work_handler(struct k_work *work); 80 void light_hsl_work_handler(struct k_work *work); 82 void light_hsl_hue_work_handler(struct k_work *work); 84 void light_hsl_sat_work_handler(struct k_work *work); [all …]
|
D | server_common.h | 109 void bt_mesh_server_alloc_ctx(struct k_work *work); 110 void bt_mesh_server_free_ctx(struct k_work *work);
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/ |
D | state_transition.c | 239 void generic_onoff_work_handler(struct k_work *work) in generic_onoff_work_handler() argument 242 CONTAINER_OF(work, struct bt_mesh_gen_onoff_srv, transition.timer.work); in generic_onoff_work_handler() 246 if (srv == NULL || srv->transition.timer.work._reserved == NULL) { in generic_onoff_work_handler() 253 ctx = (struct bt_mesh_msg_ctx *)srv->transition.timer.work._reserved; in generic_onoff_work_handler() 302 void generic_level_work_handler(struct k_work *work) in generic_level_work_handler() argument 305 CONTAINER_OF(work, struct bt_mesh_gen_level_srv, transition.timer.work); in generic_level_work_handler() 309 if (srv == NULL || srv->transition.timer.work._reserved == NULL) { in generic_level_work_handler() 316 ctx = (struct bt_mesh_msg_ctx *)srv->transition.timer.work._reserved; in generic_level_work_handler() 379 void generic_power_level_work_handler(struct k_work *work) in generic_power_level_work_handler() argument 382 CONTAINER_OF(work, struct bt_mesh_gen_power_level_srv, transition.timer.work); in generic_power_level_work_handler() [all …]
|
D | server_common.c | 165 void bt_mesh_server_alloc_ctx(struct k_work *work) in bt_mesh_server_alloc_ctx() argument 173 __ASSERT(work, "Invalid parameter"); in bt_mesh_server_alloc_ctx() 174 if (!work->_reserved) { in bt_mesh_server_alloc_ctx() 175 work->_reserved = bt_mesh_calloc(sizeof(struct bt_mesh_msg_ctx)); in bt_mesh_server_alloc_ctx() 176 __ASSERT(work->_reserved, "Out of memory"); in bt_mesh_server_alloc_ctx() 181 void bt_mesh_server_free_ctx(struct k_work *work) in bt_mesh_server_free_ctx() argument 183 __ASSERT(work, "Invalid parameter"); in bt_mesh_server_free_ctx() 184 if (work->_reserved) { in bt_mesh_server_free_ctx() 185 bt_mesh_free(work->_reserved); in bt_mesh_server_free_ctx() 186 work->_reserved = NULL; in bt_mesh_server_free_ctx()
|
D | lighting_server.c | 302 if (srv->actual_transition.timer.work._reserved) { in light_lightness_set() 303 memcpy(srv->actual_transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in light_lightness_set() 407 if (srv->linear_transition.timer.work._reserved) { in light_lightness_linear_set() 408 memcpy(srv->linear_transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in light_lightness_linear_set() 846 if (srv->transition.timer.work._reserved) { in light_ctl_set() 847 memcpy(srv->transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in light_ctl_set() 1090 if (srv->transition.timer.work._reserved) { in light_ctl_temp_set() 1091 memcpy(srv->transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in light_ctl_temp_set() 1454 if (srv->transition.timer.work._reserved) { in light_hsl_set() 1455 memcpy(srv->transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in light_hsl_set() [all …]
|
D | generic_server.c | 201 if (srv->transition.timer.work._reserved) { in gen_onoff_set() 202 memcpy(srv->transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in gen_onoff_set() 383 if (srv->transition.timer.work._reserved) { in gen_level_set() 384 memcpy(srv->transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in gen_level_set() 504 if (srv->transition.timer.work._reserved) { in gen_delta_set() 505 memcpy(srv->transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in gen_delta_set() 610 if (srv->transition.timer.work._reserved) { in gen_move_set() 611 memcpy(srv->transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in gen_move_set() 1152 if (srv->transition.timer.work._reserved) { in gen_power_level_set() 1153 memcpy(srv->transition.timer.work._reserved, ctx, sizeof(struct bt_mesh_msg_ctx)); in gen_power_level_set() [all …]
|
/hal_espressif-latest/components/wpa_supplicant/ |
D | README.md | 6 …library therefore MbedTLS component is also required for some features to work(see ESP_WIFI_MBEDTL… 8 …icant should be picked up a whole system(preferably with MbedTLS if we want all features to work.)
|
/hal_espressif-latest/tools/esptool_py/ |
D | LICENSE | 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 66 means either the Program or any derivative work under copyright law: 67 that is to say, a work containing the Program or a portion of it, 75 is covered only if its contents constitute a work based on the 91 of it, thus forming a work based on the Program, and copy and 92 distribute such modifications or work under the terms of Section 1 98 b) You must cause any work that you distribute or publish, that in 111 does not normally print such an announcement, your work based on 114 These requirements apply to the modified work as a whole. If [all …]
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/ |
D | health_cli.c | 58 static void timeout_handler(struct k_work *work) in timeout_handler() argument 69 timer = CONTAINER_OF(work, struct k_delayed_work, work); in timeout_handler() 72 node = CONTAINER_OF(work, bt_mesh_client_node_t, timer.work); in timeout_handler()
|
D | beacon.c | 307 static void beacon_send(struct k_work *work) in beacon_send() argument 484 k_work_submit(&beacon_timer.work); in bt_mesh_beacon_ivu_initiator() 497 k_work_submit(&beacon_timer.work); in bt_mesh_beacon_enable() 516 k_work_submit(&beacon_timer.work); in bt_mesh_beacon_enable()
|
D | health_srv.c | 414 static void attention_off(struct k_work *work) in attention_off() argument 416 struct bt_mesh_health_srv *srv = CONTAINER_OF(work, in attention_off() 418 attn_timer.work); in attention_off()
|
/hal_espressif-latest/zephyr/blobs/ |
D | license.txt | 36 "Work" shall mean the work of authorship, whether in Source or 38 copyright notice that is included in or attached to the work 41 "Derivative Works" shall mean any work, whether in Source or Object 44 represent, as a whole, an original work of authorship. For the purposes 49 "Contribution" shall mean any work of authorship, including 162 work stoppage, computer failure or malfunction, or any and all 179 APPENDIX: How to apply the Apache License to your work. 181 To apply the Apache License to your work, attach the following
|
/hal_espressif-latest/ |
D | LICENSE | 36 "Work" shall mean the work of authorship, whether in Source or 38 copyright notice that is included in or attached to the work 41 "Derivative Works" shall mean any work, whether in Source or Object 44 represent, as a whole, an original work of authorship. For the purposes 49 "Contribution" shall mean any work of authorship, including 162 work stoppage, computer failure or malfunction, or any and all 179 APPENDIX: How to apply the Apache License to your work. 181 To apply the Apache License to your work, attach the following
|
D | README.md | 6 …://github.com/espressif/esp-hal-3rdparty). If a SoC is not yet supported, work starts in `esp-hal-…
|
/hal_espressif-latest/tools/esptool_py/esptool/targets/stub_flasher/2/ |
D | LICENSE-APACHE | 35 "Work" shall mean the work of authorship, whether in Source or 37 copyright notice that is included in or attached to the work 40 "Derivative Works" shall mean any work, whether in Source or Object 43 represent, as a whole, an original work of authorship. For the purposes 48 "Contribution" shall mean any work of authorship, including 161 work stoppage, computer failure or malfunction, or any and all 178 APPENDIX: How to apply the Apache License to your work. 180 To apply the Apache License to your work, attach the following
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/ |
D | time_scene_client.c | 87 static void timeout_handler(struct k_work *work) in timeout_handler() argument 98 timer = CONTAINER_OF(work, struct k_delayed_work, work); in timeout_handler() 101 node = CONTAINER_OF(work, bt_mesh_client_node_t, timer.work); in timeout_handler()
|
D | sensor_client.c | 71 static void timeout_handler(struct k_work *work) in timeout_handler() argument 82 timer = CONTAINER_OF(work, struct k_delayed_work, work); in timeout_handler() 85 node = CONTAINER_OF(work, bt_mesh_client_node_t, timer.work); in timeout_handler()
|
/hal_espressif-latest/tools/esptool_py/docs/en/ |
D | installation.rst | 21 With some Python installations this may not work and you’ll receive an error, try ``python -m pip i… 25 …n -m esptool``. Please note that probably only ``python -m esptool`` will work for Pythons install… 29 …If you actually plan to do development work with esptool itself, see :ref:`development-setup` for …
|
/hal_espressif-latest/components/esp_system/port/soc/esp32c2/ |
D | Kconfig.system | 20 …#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages
|
/hal_espressif-latest/components/esp_system/port/soc/esp32c3/ |
D | Kconfig.system | 20 …#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages
|
/hal_espressif-latest/components/esp_system/port/soc/esp32c6/ |
D | Kconfig.system | 20 …#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages
|
/hal_espressif-latest/components/esp_system/port/soc/esp32h2/ |
D | Kconfig.system | 20 …#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages
|