Lines Matching refs:poll_flag
181 testInternalGet (int port, int poll_flag) in testInternalGet() argument
195 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG | poll_flag, in testInternalGet()
229 stop (poll_flag == MHD_USE_POLL ? "internal poll" : in testInternalGet()
230 poll_flag == MHD_USE_EPOLL_LINUX_ONLY ? "internal epoll" : "internal select"); in testInternalGet()
241 testMultithreadedGet (int port, int poll_flag) in testMultithreadedGet() argument
255 d = MHD_start_daemon (MHD_USE_THREAD_PER_CONNECTION | MHD_USE_DEBUG | poll_flag, in testMultithreadedGet()
289 stop ((poll_flag & MHD_USE_POLL) ? "thread with poll" : in testMultithreadedGet()
290 (poll_flag & MHD_USE_EPOLL_LINUX_ONLY) ? "thread with epoll" : "thread with select"); in testMultithreadedGet()
300 testMultithreadedPoolGet (int port, int poll_flag) in testMultithreadedPoolGet() argument
314 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG | poll_flag, in testMultithreadedPoolGet()
349 stop (0 != (poll_flag & MHD_USE_POLL) ? "thread pool with poll" : in testMultithreadedPoolGet()
350 …0 != (poll_flag & MHD_USE_EPOLL_LINUX_ONLY) ? "thread pool with epoll" : "thread pool with select"… in testMultithreadedPoolGet()