HomeSort by relevance Sort by last modified time
    Searched full:fcntl_return (Results 1 - 1 of 1) sorted by null

  /external/chromium/net/tools/flip_server/
create_listener.cc 73 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 40 milliseconds