Home
last modified time | relevance | path

Searched refs:osdp_event (Results 1 – 5 of 5) sorted by relevance

/Zephyr-Core-3.5.0/include/zephyr/mgmt/
Dosdp.h271 struct osdp_event { struct
310 typedef int (*cp_event_callback_t)(void *arg, int pd, struct osdp_event *ev);
332 int osdp_pd_notify_event(const struct osdp_event *event);
/Zephyr-Core-3.5.0/subsys/mgmt/osdp/src/
Dosdp_pd.c117 static struct osdp_event *pd_event_alloc(struct osdp_pd *pd) in pd_event_alloc()
119 struct osdp_event *event = NULL; in pd_event_alloc()
128 static void pd_event_free(struct osdp_pd *pd, struct osdp_event *event) in pd_event_free()
133 static void pd_event_enqueue(struct osdp_pd *pd, struct osdp_event *event) in pd_event_enqueue()
138 static int pd_event_dequeue(struct osdp_pd *pd, struct osdp_event **event) in pd_event_dequeue()
147 *event = CONTAINER_OF(node, struct osdp_event, node); in pd_event_dequeue()
151 static int pd_translate_event(struct osdp_pd *pd, struct osdp_event *event) in pd_translate_event()
178 memcpy(pd->ephemeral_data, event, sizeof(struct osdp_event)); in pd_translate_event()
263 struct osdp_event *event; in pd_decode_command()
575 struct osdp_event *event; in pd_build_reply()
[all …]
Dosdp_common.h350 struct osdp_event event;
Dosdp_cp.c315 struct osdp_event event; in cp_decode_response()
/Zephyr-Core-3.5.0/samples/subsys/mgmt/osdp/control_panel/src/
Dmain.c52 int event_handler(void *unused, int pd, struct osdp_event *e) in event_handler()