Lines Matching refs:flags
89 int flags, struct sockaddr *from, int *fromlen) {
92 rv = recvfrom(fd, buf, nBytes, flags, from, fromlen);
100 int flags, struct sockaddr *to, int tolen) {
103 rv = sendto(fd, buf, len, flags, to, tolen);
110 dbgsysRecv(int fd, char *buf, int nBytes, int flags) {
113 rv = recv(fd, buf, nBytes, flags);
120 dbgsysSend(int fd, char *buf, int nBytes, int flags) {
123 rv = send(fd, buf, nBytes, flags);
233 int flags = fcntl(fd, F_GETFL);
235 if ((blocking == JNI_FALSE) && !(flags & O_NONBLOCK)) {
236 return fcntl(fd, F_SETFL, flags | O_NONBLOCK);
238 if ((blocking == JNI_TRUE) && (flags & O_NONBLOCK)) {
239 return fcntl(fd, F_SETFL, flags & ~O_NONBLOCK);