Searched refs:k_delayed_work (Results 1 – 25 of 28) sorted by relevance
12
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/include/ |
D | mesh_timer.h | 147 struct k_delayed_work { struct 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); 243 int k_delayed_work_cancel(struct k_delayed_work *work); 245 int k_delayed_work_free(struct k_delayed_work *work); 247 int k_delayed_work_init(struct k_delayed_work *work, k_work_handler_t handler);
|
/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() 103 int k_delayed_work_submit(struct k_delayed_work *work, int32_t delay) in k_delayed_work_submit() 125 int k_delayed_work_submit_periodic(struct k_delayed_work *work, int32_t period) in k_delayed_work_submit_periodic() 147 int k_delayed_work_cancel(struct k_delayed_work *work) in k_delayed_work_cancel() 168 int k_delayed_work_free(struct k_delayed_work *work) in k_delayed_work_free() 189 int32_t k_delayed_work_remaining_get(struct k_delayed_work *work) in k_delayed_work_remaining_get()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/ |
D | net.h | 110 struct k_delayed_work timer; 132 struct k_delayed_work timer; /* Repeat timer */ 194 struct k_delayed_work timer; 255 struct k_delayed_work ivu_timer;
|
D | health_cli.c | 60 struct k_delayed_work *timer = NULL; in timeout_handler() 69 timer = CONTAINER_OF(work, struct k_delayed_work, work); in timeout_handler()
|
D | beacon.c | 49 static struct k_delayed_work beacon_timer;
|
D | cfg_cli.c | 102 struct k_delayed_work *timer = NULL; in timeout_handler() 111 timer = CONTAINER_OF(work, struct k_delayed_work, work); in timeout_handler()
|
D | prov.c | 156 struct k_delayed_work retransmit; 160 struct k_delayed_work prot_timer;
|
D | proxy_client.c | 49 struct k_delayed_work sar_timer;
|
D | transport.c | 85 struct k_delayed_work retransmit; /* Retransmit timer */ 101 struct k_delayed_work ack;
|
D | adv.c | 99 struct k_delayed_work resend;
|
D | proxy_server.c | 96 struct k_delayed_work sar_timer;
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/include/ |
D | health_srv.h | 68 struct k_delayed_work attn_timer;
|
D | cfg_srv.h | 40 struct k_delayed_work timer;
|
D | mesh_access.h | 401 struct k_delayed_work timer;
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/include/ |
D | client_common.h | 65 struct k_delayed_work timer; /* Time used to get response. Only for internal use. */
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/include/ |
D | server_common.h | 65 struct k_delayed_work timer;
|
D | lighting_server.h | 246 struct k_delayed_work timer;
|
/hal_espressif-latest/components/bt/esp_ble_mesh/api/models/include/ |
D | esp_ble_mesh_health_model_api.h | 156 struct k_delayed_work attention_timer;
|
D | esp_ble_mesh_config_model_api.h | 58 struct k_delayed_work timer; /*!< Heartbeat Publication timer */
|
D | esp_ble_mesh_lighting_model_api.h | 1206 struct k_delayed_work timer; /*!< Timer of Light LC state machine */
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/ |
D | time_scene_client.c | 89 struct k_delayed_work *timer = NULL; in timeout_handler() 98 timer = CONTAINER_OF(work, struct k_delayed_work, work); in timeout_handler()
|
D | sensor_client.c | 73 struct k_delayed_work *timer = NULL; in timeout_handler() 82 timer = CONTAINER_OF(work, struct k_delayed_work, work); in timeout_handler()
|
D | generic_client.c | 135 struct k_delayed_work *timer = NULL; in timeout_handler() 144 timer = CONTAINER_OF(work, struct k_delayed_work, work); in timeout_handler()
|
D | lighting_client.c | 144 struct k_delayed_work *timer = NULL; in timeout_handler() 153 timer = CONTAINER_OF(work, struct k_delayed_work, work); in timeout_handler()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/api/ |
D | esp_ble_mesh_defs.h | 408 struct k_delayed_work timer; 2095 struct k_delayed_work timer; /*!< Timer used for state transition */
|
12