HomeSort by relevance Sort by last modified time
    Searched refs:is_dir (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/ppapi/shared_impl/
dir_contents.h 16 bool is_dir; member in struct:ppapi::DirEntry
  /bionic/tests/
ftw_test.cpp 27 bool is_dir = S_ISDIR(sb->st_mode); local
28 ASSERT_TRUE((is_dir && tflag == FTW_D) || (!is_dir && tflag == FTW_F));
35 bool is_dir = S_ISDIR(sb->st_mode); local
37 (is_dir && ftwbuf->level == 0) || (!is_dir && ftwbuf->level == 1));
  /build/tools/fs_config/
fs_config.c 99 int is_dir = 0; local
104 buffer[i-is_dir] = '\0';
108 is_dir = 1;
111 is_dir = 0;
118 fs_config(buffer, is_dir, &uid, &gid, &mode, &capabilities);
139 if (selabel_lookup(sehnd, &secontext, full_name, ( mode | (is_dir ? S_IFDIR : S_IFREG)))) {
  /build/tools/
mktarball.sh 30 [ -d "$f" ] && is_dir=1 || is_dir=0
31 new_info=`${fs_get_stats} ${curr_perms} ${is_dir} ${f}`
35 # echo "$f: dir: $is_dir curr: $curr_perms uid: $new_uid gid: $new_gid "\
  /build/tools/fs_get_stats/
fs_get_stats.c 28 fprintf(stderr, "usage: fs_get_stats cur_perms is_dir filename\n");
40 char is_dir = 0; local
58 is_dir = 1;
61 fs_config(argv[3], is_dir, &uid, &gid, &perms, &capabilities);
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
common.py 107 is_dir=False):
111 For directories, only filename and is_dir is set.
122 is_dir: True if this represents a directory. False if this is a real file.
125 self.is_dir = is_dir
132 if not is_dir:
140 if self.is_dir:
cloudstorage_api.py 240 st_ctime, and is_dir are set.
245 only the filename and is_dir fields are set.
395 st_size=None, etag=None, st_ctime=None, is_dir=True)
  /external/chromium_org/content/browser/download/
save_file_manager.h 126 void DeleteDirectoryOrFile(const base::FilePath& full_path, bool is_dir);
204 void OnDeleteDirectoryOrFile(const base::FilePath& full_path, bool is_dir);
save_file_manager.cc 193 bool is_dir) {
198 this, full_path, is_dir));
468 bool is_dir) {
472 base::DeleteFile(full_path, is_dir);
  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_flash_file.idl 11 PP_Bool is_dir;
  /external/chromium_org/ppapi/c/private/
ppb_flash_file.h 17 PP_Bool is_dir; member in struct:PP_DirEntry_Dev
  /external/chromium_org/ppapi/cpp/private/
flash_file.h 45 bool is_dir; member in struct:pp::flash::FileModuleLocal::DirEntry
flash_file.cc 28 FileModuleLocal::DirEntry rv = { entry.name, PP_ToBool(entry.is_dir) };
  /external/chromium_org/third_party/boringssl/
update_gypi_and_asm.py 54 def NoTests(dent, is_dir):
57 if is_dir:
62 def OnlyTests(dent, is_dir):
65 if is_dir:
  /build/tools/atree/
fs.cpp 21 is_dir(const string& path) function
46 if (is_dir(path)) {
  /external/chromium_org/base/files/
file_path_watcher_linux.cc 100 // |is_dir| is true if the object is a directory.
105 bool is_dir);
154 void UpdateRecursiveWatches(InotifyReader::Watch fired_watch, bool is_dir);
348 bool is_dir) {
354 fired_watch, child, created, deleted, is_dir));
411 UpdateRecursiveWatches(fired_watch, is_dir);
421 UpdateRecursiveWatches(fired_watch, is_dir);
522 bool is_dir) {
539 if (!is_dir)
  /external/chromium_org/ppapi/proxy/
serialized_structs.h 101 bool is_dir; member in struct:ppapi::proxy::SerializedDirEntry
flash_file_resource.cc 126 dest->is_dir = PP_FromBool(source.is_dir);
  /external/chromium_org/sync/test/engine/
mock_connection_manager.h 115 bool is_dir,
124 bool is_dir,
269 bool is_dir);
273 bool is_dir);
  /external/valgrind/main/coregrind/m_initimg/
initimg-pathscan.c 110 if (VG_(is_dir)(buf))
  /external/chromium_org/ppapi/tests/
test_flash_file.cc 84 return i.name == j.name && i.is_dir == j.is_dir;
90 return i.is_dir < j.is_dir;
274 ASSERT_EQ(result[0].is_dir, true);
  /external/valgrind/main/coregrind/
pub_core_libcfile.h 56 extern Bool VG_(is_dir) ( const HChar* f );
  /external/e2fsprogs/e2fsck/
pass1.c 81 unsigned is_dir:1, is_reg:1, clear:1, suppress:1, member in struct:process_block_struct
854 pb.suppress = 0; pb.clear = 0; pb.is_dir = 0;
1770 int is_dir, is_leaf; local
    [all...]
  /external/qemu/distrib/ext4_utils/src/
ext4fixup.c 627 unsigned int i, leftover_space, is_dir; local
711 is_dir = is_entry_dir(fd, dirp, mode);
712 if ( is_dir && (strcmp(name, ".") && strcmp(name, "..")) &&
743 if (is_dir) {
  /system/extras/ext4_utils/
ext4fixup.c 526 unsigned int i, leftover_space, is_dir; local
610 is_dir = is_entry_dir(fd, dirp, mode);
611 if ( is_dir && (strcmp(name, ".") && strcmp(name, "..")) &&
642 if (is_dir) {

Completed in 1669 milliseconds

1 2