Home
last modified time | relevance | path

Searched refs:run (Results 101 – 125 of 3921) sorted by relevance

12345678910>>...157

/openbmc/linux/drivers/staging/media/atomisp/pci/
H A Dsh_css_metrics.c50 histogram->run[i] = 0; in clear_histogram()
69 if (histogram->run) in make_histogram()
71 histogram->run = kvmalloc(length * sizeof(*histogram->run), in make_histogram()
73 if (!histogram->run) in make_histogram()
141 isp_histogram->run[pc]++; in sh_css_metrics_sample_pcs()
152 sp_histogram->run[pc]++; in sh_css_metrics_sample_pcs()
/openbmc/linux/drivers/staging/media/rkvdec/
H A Drkvdec-h264.c634 struct rkvdec_h264_run *run) in assemble_hw_pps() argument
754 run->ref_buf[i] = buf; in lookup_ref_buf_idx()
760 struct rkvdec_h264_run *run) in assemble_hw_rps() argument
818 struct rkvdec_h264_run *run) in assemble_hw_scaling_list() argument
884 struct rkvdec_h264_run *run) in config_registers() argument
1144 struct rkvdec_h264_run run; in rkvdec_h264_run() local
1150 run.sps, run.decode_params->dpb); in rkvdec_h264_run()
1156 assemble_hw_pps(ctx, &run); in rkvdec_h264_run()
1157 lookup_ref_buf_idx(ctx, &run); in rkvdec_h264_run()
1159 config_registers(ctx, &run); in rkvdec_h264_run()
[all …]
/openbmc/u-boot/doc/
H A DREADME.nokia_rx5147 * run sercon - Use serial port for control
48 * run usbcon - Use usbtty for control
49 * run vgacon - Use framebuffer and HW keyboard for control (default)
51 * run sdboot - Boot from external SD card (see boot order)
52 * run emmcboot - Boot from internal eMMC memory (see boot order)
55 * run scriptload - Load boot script ${mmcscriptfile}
56 * run scriptboot - Run loaded boot script
57 * run kernload - Load kernel image ${mmckernfile}
58 * run initrdload - Load initrd image ${mmcinitrdfile}
59 * run kernboot - Boot loaded kernel image
[all …]
/openbmc/linux/tools/testing/selftests/kvm/
H A Dhardware_disable_test.c40 struct kvm_run *run = vcpu->run; in run_vcpu() local
45 __func__, run->exit_reason, in run_vcpu()
46 exit_reason_str(run->exit_reason)); in run_vcpu()
87 static void run_test(uint32_t run) in run_test() argument
103 pr_debug("%s: [%d] start vcpus\n", __func__, run); in run_test()
116 pr_debug("%s: [%d] all threads launched\n", __func__, run); in run_test()
121 TEST_ASSERT(false, "%s: [%d] child escaped the ninja\n", __func__, run); in run_test()
/openbmc/linux/Documentation/dev-tools/kunit/
H A Dstart.rst14 build the kernel, you can run KUnit.
20 can run kunit_tool:
24 ./tools/testing/kunit/kunit.py run
59 Selecting which tests to run
64 you can select which tests to run by:
72 If you didn't run ``kunit.py run`` yet, you can generate it by running:
99 ./tools/testing/kunit/kunit.py run \
103 For example, to run only ``FAT_FS`` and ``EXT4`` tests you can run::
105 ./tools/testing/kunit/kunit.py run \
169 will run when the module is loaded.
[all …]
/openbmc/linux/tools/testing/selftests/nolibc/
H A DMakefile160 all: run
184 run-libc-test: libc-test
186 $(Q)$(REPORT) $(CURDIR)/run.out
189 run-nolibc-test: nolibc-test
191 $(Q)$(REPORT) $(CURDIR)/run.out
194 run-user: nolibc-test
196 $(Q)$(REPORT) $(CURDIR)/run.out
210 run: kernel target
212 $(Q)$(REPORT) $(CURDIR)/run.out
232 $(call QUIET_CLEAN, run.out)
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/openvpn/openvpn/
H A Dopenvpn18 start-stop-daemon --start --quiet --pidfile /var/run/openvpn.$NAME.pid \
20 --daemon --writepid /var/run/openvpn.$NAME.pid \
58 for PIDFILE in `ls /var/run/openvpn.*.pid 2> /dev/null`; do
65 if test -e /var/run/openvpn.$2.pid ; then
66 PIDFILE=`ls /var/run/openvpn.$2.pid 2> /dev/null`
80 for PIDFILE in `ls /var/run/openvpn.*.pid 2> /dev/null`; do
/openbmc/linux/tools/testing/selftests/ftrace/
H A DREADME10 At first, you need to be the root user to run this script.
11 To run all testcases:
15 To run specific testcases:
19 Or you can also run testcases under given directory:
31 * Take care with side effects as the tests are run with root privilege.
33 * The tests should not run for a long period of time (more than 1 min.)
38 * The test cases should run on dash (busybox shell) for testing on
41 * Note that the tests are run with "set -e" (errexit) option. If any
64 * UNTESTED: The test was not run, currently just a placeholder.
74 You can also run samples as below:
/openbmc/linux/tools/testing/selftests/kvm/s390x/
H A Ddebug_test.c29 new_psw[0] = (*vcpu)->run->psw_mask; in test_step_int_1()
50 TEST_ASSERT_EQ(vcpu->run->psw_mask, new_psw[0]); in test_step_int()
51 TEST_ASSERT_EQ(vcpu->run->psw_addr, new_psw[1]); in test_step_int()
88 TEST_ASSERT_EQ(vcpu->run->s390_sieic.icptcode, ICPT_INSTRUCTION); in test_step_pgm_diag()
89 TEST_ASSERT_EQ(vcpu->run->s390_sieic.ipa & 0xff00, IPA0_DIAG); in test_step_pgm_diag()
93 TEST_ASSERT_EQ(vcpu->run->psw_mask, new_psw[0]); in test_step_pgm_diag()
94 TEST_ASSERT_EQ(vcpu->run->psw_addr, new_psw[1]); in test_step_pgm_diag()
/openbmc/qemu/tests/tcg/multiarch/
H A Dmunmap-pthread.c14 volatile bool *run = arg; in thread_mmap_munmap() local
18 while (*run) { in thread_mmap_munmap()
42 volatile bool run = true; in main() local
50 ret = pthread_create(&mmap_munmap, NULL, thread_mmap_munmap, (void *)&run); in main()
60 run = false; in main()
/openbmc/qemu/tests/tcg/nios2/
H A DMakefile.target4 run-signals: signals
6 run-plugin-signals-with-%:
8 run-linux-test: linux-test
10 run-plugin-linux-test-with-%:
/openbmc/docs/testing/
H A Drun-test-docker.md49 3. Execute docker run to initiate BMC code update.
54 docker run --user root \
65 Example to run BMC code update using witherspoon-20170614071422.all.tar image
66 file from HOME directory of the system where docker run command is executed:
69 docker run --user root \
91 1. Execute docker run to execute OpenBMC automation test cases.
98 docker run --user root \
107 ${HOME}/openbmc-build-scripts/scripts/run-robot.sh
110 Example to run entire test suite:
113 docker run --user root \
[all …]
/openbmc/linux/arch/arm64/kvm/
H A Dpsci.c185 memset(&vcpu->run->system_event, 0, sizeof(vcpu->run->system_event)); in kvm_prepare_system_event()
186 vcpu->run->system_event.type = type; in kvm_prepare_system_event()
187 vcpu->run->system_event.ndata = 1; in kvm_prepare_system_event()
188 vcpu->run->system_event.data[0] = flags; in kvm_prepare_system_event()
189 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT; in kvm_prepare_system_event()
210 struct kvm_run *run = vcpu->run; in kvm_psci_system_suspend() local
212 memset(&run->system_event, 0, sizeof(vcpu->run->system_event)); in kvm_psci_system_suspend()
213 run->system_event.type = KVM_SYSTEM_EVENT_SUSPEND; in kvm_psci_system_suspend()
214 run->exit_reason = KVM_EXIT_SYSTEM_EVENT; in kvm_psci_system_suspend()
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dsuspend.py15 (status, output) = self.target.run('date')
19 t_thread = threading.Thread(target=self.target.run, args=("ping 8.8.8.8",))
23 status, output = self.target.run('pidof ping')
24 self.target.run('kill -9 %s' % output)
28 (status, output) = self.target.run('sudo rtcwake -m mem -s 10')
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/openbox/files/
H A D0001-openbox-xdg-autostart-convert-to-python3.patch73 def run(self, envs):
81 - print "This tool will run xdg autostart .desktop files"
84 - print " --list Show a list of the files which would be run"
85 - print " Files which would be run are marked with an asterix"
86 - print " symbol [*]. For files which would not be run,"
93 - print "limit themselves to certain environments will be run."
104 + print("This tool will run xdg autostart .desktop files")
107 + print(" --list Show a list of the files which would be run")
108 + print(" Files which would be run are marked with an asterix")
109 + print(" symbol [*]. For files which would not be run,")
[all …]
/openbmc/linux/tools/testing/selftests/x86/
H A Dsyscall_numbering.c88 #define run(fmt, ...) msg(RUN, fmt, ## __VA_ARGS__) macro
231 run("Checking for x32 by calling x32 getpid()\n"); in test_x32()
253 run("Checking some common syscalls as 64 bit\n"); in test_syscalls_common()
261 run("Checking out of range system calls\n"); in test_syscalls_common()
280 run("Checking x32 syscalls as 64 bit\n"); in test_syscalls_with_x32()
283 run("Checking some common syscalls as x32\n"); in test_syscalls_with_x32()
287 run("Checking some x32 syscalls as x32\n"); in test_syscalls_with_x32()
291 run("Checking some 64-bit syscalls as x32\n"); in test_syscalls_with_x32()
299 run("Checking for absence of x32 system calls\n"); in test_syscalls_without_x32()
318 run("Checking system calls with msb = %d (0x%x)\n", in test_syscall_numbering()
[all …]
/openbmc/linux/tools/testing/selftests/kvm/x86_64/
H A Dxcr0_cpuid_test.c103 struct kvm_run *run; in main() local
110 run = vcpu->run; in main()
118 TEST_ASSERT(run->exit_reason == KVM_EXIT_IO, in main()
120 run->exit_reason, in main()
121 exit_reason_str(run->exit_reason)); in main()
/openbmc/openbmc-tools/dbus-vis/
H A Drenderer.js26 this.run();
31 this.run = this.run.bind(this);
48 run() { method in Renderer
52 window.requestAnimationFrame(this.run);
/openbmc/openbmc/meta-security/dynamic-layers/meta-python/recipes-security/fail2ban/files/
H A Dinitd22 if [ ! -d /var/run/fail2ban ]; then
23 mkdir /var/run/fail2ban
24 chmod 0755 /var/run/fail2ban
31 socket=${SOCKET-/var/run/fail2ban/fail2ban.sock}
32 pidfile=${PIDFILE-/var/run/fail2ban/fail2ban.pid}
/openbmc/linux/arch/riscv/include/asm/
H A Dkvm_vcpu_sbi.h43 int (*handler)(struct kvm_vcpu *vcpu, struct kvm_run *run,
50 void kvm_riscv_vcpu_sbi_forward(struct kvm_vcpu *vcpu, struct kvm_run *run);
52 struct kvm_run *run,
54 int kvm_riscv_vcpu_sbi_return(struct kvm_vcpu *vcpu, struct kvm_run *run);
61 int kvm_riscv_vcpu_sbi_ecall(struct kvm_vcpu *vcpu, struct kvm_run *run);
/openbmc/u-boot/cmd/aspeed/nettest/
H A Dncsi.c148 eng->run.NCSI_RxTimeOutScale = 1; in NCSI_Struct_Initialize_SLT()
175 eng->run.ncsi_tdes_base = eng->run.tdes_base;//base for read/write in NCSI_Struct_Initialize_SLT()
180 eng->run.ncsi_rdes_base = eng->run.rdes_base;//base for read/write in NCSI_Struct_Initialize_SLT()
188 eng->run.ncsi_rdes_base += 16; in NCSI_Struct_Initialize_SLT()
197 eng->run.ncsi_rdes_base = eng->run.rdes_base;//base for read/write in NCSI_Struct_Initialize_SLT()
374 eng->run.ncsi_rdes_base = eng->run.rdes_base;//base for read/write in NCSI_Rx_SLT()
378 eng->run.ncsi_rdes_base += 16; in NCSI_Rx_SLT()
831 if ( !eng->run.IO_MrgChk ) { in phy_ncsi()
846 if ( !eng->run.IO_MrgChk ) { in phy_ncsi()
873 if ( !eng->run.IO_MrgChk ) { in phy_ncsi()
[all …]
/openbmc/linux/tools/testing/selftests/kvm/lib/x86_64/
H A Ducall.c47 struct kvm_run *run = vcpu->run; in ucall_arch_get_ucall() local
49 if (run->exit_reason == KVM_EXIT_IO && run->io.port == UCALL_PIO_PORT) { in ucall_arch_get_ucall()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/lmbench/lmbench/
H A Drename-line-binary.patch9 util-linux-ng. script/config-run is also modified (patch) to call lm_line
15 scripts/config-run | 2 +-
18 diff --git a/scripts/config-run b/scripts/config-run
20 --- a/scripts/config-run
21 +++ b/scripts/config-run
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dtestsdk.bbclass7 # To run SDK tests, run the commands:
11 # To run eSDK tests, run the commands:
28 c.run(d)
30 bb.warn('No tests were run because %s did not define a class' % name)
/openbmc/openbmc-build-scripts/jenkins/
H A DREADME.md9 | CI-MISC/ci-meta | jenkins/run-meta-ci | Deprecated |
10 | CI-MISC/ci-openbmc-build-scripts | jenkins/run-build-script-ci | |
11 | CI-MISC/ci-repository-ppc64le | run-unit-test-docker.sh | |
14 | CI-MISC/run-ci-in-qemu | run-qemu-robot-test.sh | |
16 | ci-repository | run-unit-test-docker.sh | |

12345678910>>...157