sanitizer_wrappers.cc | 140 #define STAT(func, arg, buf) \ 144 int stat(const char *path, struct stat *buf) { STAT(stat, path, buf); } function in typeref:typename:int 146 int lstat(const char *path, struct stat *buf) { STAT(lstat, path, buf); } 148 int fstat(int fd, struct stat *buf) { STAT(fstat, fd, buf); } 150 // Redirect versioned stat functions to the __sanitizer::internal() as well [all...] |