Home
last modified time | relevance | path

Searched refs:event_t (Results 1 – 25 of 28) sorted by relevance

12

/lk-master/kernel/include/kernel/
A Devent.h24 } event_t; typedef
52 void event_init(event_t *, bool initial, uint flags);
53 void event_destroy(event_t *);
54 status_t event_wait_timeout(event_t *, lk_time_t); /* wait on the event with a timeout */
55 status_t event_signal(event_t *, bool reschedule);
56 status_t event_unsignal(event_t *);
58 static inline bool event_initialized(event_t *e) { in event_initialized()
62 static inline status_t event_wait(event_t *e) { in event_wait()
/lk-master/kernel/
A Devent.c41 void event_init(event_t *e, bool initial, uint flags) { in event_init()
42 *e = (event_t)EVENT_INITIAL_VALUE(*e, initial, flags); in event_init()
54 void event_destroy(event_t *e) { in event_destroy()
82 status_t event_wait_timeout(event_t *e, lk_time_t timeout) { in event_wait_timeout()
122 status_t event_signal(event_t *e, bool reschedule) { in event_signal()
162 status_t event_unsignal(event_t *e) { in event_unsignal()
/lk-master/dev/usb/class/cdcserial/include/dev/usb/class/
A Dcdcserial.h21 event_t txevt;
22 event_t rxevt;
/lk-master/platform/nrf52xxx/
A Dclock.c18 event_t hf_clk_evt = EVENT_INITIAL_VALUE(hf_clk_evt, false, 0);
19 event_t lf_clk_evt = EVENT_INITIAL_VALUE(lf_clk_evt, false, 0);
A Di2c_master.c37 event_t evt;
/lk-master/platform/stm32f0xx/
A Ddma.c22 event_t dma_events[DMA_CHANNELS];
34 static event_t *dma_event(dma_channel_t chan) { in dma_event()
A Di2c.c58 event_t txn_complete;
/lk-master/app/mdebug/
A Dmdebug.c36 static event_t txevt = EVENT_INITIAL_VALUE(txevt, TX_AHEAD, 0);
37 static event_t rxevt = EVENT_INITIAL_VALUE(rxevt, 0, 0);
/lk-master/platform/cc13xx/
A Dradio.c29 static event_t ack_evt = EVENT_INITIAL_VALUE(ack_evt, 0, EVENT_FLAG_AUTOUNSIGNAL);
31 static event_t cpe0_evt = EVENT_INITIAL_VALUE(cpe0_evt, 0, EVENT_FLAG_AUTOUNSIGNAL);
/lk-master/lib/dpc/
A Ddpc.c26 static event_t dpc_event;
/lk-master/lib/cbuf/include/lib/
A Dcbuf.h23 event_t event;
/lk-master/app/lpcboot/
A Dlpcboot.c34 static event_t txevt = EVENT_INITIAL_VALUE(txevt, 0, 0);
35 static event_t rxevt = EVENT_INITIAL_VALUE(rxevt, 0, 0);
/lk-master/app/tests/
A Dthread_tests.c220 static event_t e;
258 static event_t ievent = EVENT_INITIAL_VALUE(ievent, true, 0x1234); in event_test()
316 static event_t context_switch_event;
317 static event_t context_switch_done_event;
/lk-master/app/moot/
A Dusbboot.c112 static event_t txevt = EVENT_INITIAL_VALUE(txevt, 0, EVENT_FLAG_AUTOUNSIGNAL);
113 static event_t rxevt = EVENT_INITIAL_VALUE(rxevt, 0, EVENT_FLAG_AUTOUNSIGNAL);
/lk-master/app/usbtest/
A Dusbtest.c27 static event_t testevent;
/lk-master/lib/minip/
A Dnet_timer.c26 static event_t net_timer_event = EVENT_INITIAL_VALUE(net_timer_event, false, 0);
/lk-master/external/lib/lwip/
A Dnetif.c21 static event_t netif_up_event = EVENT_INITIAL_VALUE(netif_up_event, false, 0);
/lk-master/platform/stm32f7xx/
A Dqspi.c78 static event_t cmd_event;
79 static event_t rx_event;
80 static event_t tx_event;
81 static event_t st_event;
A Deth.c71 event_t rx_event;
/lk-master/dev/keys/
A Dgpio_keypad.c45 event_t full_scan;
/lk-master/platform/zynq/
A Dgem.c94 event_t rx_pending;
95 event_t tx_complete;
/lk-master/dev/net/pcnet/
A Dpcnet.c65 event_t event;
66 event_t initialized;
/lk-master/dev/virtio/gpu/
A Dvirtio-gpu.c39 event_t io_event;
54 event_t flush_event;
/lk-master/dev/virtio/block/
A Dvirtio-block.c75 event_t io_event;
/lk-master/dev/virtio/net/
A Dvirtio-net.c84 event_t rx_event;

Completed in 26 milliseconds

12