OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full: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.c
231
struct stat
fd_stat
;
local
232
if (fstat(fd, &
fd_stat
) < 0) {
236
if ((
fd_stat
.st_uid != 0)
237
|| (
fd_stat
.st_gid != 0)
238
|| ((
fd_stat
.st_mode & (S_IWGRP | S_IWOTH)) != 0)
239
|| (
fd_stat
.st_size < sizeof(prop_area)) ) {
243
pa_size =
fd_stat
.st_size;
Completed in 345 milliseconds