Searched defs:stbuf (Results 1 - 3 of 3) sorted by relevance

/system/update_engine/payload_consumer/
H A Dfile_descriptor.cc73 struct stat stbuf; local
74 if (fstat(fd_, &stbuf) < 0) {
78 if (!S_ISBLK(stbuf.st_mode))
/system/update_engine/
H A Domaha_request_params.cc99 struct stat stbuf; local
100 delta_okay_ = (stat((root_ + "/.nodelta").c_str(), &stbuf) < 0) &&
/system/update_engine/common/
H A Dutils.cc416 struct stat stbuf; local
417 int rc = fstat(fd, &stbuf);
423 if (S_ISREG(stbuf.st_mode))
424 return stbuf.st_size;
425 if (S_ISBLK(stbuf.st_mode))
567 struct stat stbuf; local
568 return 0 == lstat(path, &stbuf);
572 struct stat stbuf; local
573 return lstat(path, &stbuf) == 0 && S_ISLNK(stbuf
[all...]

Completed in 1852 milliseconds