HomeSort by relevance Sort by last modified time
    Searched full:fdstat (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/jni/android/graphics/
BitmapRegionDecoder.cpp 123 struct stat fdStat;
124 if (fstat(descriptor, &fdStat) == -1) {
BitmapFactory.cpp 519 struct stat fdStat;
520 if (fstat(descriptor, &fdStat) == -1) {
  /dalvik/vm/analysis/
DexPrepare.cpp 133 struct stat fdStat, fileStat;
189 cc = fstat(fd, &fdStat);
197 fdStat.st_dev != fileStat.st_dev || fdStat.st_ino != fileStat.st_ino)
214 if (fdStat.st_size == 0) {
    [all...]
  /external/valgrind/main/coregrind/
vgdb.c 225 struct stat fdstat; local
233 if (fstat(shared_mem_fd, &fdstat) != 0)
236 if (fdstat.st_size == sizeof(VgdbShared64))
238 else if (fdstat.st_size == sizeof(VgdbShared32))
247 (long int)fdstat.st_size);
254 fdstat.st_size);
265 *s = (void*) mmap (NULL, fdstat.st_size,
    [all...]

Completed in 56 milliseconds