| /optee_os/scripts/ |
| H A D | ftrace_format.py | 20 line = "" variable 43 global line, curr_depth 46 if line != "": 47 line = line.replace("TIME", " " * 10) + " {" 48 print(line) 49 line = "" 50 line = f" TIME | {depth:3} | " + " " * depth + f"0x{val:016x}()" 52 if line != "": 53 line = line.replace("TIME", format_time(val)) 54 print(line) [all …]
|
| H A D | symbolize.py | 272 for line in iter(nm.stdout.readline, ''): 274 addr, size, _, name = line.split() 278 addr, _, name = line.split() 315 for line in iter(objdump.stdout.readline, ''): 317 idx, name, size, vma, lma, offs, algn = line.split() 332 def process_abort(self, line): argument 334 match = re.search(ABORT_ADDR_RE, line) 341 ret += line[:pre] 347 ret += line[post:] 364 for line in iter(objdump.stdout.readline, ''): [all …]
|
| H A D | get_maintainer.py | 75 for line in f: 76 line = line.strip() 77 if not line: 80 if line.startswith("----------"): 84 if line[1] == ':': 85 letter = line[0] 88 ss[letter].append(line[3:]) 92 name = line 113 for line in f: 114 match = re.search(PATCH_START, line) [all …]
|
| H A D | notify_maintainers.py | 39 for line in output.splitlines(): 40 handle_start = line.find("[@") 41 handle_end = line.find("]", handle_start) 44 handle = line[handle_start + 2:handle_end].strip() 46 paren_start = line.find("(", handle_end) 47 paren_end = line.rfind(")") 50 content = line[paren_start + 1:paren_end].strip()
|
| H A D | gen_ld_sects.py | 27 for line in sys.stdin: 28 if section_headers.match(line): 31 if key_to_flags.match(line): 38 words = line.split()
|
| H A D | arm32_sysreg.py | 136 def gen_file(line, line_number, s_file): argument 137 words = line.split() 141 if len(re.findall('^ *#', line)): 144 if len(re.findall('^ *@', line)): 145 comment = re.sub('^ *@', '', line) 235 for line in sys.stdin: 237 gen_file(line, line_number, args.s_file)
|
| H A D | mem_usage.py | 95 for line in iter(readelf.stdout.readline, ''): 96 words = line.split() 105 for line in iter(readelf.stdout.readline, ''): 106 if 'Section Headers:' in line: 109 if 'Key to Flags:' in line: 113 words = line.split()
|
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | debug.c | 35 const char *file, int line, in debug_send_line() argument 46 ssl->conf->f_dbg(ssl->conf->p_dbg, level, file, line, idstr); in debug_send_line() 48 ssl->conf->f_dbg(ssl->conf->p_dbg, level, file, line, str); in debug_send_line() 54 const char *file, int line, in mbedtls_debug_print_msg() argument 84 debug_send_line(ssl, level, file, line, str); in mbedtls_debug_print_msg() 88 const char *file, int line, in mbedtls_debug_print_ret() argument 112 debug_send_line(ssl, level, file, line, str); in mbedtls_debug_print_ret() 116 const char *file, int line, const char *text, in mbedtls_debug_print_buf() argument 133 debug_send_line(ssl, level, file, line, str); in mbedtls_debug_print_buf() 144 debug_send_line(ssl, level, file, line, str); in mbedtls_debug_print_buf() [all …]
|
| H A D | debug_internal.h | 31 const char *file, int line, 50 const char *file, int line, 71 const char *file, int line, const char *text, 92 const char *file, int line, 114 const char *file, int line, 135 const char *file, int line, 166 const char *file, int line,
|
| H A D | ssl_debug_helpers.h | 42 int level, const char *file, int line, 47 int level, const char *file, int line, 53 int level, const char *file, int line,
|
| /optee_os/core/include/dt-bindings/pinctrl/ |
| H A D | stm32-pinfunc.h | 32 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line)) argument 34 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode)) argument 38 #define STM32_PINMUX_NSEC(port, line, mode) \ argument 39 (STM32_PIN_NSEC | STM32_PINMUX((port), (line), (mode)))
|
| /optee_os/lib/libutils/isoc/include/ |
| H A D | assert.h | 12 void _assert_log(const char *expr, const char *file, const int line, 16 const char *file, const int line, in _assert_trap() argument 19 _assert_log(expr_str, file, line, func); in _assert_trap() 24 const int line, const char *func) in _runtime_assert_trap() argument 28 _assert_log(expr_str, file, line, func); in _runtime_assert_trap()
|
| /optee_os/lib/libutils/ext/ |
| H A D | trace.c | 118 void trace_printf(const char *function, int line, int level, bool level_ok, in trace_printf() argument 124 trace_vprintf(function, line, level, level_ok, fmt, ap); in trace_printf() 127 void trace_vprintf(const char *function, int line, int level, bool level_ok, in trace_vprintf() argument 172 function, line); in trace_vprintf() 218 void trace_printf(const char *function __unused, int line __unused, in trace_printf() 256 void dhex_dump(const char *function, int line, int level, in dhex_dump() argument 281 trace_printf(function, line, level, true, "%s", in dhex_dump() 288 trace_printf(function, line, level, true, "%s", in dhex_dump() 305 void dhex_dump(const char *function __unused, int line __unused, in dhex_dump()
|
| /optee_os/lib/libmbedtls/mbedtls/include/mbedtls/ |
| H A D | error.h | 143 const char *file, int line) in mbedtls_error_add() argument 147 (*mbedtls_test_hook_error_add)(high, low, file, line); in mbedtls_error_add() 151 (void) line; in mbedtls_error_add()
|
| /optee_os/core/include/kernel/ |
| H A D | spinlock.h | 71 static inline void cpu_spin_lock_dldetect(const char *func, const int line, in cpu_spin_lock_dldetect() argument 83 trace_printf(func, line, TRACE_ERROR, true, in cpu_spin_lock_dldetect() 132 cpu_spin_lock_xsave_dldetect(const char *func, const int line, in cpu_spin_lock_xsave_dldetect() argument 137 cpu_spin_lock_dldetect(func, line, lock); in cpu_spin_lock_xsave_dldetect()
|
| H A D | panic.h | 18 void __do_panic(const char *file, const int line, const char *func,
|
| /optee_os/lib/libutee/ |
| H A D | assert.c | 15 const int line __maybe_unused, in _assert_log() 19 expr, file, line, func); in _assert_log()
|
| /optee_os/core/kernel/ |
| H A D | assert.c | 15 const int line __maybe_unused, in _assert_log() 20 expr, file, line, func); in _assert_log()
|
| H A D | panic.c | 63 const int line __maybe_unused, in __do_panic() 76 file ? file : "?", file ? line : 0, in __do_panic()
|
| /optee_os/core/arch/arm/dts/ |
| H A D | fsl-lx2160a.dtsi | 34 d-cache-line-size = <64>; 37 i-cache-line-size = <64>; 51 d-cache-line-size = <64>; 54 i-cache-line-size = <64>; 68 d-cache-line-size = <64>; 71 i-cache-line-size = <64>; 85 d-cache-line-size = <64>; 88 i-cache-line-size = <64>; 102 d-cache-line-size = <64>; 105 i-cache-line-size = <64>; [all …]
|
| H A D | stm32mp15xx-dhcom-som.dtsi | 197 gpio-line-names = "", "", "", "", 204 gpio-line-names = "", "", "", "", 211 gpio-line-names = "", "", "", "", 218 gpio-line-names = "", "", "", "", 225 gpio-line-names = "", "", "", "", 232 gpio-line-names = "", "", "", "DHCOM-A", 239 gpio-line-names = "DHCOM-C", "", "", "", 246 gpio-line-names = "", "", "", "", 253 gpio-line-names = "DHCOM-G", "DHCOM-O", "DHCOM-H", "DHCOM-I",
|
| /optee_os/lib/libutils/ext/include/ |
| H A D | trace.h | 35 void trace_vprintf(const char *func, int line, int level, bool level_ok, 37 void trace_printf(const char *func, int line, int level, bool level_ok, 91 void dhex_dump(const char *function, int line, int level,
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | .uncrustify.cfg | 32 # Braces on the same line (Egyptian-style braces) 43 # Braces on same line as keywords that follow them - 'else' and the 'while' in 'do {} while ()'; 46 # Space before else on the same line 48 # If else is on the same line as '{', force exactly 1 space between them 51 # Functions are the exception and have braces on the next line 209 # Force exactly 1 space between a '}' and the name of a typedef if on the same line 212 # At least 1 space before a '\' line continuation 229 # Add braces in single-line statements 238 # Disable removal of leading spaces in a multi-line comment if the first and
|
| /optee_os/ldelf/ |
| H A D | sys.c | 15 void __panic(const char *file __maybe_unused, const int line __maybe_unused, in __panic() 22 file ? file : "?", file ? line : 0, in __panic()
|
| /optee_os/ |
| H A D | .checkpatch.conf | 5 --max-line-length=80
|