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

1 2 3 4

  /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);
  /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 "\
  /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)))) {
  /external/chromium/chrome/browser/sync/syncable/
syncable_enum_conversions.cc 92 INDEXED_BIT_FIELDS_END, IS_DIR - 1);
101 ASSERT_ENUM_BOUNDS(IS_DIR, SERVER_IS_DEL,
104 ENUM_CASE(IS_DIR);
syncable_columns.h 47 {"is_dir", "bit default 0"},
syncable_unittest.cc 490 e1.Put(IS_DIR, true);
614 e1.Put(IS_DIR, true);
651 // Maybe change entries by flipping IS_DIR.
656 bool not_dir = !e.Get(IS_DIR);
657 e.Put(IS_DIR, not_dir);
732 e1.Put(IS_DIR, true);
805 e1.Put(IS_DIR, true);
870 parent.Put(IS_DIR, true);
875 child.Put(IS_DIR, true);
910 parent.Put(IS_DIR, true)
    [all...]
  /external/chromium_org/sync/syncable/
syncable_enum_conversions.cc 101 INDEXED_BIT_FIELDS_END, IS_DIR - 1);
110 ASSERT_ENUM_BOUNDS(IS_DIR, SERVER_IS_DEL,
113 ENUM_CASE(IS_DIR);
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);
syncable_columns.h 45 {"is_dir", "bit default 0"},
syncable_unittest.cc 641 e1.Put(IS_DIR, true);
692 e1.Put(IS_DIR, true);
729 // Maybe change entries by flipping IS_DIR.
734 bool not_dir = !e.Get(IS_DIR);
735 e.Put(IS_DIR, not_dir);
    [all...]
  /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/chromium/chrome/browser/sync/
abstract_profile_sync_service_test.cc 28 using syncable::IS_DIR;
83 node.Put(IS_DIR, true);
  /external/chromium_org/sync/internal_api/
delete_journal.cc 24 delete_journal_list->back().is_folder = (*i)->ref(syncer::syncable::IS_DIR);
write_node.cc 37 if (entry_->Get(syncable::IS_DIR) == folder)
40 entry_->Put(syncable::IS_DIR, folder);
367 entry_->Put(syncable::IS_DIR, true);
417 // IS_DIR: We'll leave it the same.
441 // Only set IS_DIR for new entries. Don't bitflip undeleted ones.
446 entry_->Put(syncable::IS_DIR, false);
  /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,
  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_flash_file.idl 11 PP_Bool is_dir;
  /external/chromium_org/ppapi/cpp/private/
flash_file.h 45 bool is_dir; member in struct:pp::flash::FileModuleLocal::DirEntry
  /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/
test_syncable_utils.cc 79 node.Put(syncable::IS_DIR, true);
  /build/tools/atree/
fs.cpp 21 is_dir(const string& path) function
46 if (is_dir(path)) {
  /external/chromium_org/sync/engine/
syncer_unittest.cc 89 using syncable::IS_DIR;
252 EXPECT_FALSE(entry->Get(IS_DIR));
261 EXPECT_FALSE(entry->Get(IS_DIR));
352 entry.Put(syncable::IS_DIR, true);
458 entry.Put(syncable::IS_DIR, true);
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_unittest.cc 71 using syncable::IS_DIR;
214 EXPECT_FALSE(entry->Get(IS_DIR));
223 EXPECT_FALSE(entry->Get(IS_DIR));
300 entry.Put(syncable::IS_DIR, true);
394 entry.Put(syncable::IS_DIR, true);
594 parent.Put(syncable::IS_DIR, true);
630 parent.Put(syncable::IS_DIR, true);
643 parent2.Put(syncable::IS_DIR, true);
683 parent.Put(syncable::IS_DIR, true);
843 parent.Put(syncable::IS_DIR, true)
    [all...]
syncer_proto_util.cc 26 using syncable::IS_DIR;
287 if (local_entry.Get(IS_DIR) != server_entry.IsFolder()) {
295 if (!local_entry.Get(IS_DIR) &&

Completed in 1089 milliseconds

1 2 3 4