Home
last modified time | relevance | path

Searched +full:run +full:- +full:time (Results 1 – 25 of 1390) sorted by relevance

12345678910>>...56

/OK3568_Linux_fs/kernel/tools/perf/scripts/python/
H A Dstat-cpi.py1 # SPDX-License-Identifier: GPL-2.0
10 def get_key(time, event, cpu, thread): argument
11 return "%d-%s-%d-%d" % (time, event, cpu, thread)
13 def store_key(time, cpu, thread): argument
14 if (time not in times):
15 times.append(time)
23 def store(time, event, cpu, thread, val, ena, run): argument
24 #print("event %s cpu %d, thread %d, time %d, val %d, ena %d, run %d" %
25 # (event, cpu, thread, time, val, ena, run))
27 store_key(time, cpu, thread)
[all …]
/OK3568_Linux_fs/kernel/Documentation/scheduler/
H A Dsched-rt-group.rst2 Real-Time group scheduling
12 2.1 System-wide settings
28 resolution, or the time it takes to handle the budget refresh itself.
33 are real-time processes).
40 ---------------
43 the amount of bandwidth (eg. CPU time) being constant. In order to schedule
45 of the CPU time available. Without a minimum guarantee a realtime group can
50 ----------------
52 CPU time is divided by means of specifying how much time can be spent running
53 in a given period. We allocate this "run time" for each realtime group which
[all …]
/OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/
H A DREADME1 Version 5.1.3 -- 2011-01-13
18 3. Do "Run" to run the system test; "Run graphics" to run the graphics
19 tests; "Run gindex" to run both.
21 You will need perl, as Run is written in perl.
47 a space, it should now run (previously it failed).
59 * In pgms/tst.sh, changed "sort -n +1" to "sort -n -k 1"
75 why runlevel 1 produced odd results -- runlevel 1 doesn't set LANG, and
76 hence reverts to ASCII, whereas most people use a UTF-8 encoding, which is
86 I also added the "grep" and "sysexec" tests. These are non-index tests,
89 these useful. They aren't in any of the main test groups; do "Run grep
[all …]
H A DWRITING_TESTS5 a monster array in the Run script, which specifics (among other things) the
18 In Run, all tests are named in the "$testList" array. This names the
29 * "repeat": number of passes to run; either 'short' (the default),
32 configured at the top of the script or by the "-i" flag. 'single'
33 means just run one pass; this should be used for test which do their
34 own multi-pass handling internally.
35 * "stdout": non-0 to add the test's stdout to the log file; defaults to 1.
50 TIME|seconds
60 -----
65 the run
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/gprof.html/
H A DSampling-Error.html1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
3 <!-- This file documents the gprof profiler of the GNU system.
5 Copyright (C) 1988-2021 Free Software Foundation, Inc.
10 with no Invariant Sections, with no Front-Cover Texts, and with no
11 Back-Cover Texts. A copy of the license is included in the
13 -->
14 <!-- Created by GNU Texinfo 5.1, http://www.gnu.org/software/texinfo/ -->
20 <meta name="resource-type" content="document">
23 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
30 <!--
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/gprof.html/
H A DSampling-Error.html1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
3 <!-- This file documents the gprof profiler of the GNU system.
5 Copyright (C) 1988-2021 Free Software Foundation, Inc.
10 with no Invariant Sections, with no Front-Cover Texts, and with no
11 Back-Cover Texts. A copy of the license is included in the
13 -->
14 <!-- Created by GNU Texinfo 5.1, http://www.gnu.org/software/texinfo/ -->
20 <meta name="resource-type" content="document">
23 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
30 <!--
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/
H A Dsystemd.py2 # SPDX-License-Identifier: MIT
6 import time
18 status, output = self.target.run(command)
21 cmd = 'SYSTEMD_BUS_TIMEOUT=240s systemctl status --full %s' % target
22 message += self.target.run(cmd)[1]
32 -args, an optional argument pass through argument
33 -l_match_units, an optional list of units to filter the output
35 -string output of the journalctl command
37 -AssertionError, on remote commands that fail
38 -ValueError, on a journalctl call with filtering by l_match_units that
[all …]
H A Drpm.py2 # SPDX-License-Identifier: MIT
7 import time
20 status, output = self.target.run('rpm --help')
26 status, output = self.target.run('ls /var/lib/rpm/')
29 status, output = self.target.run('rpm -q rpm')
37 status, output = self.target.run('id -u %s' % u)
39 status, output = self.target.run('useradd %s' % u)
44 status, output = self.target.run('su -c id %s' % u)
48 status, output = self.target.run('su -c "rpm -qa" %s ' % u)
49 msg = 'status: %s. Cannot run rpm -qa: %s' % (status, output)
[all …]
H A Doe_syslog.py2 # SPDX-License-Identifier: MIT
9 import time
14 @OEHasPackage(["busybox-syslog", "sysklogd", "rsyslog", "syslog-ng"])
16 status, output = self.target.run(self.tc.target_cmds['ps'])
20 hasdaemon = "syslogd" in output or "syslog-ng" in output or "svlogd" in output
27 status, err_output = self.target.run('kill -0 %s' %pid)
35 status, pid = self.target.run('pidof %s' %name)
48 status, output = self.target.run(restart_cmd)
57 timeout = time.time() + 30
61 while time.time() < timeout:
[all …]
H A Drtc.py11 if self.tc.td.get('VIRTUAL-RUNTIME_init_manager') == 'systemd':
12 self.logger.debug('Stopping systemd-timesyncd daemon')
13 self.target.run('systemctl disable --now --runtime systemd-timesyncd')
16 if self.tc.td.get('VIRTUAL-RUNTIME_init_manager') == 'systemd':
17 self.logger.debug('Starting systemd-timesyncd daemon')
18 self.target.run('systemctl enable --now --runtime systemd-timesyncd')
20 @skipIfFeature('read-only-rootfs',
21 'Test does not work with read-only-rootfs in IMAGE_FEATURES')
25 (status, output) = self.target.run('hwclock -r')
26 self.assertEqual(status, 0, msg='Failed to get RTC time, output: %s' % output)
[all …]
/OK3568_Linux_fs/kernel/tools/testing/kunit/
H A Dkunit.py2 # SPDX-License-Identifier: GPL-2.0
13 import time
54 request: KunitConfigRequest) -> KunitResult:
57 config_start = time.time()
59 config_end = time.time()
63 config_end - config_start)
66 config_end - config_start)
69 request: KunitBuildRequest) -> KunitResult:
72 build_start = time.time()
77 build_end = time.time()
[all …]
/OK3568_Linux_fs/kernel/Documentation/dev-tools/kunit/
H A Dindex.rst1 .. SPDX-License-Identifier: GPL-2.0
4 KUnit - Unit Testing for the Linux Kernel
12 kunit-tool
28 writing unit tests. Tests written against KUnit will run on kernel boot if
29 built-in, or when loaded if built as a module. These tests write out results to
33 :doc:`kunit_tool <kunit-tool>`, which builds a `User Mode Linux
34 <http://user-mode-linux.sourceforge.net>`_ kernel, runs it, and parses the test
51 KUnit tests can be run on most architectures, and most tests are architecture
52 independent. All built-in KUnit tests run on kernel startup. Alternatively,
53 KUnit and KUnit tests can be built as modules and tests will run when the test
[all …]
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.trace4 # SPDX-License-Identifier: GPL-2.0+
7 Tracing in U-Boot
10 U-Boot supports a simple tracing feature which allows a record of excecution
12 main use for this is to profile boot time.
16 --------
18 The trace feature uses GCC's instrument-functions feature to trace all
29 Quick-start using Sandbox
30 -------------------------
32 Sandbox is a build of U-Boot that can run under Linux so it is a convenient
45 Build sandbox U-Boot with tracing enabled:
[all …]
H A DREADME.POST1 Power-On-Self-Test support in U-Boot
2 ------------------------------------
4 This project is to support Power-On-Self-Test (POST) in U-Boot.
6 1. High-level requirements
11 and running Power-On-Self-Test in U-Boot. This framework shall
21 The framework shall allow run-time configuration of the lists
22 of tests running on normal/power-fail booting.
31 3) The following POST tests shall be developed for MPC823E-based
51 enhancing U-Boot/Linux to provide a common framework for running POST
54 2.1. Hardware-independent POST layer
[all …]
/OK3568_Linux_fs/kernel/drivers/powercap/
H A Didle_inject.c1 // SPDX-License-Identifier: GPL-2.0
8 * states for a specified fraction of time over a specified period.
13 * All of the kthreads used for idle injection are created at init time.
19 * The idle + run duration is specified via separate helpers and that allows
34 * It is up to the user of this framework to provide a lock for higher-level
51 * struct idle_inject_thread - task on/off switch structure
53 * @should_run: whether or not to run the task (for the smpboot kthread API)
61 * struct idle_inject_device - idle injection data
63 * @idle_duration_us: duration of CPU idle time to inject
64 * @run_duration_us: duration of CPU run time to allow
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dsshcontrol.py4 # SPDX-License-Identifier: MIT
12 import time
25 "bufsize": -1,
49 self.starttime = time.time()
55 while time.time() < endtime and not eof:
63 data = data.decode("utf-8")
66 endtime = time.time() + timeout
73 time.sleep(5)
78 …lastline = "\nProcess killed - no output for %d seconds. Total running time: %d seconds." % (timeo…
88 def run(self, command, timeout=None, logfile=None): member in SSHProcess
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/target/
H A Dssh.py4 # SPDX-License-Identifier: MIT
8 import time
23 fileHandler = logging.FileHandler(filePath, 'w', 'utf-8')
37 '-o', 'ServerAliveCountMax=2',
38 '-o', 'ServerAliveInterval=30',
39 '-o', 'UserKnownHostsFile=/dev/null',
40 '-o', 'StrictHostKeyChecking=no',
41 '-o', 'LogLevel=ERROR'
43 self.ssh = ['ssh', '-l', self.user ] + ssh_options
46 self.ssh = self.ssh + [ '-p', port ]
[all …]
/OK3568_Linux_fs/kernel/tools/power/pm-graph/
H A Dsleepgraph.83 sleepgraph \- Suspend/Resume timing analysis
11 in optimizing their linux stack's suspend/resume time. Using a kernel
16 taking the most time in suspend/resume.
21 Generates output files in subdirectory: suspend-yymmdd-HHMMSS
27 \fB-h\fR
30 \fB-v\fR
33 \fB-verbose\fR
36 \fB-config \fIfile\fR
39 \fB-m \fImode\fR
42 \fB-o \fIname\fR
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/glibc/
H A Drun-ptest2 # ptest script for glibc - to run time related tests to
4 # Run with 'ptest-runner glibc-tests'
8 if [ $retcode -eq 0 ]
10 elif [ $retcode -eq 77 ]
16 # Allow altering time on the target
19 tst_time64=$(ls -r ${PWD}/tests/glibc-ptest/*-time64)
21 # Remove '-time64' suffix - those tests are also time
23 tst_time_tmp=$(sed -e "s/-time64$//" <<< ${tst_time64})
25 # Run tests supporting only 32 bit time
32 # Run tests supporting only 64 bit time
/OK3568_Linux_fs/kernel/tools/perf/Documentation/
H A Dperf-script.txt1 perf-script(1)
5 ----
6 perf-script - Read perf.data (created by perf record) and display trace output
9 --------
12 'perf script' [<options>] record <script> [<record-options>] <command>
13 'perf script' [<options>] report <script> [script-args]
14 'perf script' [<options>] <script> <required-script-args> [<record-options>] <command>
15 'perf script' [<options>] <top-script> [script-args]
18 -----------
26 You can also run a set of pre-canned scripts that aggregate and
[all …]
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dum_timetravel.h21 * struct um_timetravel_msg - UM time travel message
25 * This is the message passed between the host (user-mode Linux instance)
30 * calendar, and then wait for its turn until it can run, etc. Note
41 * @seq: sequence number for the message - shall be reflected in
48 * @time: time in nanoseconds
50 __u64 time; member
54 * enum um_timetravel_ops - Operation codes
59 * this usually doesn't carry any data in the 'time' field
65 * @UM_TIMETRAVEL_START: initialize the connection, the time
72 * @UM_TIMETRAVEL_REQUEST: request to run at the given time
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/pam/libpam/
H A D0001-run-xtests.sh-check-whether-files-exist.patch4 Subject: [PATCH] run-xtests.sh: check whether files exist
7 # ./run-xtests.sh . tst-pam_access1
9 PASS: tst-pam_access1
10 mv: cannot stat '/etc/security/opasswd-pam-xtests': No such file or directory
13 0 tests not run
16 Upstream-Status: Backport [https://github.com/linux-pam/linux-pam/commit/e8e8ccfd57e0274b431bc5717b…
18 Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
19 ---
20 xtests/run-xtests.sh | 20 +++++++++++++-------
21 1 file changed, 13 insertions(+), 7 deletions(-)
[all …]
/OK3568_Linux_fs/kernel/Documentation/power/
H A Druntime_pm.rst5 (C) 2009-2011 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
18 put their PM-related work items. It is strongly recommended that pm_wq be
20 them to be synchronized with system-wide power transitions (suspend to RAM,
53 The ->runtime_suspend(), ->runtime_resume() and ->runtime_idle() callbacks
57 1. PM domain of the device, if the device's PM domain object, dev->pm_domain,
60 2. Device type of the device, if both dev->type and dev->type->pm are present.
62 3. Device class of the device, if both dev->class and dev->class->pm are
65 4. Bus type of the device, if both dev->bus and dev->bus->pm are present.
69 dev->driver->pm directly (if present).
73 and bus type. Moreover, the high-priority one will always take precedence over
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/contrib/
H A Dbbparse-torture.py5 # SPDX-License-Identifier: MIT
14 import time
27 try_unlink("bitbake-cookerdaemon.log")
52 print("Calibrating wait time...")
55 start_time = time.monotonic()
56 r = subprocess.run(["bitbake", "-p"])
57 max_wait_time = time.monotonic() - start_time
60 print("Calibration run exited with %d" % r.returncode)
63 print("Maximum wait time is %f seconds" % max_wait_time)
68 print("Run #%d" % run_num)
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dladspa.h4 Copyright (C) 2000-2002 Richard W.E. Furse, Paul Barton-Davis,
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
38 on the Linux platform at this time. This API (`The Linux Audio
55 control data and each plugin is `run' for a `block' corresponding
56 to a short time interval measured in samples. Audio data is
60 single value at the start of a call to the `run()' or `run_adding()'
64 `connect_port()' function below) before it is asked to run.
72 This API contains very limited error-handling. */
97 real-time dependency (e.g. listens to a MIDI device) and so its
105 hosts to use the plugin to process audio `in-place.' */
[all …]

12345678910>>...56