Home
last modified time | relevance | path

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

12

/optee_os/scripts/
H A Dftrace_format.py20 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 Dsymbolize.py272 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 Dget_maintainer.py75 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 Dnotify_maintainers.py39 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 Dgen_ld_sects.py27 for line in sys.stdin:
28 if section_headers.match(line):
31 if key_to_flags.match(line):
38 words = line.split()
H A Darm32_sysreg.py136 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 Dmem_usage.py95 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 Ddebug.c35 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 Ddebug_internal.h31 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 Dssl_debug_helpers.h42 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 Dstm32-pinfunc.h32 #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 Dassert.h12 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 Dtrace.c118 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 Derror.h143 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 Dspinlock.h71 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 Dpanic.h18 void __do_panic(const char *file, const int line, const char *func,
/optee_os/lib/libutee/
H A Dassert.c15 const int line __maybe_unused, in _assert_log()
19 expr, file, line, func); in _assert_log()
/optee_os/core/kernel/
H A Dassert.c15 const int line __maybe_unused, in _assert_log()
20 expr, file, line, func); in _assert_log()
H A Dpanic.c63 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 Dfsl-lx2160a.dtsi34 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 Dstm32mp15xx-dhcom-som.dtsi197 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 Dtrace.h35 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.cfg32 # 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 Dsys.c15 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.conf5 --max-line-length=80

12