/AliOS-Things-master/components/ble_netconfig/ |
A D | blecfg_main.c | 199 aos_event_set(&g_blecfg_event, LINK_EVT_WIFI_AVAIL, AOS_EVENT_OR); in BleCfg_cmd_parse() 234 aos_event_set(&g_blecfg_event, LINK_EVT_LINKSDK_AVAIL, AOS_EVENT_OR); in BleCfg_cmd_parse() 335 aos_event_set(&g_blecfg_event, LINK_EVT_WIFI_CONNECTED, AOS_EVENT_OR); in BleCfg_dhcp_success() 348 aos_event_set(&g_blecfg_event, LINK_EVT_LINKSDK_CONNECTED, AOS_EVENT_OR); in BleCfg_link_success() 410 aos_event_set(&g_blecfg_event, LINK_EVT_WIFI_AVAIL, AOS_EVENT_OR); in BleCfg_recovery_wifi() 424 aos_event_set(&g_blecfg_event, LINK_EVT_LINKSDK_AVAIL, AOS_EVENT_OR); in BleCfg_recovery_devinfo()
|
/AliOS-Things-master/components/drivers/peripheral/uart/src/ |
A D | tty.c | 82 aos_event_set(&tty->event, ~EVENT_RX_COUNT_MASK, AOS_EVENT_AND); in set_attr_nonblock() 207 aos_event_set(&tty->event, new_event, AOS_EVENT_OR); in rx_buffer_consume() 479 aos_event_set(&tty->event, new_event, AOS_EVENT_OR); in tx_buffer_produce() 483 aos_event_set(&tty->event, ~EVENT_TX_EMPTY, AOS_EVENT_AND); in tx_buffer_produce() 603 aos_event_set(&tty->event, event_mask, AOS_EVENT_OR); in dev_tty_get() 624 aos_event_set(&tty->event, 0, AOS_EVENT_AND); in dev_tty_put() 708 aos_event_set(&tty->event, ~EVENT_RX_COUNT_MASK, AOS_EVENT_AND); in aos_tty_rx_buffer_produce() 709 aos_event_set(&tty->event, new_event, AOS_EVENT_OR); in aos_tty_rx_buffer_produce() 735 aos_event_set(&tty->event, ~EVENT_TX_SPACE_MASK, AOS_EVENT_AND); in aos_tty_tx_buffer_consume() 736 aos_event_set(&tty->event, new_event, AOS_EVENT_OR); in aos_tty_tx_buffer_consume() [all …]
|
A D | tty_csi.c | 209 aos_event_set(&tty_csi->event, ~EVENT_TX, AOS_EVENT_AND); in tx_task_func() 285 aos_event_set(&tty_csi->event, ~EVENT_TX, AOS_EVENT_AND); in tty_csi_shutdown() 337 aos_event_set(&tty_csi->event, EVENT_TX, AOS_EVENT_OR); in tty_csi_start_tx() 345 aos_event_set(&tty_csi->event, ~EVENT_TX, AOS_EVENT_AND); in tty_csi_stop_tx()
|
/AliOS-Things-master/components/osal_aos/example/ |
A D | event_example.c | 159 aos_event_set(&event_handle, USER_EVENT_1, AOS_EVENT_OR); in aos_event_example() 164 aos_event_set(&event_handle, USER_EVENT_2, AOS_EVENT_OR); in aos_event_example()
|
/AliOS-Things-master/components/drivers/peripheral/i2c/src/ |
A D | i2c.c | 93 aos_event_set(&i2c->event, 0, AOS_EVENT_AND); in transfer_sequence() 97 aos_event_set(&i2c->event, 0, AOS_EVENT_AND); in transfer_sequence() 280 aos_event_set(&i2c->event, EVENT_XFER_COMPLETE, AOS_EVENT_OR); in aos_i2c_hard_pull() 289 aos_event_set(&i2c->event, EVENT_XFER_ERROR, AOS_EVENT_OR); in aos_i2c_hard_fail()
|
/AliOS-Things-master/components/drivers/peripheral/spi/src/ |
A D | spi.c | 100 aos_event_set(&spi->event, 0, AOS_EVENT_AND); in transfer_sequence() 104 aos_event_set(&spi->event, 0, AOS_EVENT_AND); in transfer_sequence() 349 aos_event_set(&spi->event, EVENT_XFER_COMPLETE, AOS_EVENT_OR); in aos_spi_hard_pull() 358 aos_event_set(&spi->event, EVENT_XFER_ERROR, AOS_EVENT_OR); in aos_spi_hard_fail()
|
/AliOS-Things-master/hardware/chip/rtl872xd/hal/ |
A D | uart.c | 86 aos_event_set(&uart0_event, EVENT_RX_READY, AOS_EVENT_OR); in uart0_rx_buffer_produce() 106 aos_event_set(&uart0_event, ~EVENT_RX_READY, AOS_EVENT_AND); in uart0_rx_buffer_consume() 442 aos_event_set(&uart0_event, EVENT_RX_READY, AOS_EVENT_OR); in hal_uart_rx_sem_give()
|
/AliOS-Things-master/components/osal_aos/rhino/ |
A D | aos_event.c | 72 aos_status_t aos_event_set(aos_event_t *event, uint32_t flags, uint32_t opt) in aos_event_set() function
|
/AliOS-Things-master/components/drivers/peripheral/gpio/include/aos/ |
A D | gpioc_core.h | 80 aos_event_set(&_gpioc->pins[pin].irq_event, mask, AOS_EVENT_OR); \
|
/AliOS-Things-master/components/epoll/src/ |
A D | device.c | 56 aos_event_set(&pdev->event, EVENT_FLAG, AOS_EVENT_OR_CLEAR); in lwip_epoll_notify() 88 aos_event_set(&pdev->event, EVENT_FLAG, AOS_EVENT_OR_CLEAR); in vfs_epoll_notify()
|
/AliOS-Things-master/components/osal_aos/include/aos/ |
A D | kernel.h | 597 aos_status_t aos_event_set(aos_event_t *event, uint32_t value, uint32_t opt);
|
/AliOS-Things-master/hardware/chip/rtl872xd/csi_driver/uart/ |
A D | uart.c | 146 (void)aos_event_set(&priv->event, EVENT_RX_READY, AOS_EVENT_OR); in uart_irqhandler() 371 (void)aos_event_set(&priv->event, ~EVENT_RX_READY, AOS_EVENT_AND); in csi_uart_receive()
|
/AliOS-Things-master/components/drivers/peripheral/gpio/src/ |
A D | gpioc.c | 181 (void)aos_event_set(&gpioc->pins[pin].irq_event, 0, AOS_EVENT_AND); in aos_gpioc_set_mode_irq()
|
/AliOS-Things-master/components/osal_aos/ |
A D | README.md | 934 | aos_event_set() | 设置事件函数 |
|