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

1 2

  /external/chromium_org/ppapi/shared_impl/
dir_contents.h 17 bool is_dir; member in struct:ppapi::DirEntry
  /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/chrome/browser/download/
save_file_manager.h 130 void DeleteDirectoryOrFile(const FilePath& full_path, bool is_dir);
207 void OnDeleteDirectoryOrFile(const FilePath& full_path, bool is_dir);
save_file_manager.cc 203 bool is_dir) {
208 this, &SaveFileManager::OnDeleteDirectoryOrFile, full_path, is_dir));
472 bool is_dir) {
476 file_util::Delete(full_path, is_dir);
  /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));
469 bool is_dir) {
473 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) };
  /system/extras/fatblock/
import.c 155 int is_dir; member in struct:item
268 item->is_dir = 0;
272 item->is_dir = 1;
316 item->name, item->is_dir ? FAT_ATTR_SUBDIR : 0,
  /build/tools/atree/
fs.cpp 21 is_dir(const string& path) function
46 if (is_dir(path)) {
  /external/chromium_org/ppapi/proxy/
serialized_structs.h 86 bool is_dir; member in struct:ppapi::proxy::SerializedDirEntry
flash_file_resource.cc 125 dest->is_dir = PP_FromBool(source.is_dir);
  /external/chromium_org/sync/test/engine/
mock_connection_manager.h 114 bool is_dir,
123 bool is_dir,
271 bool is_dir);
275 bool is_dir);
mock_connection_manager.cc 250 bool is_dir,
259 ent->set_folder(is_dir);
269 bool is_dir,
275 id, parent_id, name, version, sync_ts, is_dir, position, specifics);
322 int64 sync_ts, bool is_dir) {
325 AddDefaultBookmarkData(ent, is_dir);
  /external/valgrind/main/coregrind/m_initimg/
initimg-pathscan.c 110 if (VG_(is_dir)(buf))
  /external/valgrind/main/coregrind/
pub_core_libcfile.h 53 extern Bool VG_(is_dir) ( const HChar* f );
  /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/e2fsprogs/e2fsck/
pass1.c 81 unsigned is_dir:1, is_reg:1, clear:1, suppress:1, member in struct:process_block_struct
817 pb.suppress = 0; pb.clear = 0; pb.is_dir = 0;
1682 int is_dir, is_leaf; local
    [all...]
  /system/extras/ext4_utils/
ext4fixup.c 626 unsigned int i, leftover_space, is_dir; local
710 is_dir = is_entry_dir(fd, dirp, mode);
711 if ( is_dir && (strcmp(name, ".") && strcmp(name, "..")) &&
742 if (is_dir) {
  /external/e2fsprogs/misc/
e2image.c 156 int is_dir; member in struct:process_block_struct
229 if (scramble_block_map && p->is_dir && blockcnt >= 0)
523 pb.is_dir = LINUX_S_ISDIR(inode.i_mode);
  /external/chromium_org/sync/syncable/
parent_child_index_unittest.cc 51 root->put(IS_DIR, true);
66 folder->put(IS_DIR, true);
76 EntryKernel* MakeBookmark(int n, int pos, bool is_dir) {
82 bm->put(IS_DIR, is_dir);
105 item->put(IS_DIR, false);

Completed in 246 milliseconds

1 2