HomeSort by relevance Sort by last modified time
    Searched defs:isdir (Results 1 - 7 of 7) sorted by null

  /external/e2fsprogs/e2fsck/
swapfs.c 23 int isdir; member in struct:swap_block_struct
41 if (sb->isdir && (blockcnt >= 0) && *block_nr) {
90 sb.isdir = 0;
92 sb.isdir = 1;
  /external/e2fsprogs/tests/progs/
random_exercise.c 27 int isdir; member in struct:state
75 int isdir = 0; local
79 isdir = random() & 1;
80 if (isdir) {
93 state_array[fd].isdir = isdir;
96 state_array[fd].isdir = isdir;
107 if (state_array[fd].isdir)
123 if (state_array[fd].isdir)
    [all...]
  /external/v8/test/message/
testcfg.py 30 from os.path import join, dirname, exists, basename, isdir namespace
101 if isdir(path):
  /external/webkit/Tools/Scripts/webkitpy/common/system/
filesystem.py 131 def isdir(self, path): member in class:FileSystem
133 return os.path.isdir(path)
filesystem_mock.py 75 if not self.isdir(path):
82 if self.isdir(source):
83 raise IOError(errno.EISDIR, source, os.strerror(errno.ISDIR))
84 if self.isdir(destination):
85 raise IOError(errno.EISDIR, destination, os.strerror(errno.ISDIR))
94 return self.isfile(path) or self.isdir(path)
145 def isdir(self, path): member in class:MockFileSystem
167 if not self.isdir(path):
223 if not self.isdir(norm_path):
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 535 const int isdir = S_ISDIR(s.st_mode); local
536 if (isdir) s.st_size = 0; // directories get no actual data in the tar stream
579 snprintf(buf + 124, 12, "%011llo", (isdir) ? 0LL : s.st_size);
586 if (isdir) {
681 if (!isdir) {
    [all...]
  /external/v8/tools/
test.py 34 from os.path import join, dirname, abspath, basename, isdir, exists namespace
    [all...]

Completed in 212 milliseconds