Searched refs:line (Results 1 – 18 of 18) sorted by relevance
/hafnium/build/image/ |
A D | check_elf.py | 47 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 D | parse_strace_open.py | 38 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 D | check_platform_exists.py | 30 for line in project_file: 31 platforms += reg.findall(line)
|
/hafnium/inc/hf/ |
A D | assert.h | 24 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 D | ffa_console_log.c | 87 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 D | gen_offset_size_header.py | 45 for line in stdout: 46 for match in regex.findall(line):
|
/hafnium/test/hftest/ |
A D | hftest.py | 713 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 D | CONTRIBUTING.md | 25 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 D | GetStarted.md | 63 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 D | HermeticBuild.md | 51 To always enable hermetic builds, put this line in your `~/.bashrc`: 57 When you now run `make`, you should see the following line:
|
A D | PreparingLinux.md | 9 command-line:
|
A D | Testing.md | 77 The base VM image offers a command line interface, via the bootargs, to query
|
A D | StyleGuide.md | 43 * If the comment fits on one line use `/* */`, otherwise space it out:
|
A D | Architecture.md | 104 * In line with our design principles of _economy of mechanism_ and _least
|
/hafnium/docs/getting_started/ |
A D | commit-style.rst | 43 The maximum character counts per line are: 91 Ensure that each commit also has a unique ``Change-Id:`` line.
|
A D | coding-style.rst | 43 * If the comment fits on one line use `/* */`, otherwise space it out:
|
/hafnium/docs/ |
A D | change-log.md | 411 * 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 D | secure-partition-manager.rst | 87 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