HomeSort by relevance Sort by last modified time
    Searched refs:statBuf (Results 1 - 8 of 8) sorted by null

  /frameworks/native/opengl/libs/EGL/
FileBlobCache.cpp 64 struct stat statBuf;
65 if (fstat(fd, &statBuf) == -1) {
72 size_t fileSize = statBuf.st_size;
75 static_cast<off64_t>(statBuf.st_size));
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
file_utils.cpp 36 struct stat statBuf;
37 if (fstat(fd, &statBuf) != 0) {
42 return static_cast<int>(statBuf.st_size);
  /frameworks/ml/nn/driver/cache/nnCache/
nnCache.cpp 246 struct stat statBuf;
247 if (fstat(fd, &statBuf) == -1) {
254 size_t fileSize = statBuf.st_size;
257 static_cast<off64_t>(statBuf.st_size));
  /external/ltp/testcases/kernel/fs/scsi/ltpfs/
main.c 72 struct stat statBuf;
110 rc = fstat(tmpHandle, &statBuf);
113 fileBuf = malloc(statBuf.st_size);
118 statBuf.st_size);
121 statBuf.st_size);
125 statBuf.st_size * i);
127 statBuf.st_size * i);
393 struct stat statbuf; local
405 rc = stat(LTP_FS_DEV_NODE_PATH, &statbuf);
420 if (!(statbuf.st_mode & S_IFDIR))
    [all...]
  /external/bzip2/
bzip2.c 690 struct MY_STAT statBuf;
701 retVal = MY_STAT ( inName, &statBuf );
984 struct MY_STAT statBuf;
986 i = MY_LSTAT ( name, &statBuf );
988 if (MY_S_ISREG(statBuf.st_mode)) return False;
1001 struct MY_STAT statBuf;
1003 i = MY_LSTAT ( name, &statBuf );
1005 return (statBuf.st_nlink - 1);
1138 struct MY_STAT statBuf;
    [all...]
  /system/netd/server/
IptablesRestoreControllerTest.cpp 94 char statBuf[1024];
95 ASSERT_NE(-1, read(fd, statBuf, sizeof(statBuf)))
99 std::string statString(statBuf);
  /frameworks/rs/
rsScriptC.cpp 65 struct stat statBuf;
66 int statReturn = stat(cacheDir, &statBuf);
94 statReturn = stat(currentDir.c_str(), &statBuf);
  /external/clang/lib/Frontend/
CompilerInvocation.cpp     [all...]

Completed in 1504 milliseconds