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

  /bionic/libc/bionic/
system_properties.c 98 struct stat fd_stat; local
99 if (fstat(fd, &fd_stat) < 0) {
103 if ((fd_stat.st_uid != 0)
104 || (fd_stat.st_gid != 0)
105 || ((fd_stat.st_mode & (S_IWGRP | S_IWOTH)) != 0)) {
109 prop_area *pa = mmap(NULL, fd_stat.st_size, PROT_READ, MAP_SHARED, fd, 0);
116 munmap(pa, fd_stat.st_size);
  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 91 struct stat fd_stat, file_stat; local
95 if (::fstat(mFD, &fd_stat) == 0) {
113 return ((fd_stat.st_dev == file_stat.st_dev) &&
114 (fd_stat.st_ino == file_stat.st_ino));

Completed in 62 milliseconds