Searched defs:fcntl_return (Results 1 - 2 of 2) sorted by relevance

/external/chromium/net/tools/flip_server/
H A Dcreate_listener.cc73 int fcntl_return = fcntl(fd, F_GETFL, 0); local
74 CHECK_NE(fcntl_return, -1)
78 if (fcntl_return & O_NONBLOCK)
81 fcntl_return = fcntl(fd, F_SETFL, fcntl_return | O_NONBLOCK);
82 CHECK_NE(fcntl_return, -1)
83 << "error doing fcntl(fd, F_SETFL, fcntl_return) fd: " << fd
/external/chromium_org/net/tools/flip_server/
H A Dcreate_listener.cc64 int fcntl_return = fcntl(fd, F_GETFL, 0); local
65 CHECK_NE(fcntl_return, -1) << "error doing fcntl(fd, F_GETFL, 0) fd: " << fd
68 if (fcntl_return & O_NONBLOCK)
71 fcntl_return = fcntl(fd, F_SETFL, fcntl_return | O_NONBLOCK);
72 CHECK_NE(fcntl_return, -1)
73 << "error doing fcntl(fd, F_SETFL, fcntl_return) fd: " << fd

Completed in 90 milliseconds