/openbmc/qemu/tests/qemu-iotests/tests/ |
H A D | iothreads-stream | 41 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 D | path.c | 59 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 D | path.h | 14 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 D | 280 | 32 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 D | 255 | 35 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 D | logging_utils.py | 14 base_path = ( variable 20 sys.path.append(base_path + "data/")
|
H A D | dump_utils.py | 17 base_path = ( variable 23 sys.path.append(base_path + "data/")
|
H A D | pel_utils.py | 15 base_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) variable 16 sys.path.append(base_path + "/data/")
|
H A D | gen_call_robot.py | 20 base_path = ( variable 124 ROBOT_TEST_BASE_DIR_PATH = base_path
|
H A D | state.py | 47 base_path = ( variable 53 sys.path.append(base_path + "data/")
|
H A D | obmc_boot_test.py | 38 base_path = ( variable 44 sys.path.append(base_path + "extended/")
|
/openbmc/openbmc/poky/meta/lib/patchtest/tests/ |
H A D | test_mbox.py | 121 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 D | 0002-Use-statvfs-instead-of-statvfs64.patch | 31 - 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 D | test-utils.cpp | 161 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 D | block-common.h | 561 char *path_combine(const char *base_path, const char *filename);
|
/openbmc/qemu/ |
H A D | block.c | 192 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()
|