Home
last modified time | relevance | path

Searched refs:pollEvent (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/communication/wifi/wifi/base/cRPC/src/
H A Devloop.c120 struct epoll_event pollEvent = {0}; in AddFdEvent() local
122 pollEvent.events |= EPOLLIN; in AddFdEvent()
125 pollEvent.events |= EPOLLOUT; in AddFdEvent()
127 pollEvent.data.fd = fd; in AddFdEvent()
128 if (epoll_ctl(loop->epfd, op, fd, &pollEvent) == -1) { in AddFdEvent()
155 struct epoll_event pollEvent = {0}; in DelFdEvent() local
156 pollEvent.events = 0; in DelFdEvent()
158 pollEvent.events |= EPOLLIN; in DelFdEvent()
161 pollEvent.events |= EPOLLOUT; in DelFdEvent()
163 pollEvent.data.fd = fd; in DelFdEvent()
[all …]
/ohos5.0/drivers/hdf_core/framework/support/platform/include/uart/
H A Duart_core.h44 int32_t (*pollEvent)(struct UartHost *host, void *filep, void *table); member
138 if (host == NULL || host->method == NULL || host->method->pollEvent == NULL) { in UartHostPollEvent()
141 return host->method->pollEvent(host, filep, table); in UartHostPollEvent()
/ohos5.0/docs/zh-cn/device-dev/driver/
H A Ddriver-platform-uart-develop.md84 int32_t (*pollEvent)(struct UartHost *host, void *filep, void *table);
298 .pollEvent = Hi35xxPollEvent, // 轮询
/ohos5.0/drivers/peripheral/usb/ddk/device/include/
H A Dadapter_if.h222 int32_t (*pollEvent)(struct UsbFnEventAll *event, int32_t timeout); member
/ohos5.0/drivers/hdf_core/adapter/platform/uart/
H A Duart_gr5xx.c505 .pollEvent = UartHostDevPollEvent,
/ohos5.0/drivers/peripheral/usb/ddk/device/src/
H A Dusbfn_dev_mgr.c527 int32_t ret = fnOps->pollEvent(&event, timeout); in UsbFnEventProcess()
H A Dadapter_if_liteos.c1071 .pollEvent = UsbFnAdapterPollEvent,
H A Dadapter_if.c1262 .pollEvent = UsbFnAdapterPollEvent,
/ohos5.0/docs/en/device-dev/driver/
H A Ddriver-platform-uart-develop.md80 int32_t (*pollEvent)(struct UartHost *host, void *filep, void *table);
275 .pollEvent = Hi35xxPollEvent, // Polling for pending events.