Lines Matching refs:epfd

989         KqueuerObj epfd;  in recvfrom()  local
990 epfd.SetOsfd(fd); in recvfrom()
991 epfd.EnableInput(); in recvfrom()
992 epfd.SetOwnerThread(thread); in recvfrom()
993 if (!mtframe->KqueueSchedule(NULL, &epfd, timeout)) in recvfrom()
1055 KqueuerObj epfd; in sendto() local
1056 epfd.SetOsfd(fd); in sendto()
1057 epfd.EnableOutput(); in sendto()
1058 epfd.SetOwnerThread(thread); in sendto()
1059 if (!mtframe->KqueueSchedule(NULL, &epfd, timeout)) { in sendto()
1106 KqueuerObj epfd; in connect() local
1107 epfd.SetOsfd(fd); in connect()
1108 epfd.EnableOutput(); in connect()
1109 epfd.SetOwnerThread(thread); in connect()
1110 if (!mtframe->KqueueSchedule(NULL, &epfd, timeout)) { in connect()
1152 KqueuerObj epfd; in accept() local
1153 epfd.SetOsfd(fd); in accept()
1154 epfd.EnableInput(); in accept()
1155 epfd.SetOwnerThread(thread); in accept()
1156 if (!mtframe->KqueueSchedule(NULL, &epfd, timeout)) { in accept()
1198 KqueuerObj epfd; in read() local
1199 epfd.SetOsfd(fd); in read()
1200 epfd.EnableInput(); in read()
1201 epfd.SetOwnerThread(thread); in read()
1202 if (!mtframe->KqueueSchedule(NULL, &epfd, timeout)) { in read()
1256 KqueuerObj epfd; in write() local
1257 epfd.SetOsfd(fd); in write()
1258 epfd.EnableOutput(); in write()
1259 epfd.SetOwnerThread(thread); in write()
1260 if (!mtframe->KqueueSchedule(NULL, &epfd, timeout)) { in write()
1296 KqueuerObj epfd; in recv() local
1297 epfd.SetOsfd(fd); in recv()
1298 epfd.EnableInput(); in recv()
1299 epfd.SetOwnerThread(thread); in recv()
1300 if (!mtframe->KqueueSchedule(NULL, &epfd, timeout)) in recv()
1374 KqueuerObj epfd; in send() local
1375 epfd.SetOsfd(fd); in send()
1376 epfd.EnableOutput(); in send()
1377 epfd.SetOwnerThread(thread); in send()
1378 if (!mtframe->KqueueSchedule(NULL, &epfd, timeout)) { in send()
1417 KqueuerObj epfd; in WaitEvents() local
1418 epfd.SetOsfd(fd); in WaitEvents()
1421 epfd.EnableInput(); in WaitEvents()
1425 epfd.EnableOutput(); in WaitEvents()
1427 epfd.SetOwnerThread(thread); in WaitEvents()
1429 if (!mtframe->KqueueSchedule(NULL, &epfd, timeout)) in WaitEvents()
1435 return epfd.GetRcvEvents(); in WaitEvents()