Searched refs:fcntl_return (Results 1 - 1 of 1) 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

Completed in 55 milliseconds