/third_party/e2fsprogs/tests/progs/ |
D | random_exercise.c | 28 int isdir; member 76 int isdir = 0; in create_random_file() local 80 isdir = random() & 1; in create_random_file() 81 if (isdir) { in create_random_file() 94 state_array[fd].isdir = isdir; in create_random_file() 97 state_array[fd].isdir = isdir; in create_random_file() 108 if (state_array[fd].isdir) in truncate_file() 124 if (state_array[fd].isdir) in unlink_file() 158 if ((state_array[fd].isdir == 0) && in main()
|
/third_party/ntfs-3g/ntfsprogs/ |
D | ntfssecaudit.c | 933 int isdir; in guess_dir() local 938 isdir = 0; in guess_dir() 945 isdir = 1; in guess_dir() 949 return (isdir); in guess_dir() 1279 static void showace(const char *attr, int off, int isdir, int level) in showace() argument 1326 if (isdir) /* a directory */ { in showace() 1420 static void showacl(const char *attr, int off, int isdir, int level) in showacl() argument 1440 showace(attr,off + x,isdir,level+4); in showacl() 1445 static void showdacl(const char *attr, int isdir, int level) in showdacl() argument 1459 showacl(attr,off,isdir,level+4); in showdacl() [all …]
|
/third_party/python/Lib/unittest/test/ |
D | test_discovery.py | 53 original_isdir = os.path.isdir 55 os.path.isdir = original_isdir 63 def isdir(path): function 65 os.path.isdir = isdir 106 original_isdir = os.path.isdir 108 os.path.isdir = original_isdir 114 os.path.isdir = lambda path: False 144 original_isdir = os.path.isdir 146 os.path.isdir = original_isdir 153 os.path.isdir = lambda path: True [all …]
|
/third_party/musl/scripts/ |
D | search_source_files.py | 8 if not os.path.isdir(path): 13 if os.path.isdir(cur_path): 27 if os.path.isdir(target_path): 31 if os.path.isdir(cur_path): 46 if os.path.isdir(cur_path) and src_dir == "src": 62 elif os.path.isdir(path + "/" + src_dir + "/" + arch): 67 if os.path.isdir(cur_path): 140 if os.path.isdir(cur_path):
|
/third_party/ntfs-3g/include/ntfs-3g/ |
D | acls.h | 153 mode_t umask, BOOL isdir); 156 mode_t umask, BOOL isdir); 162 const SID *usid, const SID *gsid, BOOL isdir); 167 int isdir, const SID *usid, const SID *gsid); 175 const SID *usid, const SID *gsid, BOOL isdir); 177 int isdir, const SID * usid, const SID * gsid);
|
/third_party/python/Lib/distutils/ |
D | dir_util.py | 42 if os.path.isdir(name) or name == '': 50 while head and tail and not os.path.isdir(head): 72 if not (exc.errno == errno.EEXIST and os.path.isdir(head)): 122 if not dry_run and not os.path.isdir(src): 155 elif os.path.isdir(src_name): 172 if os.path.isdir(real_f) and not os.path.islink(real_f):
|
D | file_util.py | 107 if os.path.isdir(dst): 177 from os.path import exists, isfile, isdir, basename, dirname 189 if isdir(dst): 196 if not isdir(dirname(dst)):
|
/third_party/mindspore/tests/st/fl/cross_silo_faster_rcnn/ |
D | generate_mindrecord.py | 25 if not os.path.isdir(mindrecord_dir): 28 if os.path.isdir(config.coco_root): 39 if os.path.isdir(config.image_dir) and os.path.exists(config.anno_path):
|
/third_party/boost/status/ |
D | boost_check_library.py | 31 if os.path.isdir(os.path.join(self.library_dir, 'build')): 40 if os.path.isdir(os.path.join(self.library_dir, 'src')): 68 if os.path.isdir(os.path.join(self.library_dir,'include','boost',self.library_name)): 233 if os.path.isdir(dir): 245 if os.path.isdir(dir): 280 return os.path.isdir(dir) 285 if os.path.isdir(dir):
|
/third_party/openssl/fuzz/ |
D | helper.py | 25 if not os.path.isdir(FUZZER_DIR): 32 if not os.path.isdir(dd): 38 if os.path.isdir(dd):
|
/third_party/mindspore/tests/st/profiler/ |
D | test_cpu_profiler.py | 48 if os.path.isdir(data_path): 59 assert os.path.isdir(data_path) 70 if os.path.isdir(data_path):
|
/third_party/musl/ndk-test/script/ |
D | build.py | 20 if os.path.exists(target_dir) and os.path.isdir(target_dir): 23 if os.path.isdir(os.path.join(target_dir,filename)): 38 if os.path.isdir(file_path): 72 if not os.path.isdir(copy_tar_out):
|
/third_party/flutter/engine/flutter/sky/tools/ |
D | create_ios_framework.py | 34 if not os.path.isdir(arm64_framework): 38 if not os.path.isdir(armv7_framework): 42 if not os.path.isdir(simulator_framework):
|
/third_party/e2fsprogs/e2fsck/ |
D | pass4.c | 184 int isdir; in e2fsck_pass4() local 229 isdir = ext2fs_test_inode_bitmap2(ctx->inode_dir_map, i); in e2fsck_pass4() 230 if (isdir && (link_counted > EXT2_LINK_MAX)) { in e2fsck_pass4() 246 if ((link_count != inode->i_links_count) && !isdir && in e2fsck_pass4() 255 if (isdir && link_counted > 1 && in e2fsck_pass4()
|
/third_party/flutter/skia/gn/ |
D | cp.py | 15 if os.path.isdir(dst): 20 if os.path.isdir(src):
|
/third_party/skia/gn/ |
D | cp.py | 15 if os.path.isdir(dst): 20 if os.path.isdir(src):
|
/third_party/ntfs-3g/libntfs-3g/ |
D | acls.c | 1306 mode_t mode, mode_t mask, BOOL isdir __attribute__((unused))) in ntfs_build_basic_posix() argument 1351 mode_t mask, BOOL isdir) in ntfs_build_inherited_posix() argument 1362 if (isdir) in ntfs_build_inherited_posix() 1446 if (defcnt && isdir) { in ntfs_build_inherited_posix() 1586 BOOL isdir; member 1655 if (pset->isdir) { in build_user_denials() 1684 if (pset->isdir) { in build_user_denials() 1711 if (pset->isdir) { in build_user_denials() 1730 if (pset->isdir) { in build_user_denials() 1807 if (pset->isdir) { in build_user_grants() [all …]
|
D | security.c | 2079 BOOL isdir; in ntfs_get_perm() local 2093 isdir = (ni->mrec->flags & MFT_RECORD_IS_DIRECTORY) in ntfs_get_perm() 2105 usid, gsid, isdir); in ntfs_get_perm() 2115 usid, gsid, isdir); in ntfs_get_perm() 2180 BOOL isdir; in ntfs_get_posix_acl() local 2193 isdir = (ni->mrec->flags & MFT_RECORD_IS_DIRECTORY) in ntfs_get_posix_acl() 2208 usid, gsid, isdir); in ntfs_get_posix_acl() 2309 BOOL isdir; in ntfs_get_perm() local 2325 isdir = (ni->mrec->flags & MFT_RECORD_IS_DIRECTORY) in ntfs_get_perm() 2337 usid, gsid, isdir); in ntfs_get_perm() [all …]
|
D | reparse.c | 221 int count, BOOL isdir) in search_absolute() argument 264 && ((ni->mrec->flags & MFT_RECORD_IS_DIRECTORY ? isdir : !isdir) in search_absolute() 560 int count, const char *mnt_point, BOOL isdir) in ntfs_get_fulllink() argument 600 target = search_absolute(vol,&junction[7],count - 7, isdir); in ntfs_get_fulllink() 664 BOOL isdir) in ntfs_get_abslink() argument 705 count - 1, isdir); in ntfs_get_abslink() 708 count - 3, isdir); in ntfs_get_abslink() 799 BOOL isdir; in ntfs_make_symlink() local 803 isdir = (ni->mrec->flags & MFT_RECORD_IS_DIRECTORY) in ntfs_make_symlink() 819 lth/2, mnt_point, isdir); in ntfs_make_symlink() [all …]
|
/third_party/flutter/skia/infra/bots/assets/valgrind/ |
D | create.py | 42 if os.path.isdir(VALGRIND): 48 if os.path.isdir(INSTALL_DIR): 88 if not os.path.isdir(TEMP_DIR):
|
/third_party/openssl/test/recipes/ |
D | 90-test_store.t | 439 my ($file, $isdir, $authority) = @_; 445 ($vol, $dir, $file) = File::Spec->splitpath($file, $isdir // 0); 461 if ($isdir // 0) { 490 my ($file, $isdir, $authority) = @_; 493 return to_file_uri(to_abs_file($file), $isdir, $authority);
|
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/ |
D | gen_common.py | 62 if not os.path.isdir(dir_path): 122 assert os.path.isdir(src) 123 assert os.path.isdir(dst) 139 if os.path.isdir(src_path):
|
/third_party/python/Lib/test/ |
D | test_genericpath.py | 169 self.assertIs(self.pathmodule.isdir(filename), False) 170 self.assertIs(self.pathmodule.isdir(bfilename), False) 172 self.assertIs(self.pathmodule.isdir(filename + '\udfff'), False) 173 self.assertIs(self.pathmodule.isdir(bfilename + b'\xff'), False) 174 self.assertIs(self.pathmodule.isdir(filename + '\x00'), False) 175 self.assertIs(self.pathmodule.isdir(bfilename + b'\x00'), False) 179 self.assertIs(self.pathmodule.isdir(filename), False) 180 self.assertIs(self.pathmodule.isdir(bfilename), False) 186 self.assertIs(self.pathmodule.isdir(filename), True) 187 self.assertIs(self.pathmodule.isdir(bfilename), True) [all …]
|
D | test_venv.py | 90 def isdir(self, *args): member in BasicTest 92 self.assertTrue(os.path.isdir(fn)) 100 self.isdir(self.bindir) 101 self.isdir(self.include) 102 self.isdir(*self.lib) 250 elif os.path.isdir(fn): 272 self.isdir(self.bindir) 273 self.isdir(self.include) 274 self.isdir(*self.lib)
|
/third_party/skia/infra/bots/assets/valgrind/ |
D | create.py | 46 if os.path.isdir(VALGRIND): 52 if os.path.isdir(INSTALL_DIR): 92 if not os.path.isdir(TEMP_DIR):
|