/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/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/node/deps/openssl/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/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/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)
|
D | test_support.py | 150 self.assertFalse(os.path.isdir(path)) 153 self.assertTrue(os.path.isdir(path)) 154 self.assertFalse(os.path.isdir(path)) 161 self.assertTrue(os.path.isdir(temp_path)) 162 self.assertFalse(os.path.isdir(temp_path)) 173 self.assertTrue(os.path.isdir(path)) 176 self.assertTrue(os.path.isdir(path)) 191 self.assertTrue(os.path.isdir(path)) 304 self.assertTrue(os.path.isdir(new_cwd))
|
/third_party/skia/gn/ |
D | cp.py | 15 if os.path.isdir(dst): 20 if os.path.isdir(src):
|
/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):
|
/third_party/openssl/test/recipes/ |
D | 90-test_store.t | 549 my ($file, $isdir, $authority) = @_; 555 ($vol, $dir, $file) = File::Spec->splitpath($file, $isdir // 0); 571 if ($isdir // 0) { 600 my ($file, $isdir, $authority) = @_; 603 return to_file_uri(to_abs_file($file), $isdir, $authority);
|
/third_party/jerryscript/tools/runners/ |
D | run-test-suite-test262.py | 58 if os.path.isdir(os.path.join(args.test_dir, '.git')): 89 if os.path.isdir(path_to_remove): 93 if os.path.isdir(path_to_remove):
|
/third_party/ffmpeg/tests/ |
D | rotozoom.c | 161 int isdir = 0; in main() local 170 isdir = 1; in main() 185 if (isdir) { in main()
|
D | videogen.c | 156 int isdir = 0; in main() local 163 isdir = 1; in main() 183 if (isdir) { in main()
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
D | build_tree.py | 25 return all(os.path.isdir(os.path.join(path, subdir)) 33 if not all(os.path.isdir(d) for d in ["include", "library", "tests"]):
|
/third_party/mbedtls/tests/scripts/ |
D | check_test_cases.py | 117 if os.path.isdir('tests'): 119 elif os.path.isdir('suites'): 121 elif os.path.isdir('../suites'):
|
/third_party/skia/tools/android/ |
D | upload_to_android.py | 58 if not os.path.isdir(work_dir): 65 if not os.path.isdir(repo_dir): 80 if not os.path.isdir(android_dir):
|
/third_party/skia/tools/skqp/ |
D | run_skqp_exe | 17 assert os.path.isdir(build) 44 if len(sys.argv) != 2 or not os.path.isdir(sys.argv[1]):
|
/third_party/python/Lib/distutils/command/ |
D | install_egg_info.py | 34 if os.path.isdir(target) and not os.path.islink(target): 38 elif not os.path.isdir(self.install_dir):
|