Home
last modified time | relevance | path

Searched refs:line (Results 1 – 18 of 18) sorted by relevance

/hafnium/build/image/
A Dcheck_elf.py47 for line in objdump_stdout:
49 if re.match(REGEX_ERET, line):
53 if re.match(REGEX_DSB_NSH, line):
58 if re.match(REGEX_ISB, line):
88 for line in nm_stdout:
89 line = line.split()
90 if len(line) != COLUMN_COUNT:
94 if line[COLUMN_IDX_NAME] == "image_size":
95 if line[COLUMN_IDX_TYPE] != "A":
98 image_size = int(line[COLUMN_IDX_VALUE], 16)
/hafnium/build/
A Dparse_strace_open.py38 def get_unfinished(line): argument
43 return line[:pos]
45 def get_resumed(line): argument
46 pos = line.find(" resumed>")
60 for line in lines:
61 pid = int(line.split()[0])
63 resumed = get_resumed(line)
80 finished += [ line ]
109 for line in lines:
111 line = line.split()
[all …]
A Dcheck_platform_exists.py30 for line in project_file:
31 platforms += reg.findall(line)
/hafnium/inc/hf/
A Dassert.h24 static inline void assert_impl(bool cond, const char *file, uint32_t line, in assert_impl() argument
36 panic("ASSERT: %s:%d:%s\n", file, line, expr); in assert_impl()
38 panic("ASSERT: %s:%d\n", file, line); in assert_impl()
/hafnium/test/vmapi/primary_with_secondaries/
A Dffa_console_log.c87 for (size_t line = 0; line < num_lines; line++) { in print_entry() local
88 CONSOLE_LOG5("print: core ", vcpu, " line ", line, "\n"); in print_entry()
/hafnium/build/toolchain/
A Dgen_offset_size_header.py45 for line in stdout:
46 for match in regex.findall(line):
/hafnium/test/hftest/
A Dhftest.py713 line = ser.readline().decode('utf-8')
714 if len(line) == 0:
721 f.write(line)
726 elif HFTEST_CTRL_FINISHED in line:
736 line = ser.readline().decode('utf-8')
737 if len(line) == 0:
788 for line in lines_to_process:
789 match = HFTEST_CTRL_JSON_REGEX.search(line)
791 line = line[match.end():]
792 if line.startswith(HFTEST_LOG_PREFIX):
[all …]
/hafnium/
A DCONTRIBUTING.md25 line, using your real name and email address. The names in the
27 to the commit, they must also add their own `Signed-off-by:` line. By adding
28 this line the contributor certifies the contribution is made under the terms
/hafnium/docs/hypervisor/
A DGetStarted.md63 You will need at least version 2.9 for QEMU. The following command line can be
94 The following command line will run Hafnium, with the RAM disk just created,
103 After building, presubmit tests can be run with the following command line:
A DHermeticBuild.md51 To always enable hermetic builds, put this line in your `~/.bashrc`:
57 When you now run `make`, you should see the following line:
A DPreparingLinux.md9 command-line:
A DTesting.md77 The base VM image offers a command line interface, via the bootargs, to query
A DStyleGuide.md43 * If the comment fits on one line use `/* */`, otherwise space it out:
A DArchitecture.md104 * In line with our design principles of _economy of mechanism_ and _least
/hafnium/docs/getting_started/
A Dcommit-style.rst43 The maximum character counts per line are:
91 Ensure that each commit also has a unique ``Change-Id:`` line.
A Dcoding-style.rst43 * If the comment fits on one line use `/* */`, otherwise space it out:
/hafnium/docs/
A Dchange-log.md411 * Introduce an assert macro enabled by a build option on the command line.
528 clang command line. This only affects the S-EL2 image.
/hafnium/docs/secure-partition-manager/
A Dsecure-partition-manager.rst87 Sample TF-A build command line when FEAT_SEL2 architecture extension is
104 Sample TF-A build command line when FEAT_SEL2 architecture extension is
130 The FVP command line needs the following options to exercise the S-EL2 SPMC:
156 Sample FVP command line invocation:

Completed in 22 milliseconds