Lines Matching refs:pollflag
1361 unsigned pollflag = 0; in ipath_poll_hdrqfull() local
1365 pollflag |= POLLIN | POLLRDNORM; in ipath_poll_hdrqfull()
1369 return pollflag; in ipath_poll_hdrqfull()
1376 unsigned pollflag = 0; in ipath_poll_urgent() local
1383 pollflag = ipath_poll_hdrqfull(pd); in ipath_poll_urgent()
1386 pollflag |= POLLIN | POLLRDNORM; in ipath_poll_urgent()
1390 if (!pollflag) { in ipath_poll_urgent()
1398 return pollflag; in ipath_poll_urgent()
1407 unsigned pollflag = 0; in ipath_poll_next() local
1414 pollflag = ipath_poll_hdrqfull(pd); in ipath_poll_next()
1423 pollflag |= POLLIN | POLLRDNORM; in ipath_poll_next()
1444 return pollflag; in ipath_poll_next()
1451 unsigned pollflag; in ipath_poll() local
1455 pollflag = 0; in ipath_poll()
1457 pollflag = ipath_poll_urgent(pd, fp, pt); in ipath_poll()
1459 pollflag = ipath_poll_next(pd, fp, pt); in ipath_poll()
1461 return pollflag; in ipath_poll()