Home
last modified time | relevance | path

Searched full:path (Results 1 – 25 of 35) sorted by relevance

12

/kvm-unit-tests/scripts/
H A Dpretty_print_stacks.py29 # 0x004002be: start64 at path/to/kvm-unit-tests-repo-worktree/x86/cstart64.S:208
30 …# (inlined by) test_ept_violation at path/to/kvm-unit-tests-repo-worktree/x86/vmx_tests.c:…
46 head, path, maybeline, line, tail = m.groups()
47 path = os.path.relpath(os.path.realpath(path), start=os.path.realpath(os.getcwdb()))
48 puts('%s at %s:%s%s\n' % (head.decode(), path.decode(), maybeline.decode(), tail.decode()))
52 lines = open(path).readlines()
H A Druntime.bash141 # but each check parameter needs to be of the form <path>=<value>
147 path=${check_param%%=*}
149 if ! [ -f "$path" ] || [ "$(cat $path)" != "$value" ]; then
150 print_result "SKIP" $testname "" "$path not equal to $value"
H A Dcheck-patch.py13 import os.path
22 reponame = os.path.basename(cwd)
H A Darch-run.bash131 -chardev socket,id=mon,path=${src_qmp},server=on,wait=off \
174 -chardev socket,id=mon,path=${dst_qmp},server=on,wait=off \
314 "$@" -chardev socket,id=mon,path=${qmp},server=on,wait=off \
346 local save_path=$PATH
351 export PATH=$PATH:/usr/libexec
361 echo "You can set a custom location by using the QEMU=<path> environment variable." >&2
365 export PATH=$save_path
381 echo "You can set a custom location by using the KVMTOOL=<path> environment variable." >&2
H A Dget_maintainer.pl262 'mpath|maintainer-path=s' => \$maintainer_path,
379 my $path = "${lk_path}MAINTAINERS";
381 $path = $maintainer_path;
383 …$path =~ s@^~([^/]*)@ $1 ? (getpwnam($1))[7] : ( $ENV{HOME} || $ENV{LOGDIR} || (getpwuid($<))[7])@…
386 if (-d $path) {
387 $path .= '/' if ($path !~ m@/$@);
392 }, "$path");
394 opendir(DIR, "$path") or die $!;
398 push(@mfiles, "$path$file") if ($file !~ /^\./);
401 } elsif (-f "$path") {
[all …]
/kvm-unit-tests/lib/libfdt/
H A Dfdt_overlay.c21 * property) instead of a path (target-path property).
48 * @pathp: pointer which receives the path of the target (or NULL)
52 * done (through a phandle or a path)
62 const char *path = NULL; in overlay_get_target() local
70 /* no phandle, try path */ in overlay_get_target()
72 /* And then a path based lookup */ in overlay_get_target()
73 path = fdt_getprop(fdto, fragment, "target-path", &path_len); in overlay_get_target()
74 if (path) in overlay_get_target()
75 ret = fdt_path_offset(fdt, path); in overlay_get_target()
83 * target-path property in a node that contains a in overlay_get_target()
[all …]
H A Dfdt_ro.c250 int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen) in fdt_path_offset_namelen() argument
252 const char *end = path + namelen; in fdt_path_offset_namelen()
253 const char *p = path; in fdt_path_offset_namelen()
259 if (*path != '/') { in fdt_path_offset_namelen()
260 const char *q = memchr(path, '/', end - p); in fdt_path_offset_namelen()
295 int fdt_path_offset(const void *fdt, const char *path) in fdt_path_offset() argument
297 return fdt_path_offset_namelen(fdt, path, strlen(path)); in fdt_path_offset()
579 if (p > 1) /* special case so that root path is "/", not "" */ in fdt_get_path()
H A Dlibfdt.h38 /* FDT_ERR_BADPATH: Function was passed a badly formatted path
40 * absolute path) */
459 * such as a full path.
494 * fdt_path_offset_namelen - find a tree node by its full path
496 * @path: full path of the node to locate
497 * @namelen: number of characters of path to consider
500 * characters of path as the path name.
505 int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen);
509 * fdt_path_offset - find a tree node by its full path
511 * @path: full path of the node to locate
[all …]
/kvm-unit-tests/ci/
H A Dcirrus-ci-macos-i386.yml13 - export PATH="/opt/homebrew/opt/gnu-getopt/bin:$PATH"
40 path: build/logs/*.log
H A Dcirrus-ci-macos-x86-64.yml13 - export PATH="/opt/homebrew/opt/gnu-getopt/bin:$PATH"
44 path: build/logs/*.log
H A Dcirrus-ci-fedora.yml77 path: build/logs/*.log
/kvm-unit-tests/x86/efi/
H A DREADME.md28 please install UEFI firmware to this path, or specify the correct path through
31 EFI_UEFI=/path/to/OVMF.fd ./x86/efi/run ./x86/msr.efi
H A Drun24 echo "Please install the UEFI firmware to this path"
25 echo "Or specify the correct path with the env variable EFI_UEFI"
/kvm-unit-tests/s390x/
H A Dcpu.S37 /* Failure path */
40 /* Success path */
/kvm-unit-tests/
H A DREADME.macOS.md27 export PATH="/usr/local/opt/gnu-getopt/bin:$PATH"
H A Drun_tests.sh33 QEMU Path to QEMU binary for ARCH-run
40 KVMTOOL Path to kvmtool binary for ARCH-run
50 echo "Enhanced getopt is not available, add it to your PATH?"
H A DREADME.md72 To select a specific QEMU binary though, specify the QEMU=path/to/binary
93 To select a kvmtool binary, specify the KVMTOOL=path/to/binary environment
/kvm-unit-tests/docs/
H A Dunittests.txt118 check = <path>=<value>
122 parameter needs to be of the form <path>=<value>
124 The path and value cannot contain space, =, or shell wildcard characters.
/kvm-unit-tests/riscv/
H A Dunittests.cfg16 # Set $FIRMWARE_OVERRIDE to /path/to/firmware to select the SBI implementation.
/kvm-unit-tests/lib/
H A Ddevicetree.c275 p = fdt_getprop(fdt, node, "stdout-path", &len); in dt_get_default_console_node()
277 p = fdt_getprop(fdt, node, "linux,stdout-path", &len); in dt_get_default_console_node()
341 /* Sanity check the path. */ in dt_init()
H A Ddevicetree.h214 * dt_get_default_console_node gets the node of the path stored in
215 * /chosen/stdout-path (or the deprecated /chosen/linux,stdout-path)
/kvm-unit-tests/x86/
H A Drun37 pc_testdev="-device testdev,chardev=testlog -chardev file,id=testlog,path=msr.out"
H A DREADME15 -chardev file,id=testlog,path=msr.out \
/kvm-unit-tests/riscv/efi/
H A Drun32 echo "Please specify the path with the env variable EFI_UEFI"
/kvm-unit-tests/arm/efi/
H A Drun42 echo "Please specify the path with the env variable EFI_UEFI"

12