Home
last modified time | relevance | path

Searched refs:base_path (Results 1 – 16 of 16) sorted by relevance

/openbmc/qemu/tests/qemu-iotests/tests/
H A Diothreads-stream41 for i, base_path, snap_path in ((0, base1_path, snap1_path),
43 iotests.qemu_img_create('-f', iotests.imgfmt, base_path, img_size)
44 iotests.qemu_img_create('-f', iotests.imgfmt, '-b', base_path,
47 iotests.qemu_io_log('-c', f'write 0 {img_size}', base_path)
/openbmc/linux/tools/perf/util/
H A Dpath.c59 bool is_directory(const char *base_path, const struct dirent *dent) in is_directory() argument
64 snprintf(path, sizeof(path), "%s/%s", base_path, dent->d_name); in is_directory()
71 bool is_executable_file(const char *base_path, const struct dirent *dent) in is_executable_file() argument
76 snprintf(path, sizeof(path), "%s/%s", base_path, dent->d_name); in is_executable_file()
H A Dpath.h14 bool is_directory(const char *base_path, const struct dirent *dent);
15 bool is_executable_file(const char *base_path, const struct dirent *dent);
/openbmc/qemu/tests/qemu-iotests/
H A D28032 with iotests.FilePath('base') as base_path , \
36 iotests.qemu_img_create('-f', iotests.imgfmt, base_path, '64M')
40 vm.add_blockdev('file,filename=%s,node-name=base-file' % (base_path))
H A D25535 iotests.FilePath('t.qcow2.base') as base_path, \
44 iotests.create_image(base_path, size)
52 vm.add_blockdev('file,filename=%s,node-name=base' % (base_path))
/openbmc/openbmc-test-automation/lib/
H A Dlogging_utils.py14 base_path = ( variable
20 sys.path.append(base_path + "data/")
H A Ddump_utils.py17 base_path = ( variable
23 sys.path.append(base_path + "data/")
H A Dpel_utils.py15 base_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) variable
16 sys.path.append(base_path + "/data/")
H A Dgen_call_robot.py20 base_path = ( variable
124 ROBOT_TEST_BASE_DIR_PATH = base_path
H A Dstate.py47 base_path = ( variable
53 sys.path.append(base_path + "data/")
H A Dobmc_boot_test.py38 base_path = ( variable
44 sys.path.append(base_path + "extended/")
/openbmc/openbmc/poky/meta/lib/patchtest/tests/
H A Dtest_mbox.py121 base_path = folders[0]
123 if base_path in project.paths:
129 if base_path.startswith('scripts'):
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/snapper/snapper/
H A D0002-Use-statvfs-instead-of-statvfs64.patch31 - SN_THROW(IOErrorException(sformat("statvfs64 failed path:%s errno:%d (%s)", base_path.c_str(),
34 + SN_THROW(IOErrorException(sformat("statvfs failed path:%s errno:%d (%s)", base_path.c_str(),
/openbmc/libcper/tests/
H A Dtest-utils.cpp161 fs::path base_path = pathObj.parent_path(); in schema_validate_from_file() local
163 fs::current_path(base_path); in schema_validate_from_file()
/openbmc/qemu/include/block/
H A Dblock-common.h561 char *path_combine(const char *base_path, const char *filename);
/openbmc/qemu/
H A Dblock.c192 char *path_combine(const char *base_path, const char *filename) in path_combine() argument
203 if (path_has_protocol(base_path)) { in path_combine()
204 protocol_stripped = strchr(base_path, ':'); in path_combine()
209 p = protocol_stripped ?: base_path; in path_combine()
211 p1 = strrchr(base_path, '/'); in path_combine()
215 p2 = strrchr(base_path, '\\'); in path_combine()
224 p1 = base_path; in path_combine()
229 len = p - base_path; in path_combine()
232 memcpy(result, base_path, len); in path_combine()