| /openbmc/openbmc/poky/bitbake/lib/bb/tests/support/ |
| H A D | httpserver.py | 15 def server_start(self, root_dir, logger): argument 16 os.chdir(root_dir) 26 def __init__(self, root_dir, host='', port=0, logger=None): argument 27 self.root_dir = root_dir 35 print(self.root_dir) 36 if not os.path.exists(self.root_dir): 37 …self.logger.info("Not starting HTTPService for directory %s which doesn't exist" % (self.root_dir)) 43 …self.process = multiprocessing.Process(target=self.server.server_start, args=[self.root_dir, self.…
|
| /openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
| H A D | httpserver.py | 16 def server_start(self, root_dir, logger): argument 17 os.chdir(root_dir) 28 def __init__(self, root_dir, host='', port=0, logger=None): argument 29 self.root_dir = root_dir 38 if not os.path.exists(self.root_dir): 39 …self.logger.info("Not starting HTTPService for directory %s which doesn't exist" % (self.root_dir)) 45 …self.process = multiprocessing.Process(target=self.server.server_start, args=[self.root_dir, self.… 62 … self.logger.info("Started HTTPService for %s on %s:%s" % (self.root_dir, self.host, self.port))
|
| /openbmc/openbmc/poky/meta/recipes-gnome/gnome/gconf/ |
| H A D | create_config_directory.patch | 4 because ~/.config folder aka root_dir doesn't exist. 24 - else if (g_mkdir (root_dir, dir_mode) < 0) 25 + else if (g_mkdir_with_parents (root_dir, dir_mode) < 0)
|
| /openbmc/qemu/scripts/coverage/ |
| H A D | compare_gcov_json.py | 44 root_dir = json_file_path.absolute().parent 52 if resolved_path.is_relative_to(root_dir): 53 file_path = resolved_path.relative_to(root_dir)
|
| /openbmc/qemu/tests/qemu-iotests/tests/ |
| H A D | vvfat | 186 root_dir = fat16.read_root_directory() 188 self.assertEqual(len(root_dir), 13) # 12 + 1 special file 206 for entry in root_dir: 217 root_dir = fat16.read_root_directory() 223 self.assertEqual(root_dir[0].as_bytes(),
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/opencv/opencv/ |
| H A D | 0001-FROMLIST-Switch-to-static-instance-of-FastCV-on-Linux.patch | 18 function(download_fastcv root_dir) 26 @@ -16,14 +16,15 @@ function(download_fastcv root_dir)
|
| H A D | 0001-FROMLIST-FastCV-latest-libs-hash-update.patch | 18 function(download_fastcv root_dir)
|
| /openbmc/qemu/system/ |
| H A D | device_tree.c | 149 const char *root_dir = SYSFS_DT_BASEDIR; in read_fstree() local 152 if (strstr(dirname, root_dir) != dirname) { in read_fstree() 154 __func__, dirname, root_dir); in read_fstree()
|
| /openbmc/u-boot/fs/yaffs2/ |
| H A D | yaffs_guts.c | 289 return dev->root_dir; in yaffs_root() 1817 if (dev->root_dir) { in yaffs_alloc_empty_obj() 1818 obj->parent = dev->root_dir; in yaffs_alloc_empty_obj() 1820 &dev->root_dir->variant.dir_variant.children); in yaffs_alloc_empty_obj() 3277 if (in->fake && in != dev->root_dir && !force && !xmod) in yaffs_update_oh() 4216 obj == dev->unlinked_dir || obj == dev->root_dir); in yaffs_has_null_parent() 4259 while (parent != dev->root_dir && in yaffs_fix_hanging_objs() 4267 if (parent != dev->root_dir) in yaffs_fix_hanging_objs() 4559 dev->lost_n_found = dev->root_dir = NULL; in yaffs_create_initial_dir() 4565 dev->root_dir = in yaffs_create_initial_dir() [all …]
|
| H A D | yaffs_guts.h | 715 struct yaffs_obj *root_dir; member
|
| H A D | yaffsfs.c | 585 return dev->root_dir; in yaffsfs_FindRoot() 1460 else if (isDirectory && obj == obj->my_dev->root_dir) in yaffsfs_DoUnlink()
|
| /openbmc/qemu/tests/docker/ |
| H A D | docker.py | 96 def _copy_with_mkdir(src, root_dir, sub_path='.', name=None): argument 98 dest_dir = os.path.normpath("%s/%s" % (root_dir, sub_path))
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | fat16.py | 272 root_dir = self.read_sectors( 276 root_dir, self.boot_sector.root_dir_start()
|