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

  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 103 struct stat fd_stat, file_stat; local
107 if (::fstat(mFD, &fd_stat) == 0) {
125 return ((fd_stat.st_dev == file_stat.st_dev) &&
126 (fd_stat.st_ino == file_stat.st_ino));
  /bionic/libc/bionic/
system_properties.cpp 224 struct stat fd_stat; local
225 if (fstat(fd, &fd_stat) < 0) {
229 if ((fd_stat.st_uid != 0)
230 || (fd_stat.st_gid != 0)
231 || ((fd_stat.st_mode & (S_IWGRP | S_IWOTH)) != 0)
232 || (fd_stat.st_size < static_cast<off_t>(sizeof(prop_area))) ) {
236 pa_size = fd_stat.st_size;

Completed in 515 milliseconds