Home
last modified time | relevance | path

Searched refs:epHead (Results 1 - 1 of 1) sorted by relevance

/kernel/liteos_a/fs/vfs/epoll/
H A Dfs_epoll.c131 * @param epHead: epoll control head, find by epoll id .
135 static int CheckFdExist(struct epoll_head *epHead, int fd) in CheckFdExist() argument
138 for (i = 0; i < epHead->nodeCount; i++) { in CheckFdExist()
139 if (epHead->evs[i].data.fd == fd) { in CheckFdExist()
150 * @param epHead: epoll control head.
153 static VOID DoEpollClose(struct epoll_head *epHead) in DoEpollClose() argument
155 if (epHead != NULL) { in DoEpollClose()
156 if (epHead->evs != NULL) { in DoEpollClose()
157 free(epHead->evs); in DoEpollClose()
160 free(epHead); in DoEpollClose()
184 struct epoll_head *epHead = (struct epoll_head *)malloc(sizeof(struct epoll_head)); epoll_create1() local
221 struct epoll_head *epHead = NULL; epoll_close() local
239 struct epoll_head *epHead = NULL; epoll_ctl() local
311 struct epoll_head *epHead = NULL; epoll_wait() local
[all...]

Completed in 2 milliseconds