Home | History | Annotate | Download | only in androidfw

Lines Matching defs:sb

38     struct stat sb;
40 if (stat(fileName, &sb) < 0) {
49 if (S_ISREG(sb.st_mode))
51 else if (S_ISDIR(sb.st_mode))
53 else if (S_ISCHR(sb.st_mode))
55 else if (S_ISBLK(sb.st_mode))
57 else if (S_ISFIFO(sb.st_mode))
60 else if (S_ISLNK(sb.st_mode))
62 else if (S_ISSOCK(sb.st_mode))
75 struct stat sb;
77 if (stat(fileName, &sb) < 0)
80 return sb.st_mtime;