Searched refs:pollEvent (Results 1 – 9 of 9) sorted by relevance
/ohos5.0/foundation/communication/wifi/wifi/base/cRPC/src/ |
H A D | evloop.c | 120 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 D | uart_core.h | 44 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 D | driver-platform-uart-develop.md | 84 int32_t (*pollEvent)(struct UartHost *host, void *filep, void *table); 298 .pollEvent = Hi35xxPollEvent, // 轮询
|
/ohos5.0/drivers/peripheral/usb/ddk/device/include/ |
H A D | adapter_if.h | 222 int32_t (*pollEvent)(struct UsbFnEventAll *event, int32_t timeout); member
|
/ohos5.0/drivers/hdf_core/adapter/platform/uart/ |
H A D | uart_gr5xx.c | 505 .pollEvent = UartHostDevPollEvent,
|
/ohos5.0/drivers/peripheral/usb/ddk/device/src/ |
H A D | usbfn_dev_mgr.c | 527 int32_t ret = fnOps->pollEvent(&event, timeout); in UsbFnEventProcess()
|
H A D | adapter_if_liteos.c | 1071 .pollEvent = UsbFnAdapterPollEvent,
|
H A D | adapter_if.c | 1262 .pollEvent = UsbFnAdapterPollEvent,
|
/ohos5.0/docs/en/device-dev/driver/ |
H A D | driver-platform-uart-develop.md | 80 int32_t (*pollEvent)(struct UartHost *host, void *filep, void *table); 275 .pollEvent = Hi35xxPollEvent, // Polling for pending events.
|