HomeSort by relevance Sort by last modified time
    Searched refs:fcntl_flags (Results 1 - 2 of 2) sorted by null

  /external/bluetooth/glib/glib/
giounix.c 367 glong fcntl_flags; local
370 fcntl_flags = 0;
373 fcntl_flags |= O_APPEND;
376 fcntl_flags |= O_NONBLOCK;
378 fcntl_flags |= O_NDELAY;
381 if (fcntl (unix_channel->fd, F_SETFL, fcntl_flags) == -1)
397 glong fcntl_flags; local
400 fcntl_flags = fcntl (unix_channel->fd, F_GETFL);
402 if (fcntl_flags == -1)
410 if (fcntl_flags & O_APPEND
    [all...]
  /external/bluetooth/glib/gio/
gcancellable.c 179 glong fcntl_flags; local
180 fcntl_flags = fcntl (fd, F_GETFL);
183 fcntl_flags |= O_NONBLOCK;
185 fcntl_flags |= O_NDELAY;
188 fcntl (fd, F_SETFL, fcntl_flags);

Completed in 6969 milliseconds