/openbmc/openbmc/poky/scripts/ |
H A D | pythondeps | 68 isdir = os.path.isdir(path) 69 if isdir: 87 if not isdir: 193 if os.path.isdir(filename): 210 if os.path.isdir(path):
|
H A D | wic | 165 if not options.vars_dir and (not native_sysroot or not os.path.isdir(native_sysroot)): 189 if rootfs_dir and not os.path.isdir(rootfs_dir): 191 if not os.path.isdir(bootimg_dir): 193 if not os.path.isdir(kernel_dir): 195 if not os.path.isdir(native_sysroot): 199 if not os.path.isdir(rootfs_dir): 201 elif not os.path.isdir(kernel_dir): 203 elif not os.path.isdir(native_sysroot):
|
H A D | cp-noerror | 30 if os.path.isdir(dstname):
|
/openbmc/openbmc-test-automation/lib/ |
H A D | gen_plug_in.py | 48 if os.path.isdir(candidate_plug_in_base_path): 72 if os.path.isdir(candidate_plug_in_dir_path): 95 if not os.path.isdir(candidate_plug_in_dir_path):
|
/openbmc/openbmc/poky/scripts/esdk-tools/ |
H A D | wic | 165 if not options.vars_dir and (not native_sysroot or not os.path.isdir(native_sysroot)): 189 if rootfs_dir and not os.path.isdir(rootfs_dir): 191 if not os.path.isdir(bootimg_dir): 193 if not os.path.isdir(kernel_dir): 195 if not os.path.isdir(native_sysroot): 199 if not os.path.isdir(rootfs_dir): 201 elif not os.path.isdir(kernel_dir): 203 elif not os.path.isdir(native_sysroot):
|
/openbmc/linux/security/apparmor/ |
H A D | path.c | 94 int isdir = (flags & PATH_IS_DIR) ? 1 : 0; in d_namespace_path() local 95 int buflen = aa_g_path_max - isdir; in d_namespace_path() 171 if (!error && isdir && ((*name)[1] != '\0' || (*name)[0] != '/')) in d_namespace_path()
|
/openbmc/u-boot/lib/efi_loader/ |
H A D | efi_file.c | 30 int isdir; member 208 fh->isdir = is_dir(fh); in file_open() 210 fh->isdir = 1; in file_open() 409 if (fh->isdir) in efi_file_read() 468 if (fh->isdir) { in efi_file_getpos() 496 if (fh->isdir) { in efi_file_setpos() 567 if (fh->isdir) in efi_file_getinfo()
|
/openbmc/openbmc-build-scripts/scripts/ |
H A D | generate-html-index.py | 40 if os.path.isdir(os.path.join(i_dir_path, d)) 50 if not os.path.isdir(os.path.join(i_dir_path, f))
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | cachedpath.py | 86 def isdir(self, s): member in CachedPath 141 if self.isdir(os.path.join(top, name)): 201 is_dir = self.isdir(file)
|
H A D | reproducible.py | 82 if os.path.isdir(gitpath): 87 if os.path.isdir(gitpath):
|
H A D | path.py | 101 if os.path.isdir(src) and not len(os.listdir(src)): 125 if os.path.isdir(src): 232 is_dir = os.path.isdir(file)
|
H A D | copy_buildsystem.py | 134 if os.path.isdir(srcdir): 141 if os.path.isdir(appenddir): 271 if os.path.isdir(nativedir):
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/networkmanager/ |
H A D | networkmanager-fortisslvpn_1.4.0.bb | 31 if not os.path.isdir(pppd_plugin): 37 if os.path.isdir(os.path.join(pppd_plugin, f)):
|
/openbmc/openbmc/poky/scripts/lib/wic/ |
H A D | pluginbase.py | 46 if path not in cls._plugin_dirs and os.path.isdir(path): 53 if os.path.isdir(ppath):
|
/openbmc/openbmc/poky/scripts/lib/checklayer/ |
H A D | __init__.py | 100 if os.path.isdir(machine_conf): 105 if os.path.isdir(distro_conf): 139 if os.path.isdir(conf_dir): 147 if os.path.isdir(conf_dir):
|
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3/ |
H A D | create_manifest3.py | 75 ….isdir(value.replace('${libdir}',nativelibfolder+'/usr/lib')) or os.path.isdir(value.replace('${li…
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | checksum.py | 128 if os.path.isdir(f): 135 elif os.path.isdir(pth):
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | gitarchive.py | 36 if not os.path.isdir(path) or not os.listdir(path): 40 if not os.path.isdir(path): 167 if not os.path.isdir(data_dir):
|
/openbmc/linux/fs/fuse/ |
H A D | fuse_i.h | 1037 int fuse_open_common(struct inode *inode, struct file *file, bool isdir); 1049 void fuse_release_common(struct file *file, bool isdir); 1262 bool isdir); 1354 unsigned int open_flags, bool isdir); 1356 unsigned int open_flags, fl_owner_t id, bool isdir);
|
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/ |
H A D | cooker.py | 120 if os.path.isdir(layerpath): 295 if os.path.isdir(machine_path): 319 if os.path.isdir(distro_path):
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | runtime_test.py | 42 isdir = os.path.isdir(testexport_dir) 43 self.assertEqual(True, isdir, 'Failed to create testexport dir: %s' % testexport_dir)
|
/openbmc/openbmc/poky/meta/lib/oeqa/sdk/cases/ |
H A D | kmod.py | 37 self.assertTrue(os.path.isdir(sourcedir))
|
H A D | autotools.py | 35 self.assertTrue(os.path.isdir(dirs["source"]))
|
/openbmc/openbmc-tools/tof-voters/libvoters/subcmd/ |
H A D | dump-gerrit.py | 32 if os.path.exists(data_path) and not os.path.isdir(data_path):
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/inotify-tools/inotify-tools/ |
H A D | 0003-replace-stat64-lstat64-with-stat-lstat.patch | 44 static int isdir( char const * path ) { 92 int isdir(char const *path) {
|