Searched refs:ble_npl_callout (Results 1 – 4 of 4) sorted by relevance
/hal_espressif-latest/components/bt/porting/npl/freertos/include/nimble/ |
D | nimble_npl_os.h | 60 struct ble_npl_callout { struct 105 …int (*p_ble_npl_callout_init)(struct ble_npl_callout *, struct ble_npl_eventq *, ble_npl_event_fn … 106 ble_npl_error_t (*p_ble_npl_callout_reset)(struct ble_npl_callout *, ble_npl_time_t); 107 void (*p_ble_npl_callout_stop)(struct ble_npl_callout *); 108 void (*p_ble_npl_callout_deinit)(struct ble_npl_callout *); 109 void (*p_ble_npl_callout_mem_reset)(struct ble_npl_callout *); 110 bool (*p_ble_npl_callout_is_active)(struct ble_npl_callout *); 111 ble_npl_time_t (*p_ble_npl_callout_get_ticks)(struct ble_npl_callout *); 112 uint32_t (*p_ble_npl_callout_remaining_ticks)(struct ble_npl_callout *, ble_npl_time_t); 113 void (*p_ble_npl_callout_set_arg)(struct ble_npl_callout *, void *); [all …]
|
D | npl_freertos.h | 92 int npl_freertos_callout_init(struct ble_npl_callout *co, 96 void npl_freertos_callout_deinit(struct ble_npl_callout *co); 98 void npl_freertos_callout_stop(struct ble_npl_callout *co); 100 bool npl_freertos_callout_is_active(struct ble_npl_callout *co); 102 ble_npl_time_t npl_freertos_callout_get_ticks(struct ble_npl_callout *co); 104 ble_npl_error_t npl_freertos_callout_reset(struct ble_npl_callout *co, 107 ble_npl_time_t npl_freertos_callout_remaining_ticks(struct ble_npl_callout *co,
|
D | nimble_npl.h | 111 int ble_npl_callout_init(struct ble_npl_callout *co, struct ble_npl_eventq *evq, 114 ble_npl_error_t ble_npl_callout_reset(struct ble_npl_callout *co, 117 void ble_npl_callout_stop(struct ble_npl_callout *co); 119 bool ble_npl_callout_is_active(struct ble_npl_callout *co); 121 ble_npl_time_t ble_npl_callout_get_ticks(struct ble_npl_callout *co); 123 ble_npl_time_t ble_npl_callout_remaining_ticks(struct ble_npl_callout *co, 126 void ble_npl_callout_set_arg(struct ble_npl_callout *co,
|
/hal_espressif-latest/components/bt/porting/npl/freertos/src/ |
D | npl_os_freertos.c | 177 IRAM_ATTR npl_freertos_callout_mem_reset(struct ble_npl_callout *co) in npl_freertos_callout_mem_reset() 640 npl_freertos_callout_init(struct ble_npl_callout *co, struct ble_npl_eventq *evq, in npl_freertos_callout_init() 734 npl_freertos_callout_deinit(struct ble_npl_callout *co) in npl_freertos_callout_deinit() 768 memset(co, 0, sizeof(struct ble_npl_callout)); in npl_freertos_callout_deinit() 780 IRAM_ATTR npl_freertos_callout_reset(struct ble_npl_callout *co, ble_npl_time_t ticks) in npl_freertos_callout_reset() 813 IRAM_ATTR npl_freertos_callout_stop(struct ble_npl_callout *co) in npl_freertos_callout_stop() 829 IRAM_ATTR npl_freertos_callout_is_active(struct ble_npl_callout *co) in npl_freertos_callout_is_active() 840 IRAM_ATTR npl_freertos_callout_get_ticks(struct ble_npl_callout *co) in npl_freertos_callout_get_ticks() 879 IRAM_ATTR npl_freertos_callout_remaining_ticks(struct ble_npl_callout *co, in npl_freertos_callout_remaining_ticks() 920 IRAM_ATTR npl_freertos_callout_set_arg(struct ble_npl_callout *co, void *arg) in npl_freertos_callout_set_arg()
|