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

  /external/bluetooth/glib/gio/
glocalfileoutputstream.c 780 int tmpfd; local
786 tmpfd = g_mkstemp (tmp_filename);
787 if (tmpfd == -1)
798 fchown (tmpfd, original_stat.st_uid, original_stat.st_gid) == -1 ||
801 fchmod (tmpfd, original_stat.st_mode) == -1 ||
810 if (fstat (tmpfd, &tmp_statbuf) != 0 ||
815 close (tmpfd);
824 return tmpfd;
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
port_testcase.py 108 tmpfd, tmpfile = port._filesystem.open_binary_tempfile('')
109 tmpfd.close()
  /build/libs/host/
CopyFile.c 560 int tmpFd;
561 tmpFd = open(src, O_RDONLY | O_BINARY, 0);
562 if (tmpFd < 0) {
566 (void) close(tmpFd);

Completed in 44 milliseconds