Home | History | Annotate | Download | only in androidfw

Lines Matching refs: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))
64 else if (S_ISSOCK(sb.st_mode))
77 struct stat sb;
79 if (stat(fileName, &sb) < 0)
82 return sb.st_mtime;