Home
last modified time | relevance | path

Searched refs:re (Results 1 – 16 of 16) sorted by relevance

/optee_os/scripts/
H A Dsymbolize.py12 import re
17 CALL_STACK_RE = re.compile('Call stack:')
18 TEE_LOAD_ADDR_RE = re.compile(r'TEE load address @ (?P<load_addr>0x[0-9a-f]+)')
21 STACK_ADDR_RE = re.compile(
23 ABORT_ADDR_RE = re.compile(r'-abort at address (?P<addr>0x[0-9a-f]+)')
24 TA_PANIC_RE = re.compile(r'TA panicked with code (?P<code>0x[0-9a-f]+)')
25 REGION_RE = re.compile(r'region +[0-9]+: va (?P<addr>0x[0-9a-f]+) '
28 ELF_LIST_RE = re.compile(r'\[(?P<idx>[0-9]+)\] (?P<uuid>[0-9a-f\-]+)'
30 FUNC_GRAPH_RE = re.compile(r'Function graph')
31 GRAPH_ADDR_RE = re.compile(r'(?P<addr>0x[0-9a-f]+)')
[all …]
H A Dgen_ld_sects.py8 import re
22 section_headers = re.compile("Section Headers:")
23 key_to_flags = re.compile("Key to Flags:")
24 match_rule = re.compile(sys.argv[1])
H A Dget_maintainer.py13 import re
17 DIFF_GIT_RE = re.compile(r'^diff --git a/(?P<path>.*) ')
18 REVIEWED_RE = re.compile(r'^Reviewed-by: (?P<approver>.*>)')
19 ACKED_RE = re.compile(r'^Acked-by: (?P<approver>.*>)')
20 PATCH_START = re.compile(r'^From [0-9a-f]{40}')
114 match = re.search(PATCH_START, line)
140 match = re.search(DIFF_GIT_RE, line)
146 match = re.search(REVIEWED_RE, line)
152 match = re.search(ACKED_RE, line)
178 return not not re.match(rep, path)
[all …]
H A Darm32_sysreg.py10 import re
141 if len(re.findall('^ *#', line)):
144 if len(re.findall('^ *@', line)):
145 comment = re.sub('^ *@', '', line)
146 comment = re.sub('^ *', '', comment)
147 comment = re.sub('[ \n]*$', '', comment)
H A Dgen_compile_commands.py17 import re
91 filename_matcher = re.compile(_FILENAME_PATTERN)
200 line_matcher = re.compile(_LINE_PATTERN)
H A Dnotify_maintainers.py25 import re
115 existing_handles.update(re.findall(r"@([\w-]+)", comment.body))
H A Dbin_to_c.py10 import re
H A Dts_bin_to_c.py13 import re
145 ts_uuid = uuid.UUID(re.sub(r'\..*', '', os.path.basename(ts)))
H A Dgen_tee_bin.py13 import re
137 dump_names = re.compile(r'^\..*_(pageable|init)$')
146 dump_names = re.compile(r'^\.(text|nex_data|rodata|ctors|got|data|'
/optee_os/core/lib/libfdt/
H A Dfdt_sw.c182 struct fdt_reserve_entry *re; in fdt_add_reservemap_entry() local
188 if ((offset + sizeof(*re)) > fdt_totalsize(fdt)) in fdt_add_reservemap_entry()
191 re = (struct fdt_reserve_entry *)((char *)fdt + offset); in fdt_add_reservemap_entry()
192 re->address = cpu_to_fdt64(addr); in fdt_add_reservemap_entry()
193 re->size = cpu_to_fdt64(size); in fdt_add_reservemap_entry()
195 fdt_set_off_dt_struct(fdt, offset + sizeof(*re)); in fdt_add_reservemap_entry()
H A Dfdt_rw.c143 struct fdt_reserve_entry *re; in fdt_add_mem_rsv() local
148 re = fdt_mem_rsv_w_(fdt, fdt_num_mem_rsv(fdt)); in fdt_add_mem_rsv()
149 err = fdt_splice_mem_rsv_(fdt, re, 0, 1); in fdt_add_mem_rsv()
153 re->address = cpu_to_fdt64(address); in fdt_add_mem_rsv()
154 re->size = cpu_to_fdt64(size); in fdt_add_mem_rsv()
160 struct fdt_reserve_entry *re = fdt_mem_rsv_w_(fdt, n); in fdt_del_mem_rsv() local
167 return fdt_splice_mem_rsv_(fdt, re, 1, 0); in fdt_del_mem_rsv()
H A Dfdt_ro.c164 const struct fdt_reserve_entry *re; in fdt_get_mem_rsv() local
167 re = fdt_mem_rsv(fdt, n); in fdt_get_mem_rsv()
168 if (!re) in fdt_get_mem_rsv()
171 *address = fdt64_ld(&re->address); in fdt_get_mem_rsv()
172 *size = fdt64_ld(&re->size); in fdt_get_mem_rsv()
179 const struct fdt_reserve_entry *re; in fdt_num_mem_rsv() local
181 for (i = 0; (re = fdt_mem_rsv(fdt, i)) != NULL; i++) { in fdt_num_mem_rsv()
182 if (fdt64_ld(&re->size) == 0) in fdt_num_mem_rsv()
/optee_os/lib/libmbedtls/mbedtls/
H A DBUGS.md9 1. Make sure you're using the latest version of a
H A DChangeLog175 * Support re-assembly of fragmented handshake messages in TLS (both
456 unauthenticated (non-AEAD) ciphers are disabled, or if they're all
725 they're provided by a built-in implementation, a driver or both. See
1577 the function needs to be re-called after initially returning
/optee_os/lib/libutils/isoc/
H A Dbget.doc85 guide you to the BGET functions you're likely to need.
109 to zero and [inefficient] re-allocation of existing buffers for
217 is re-tried. If <compact> returns 0 (as it must if it isn't able to
/optee_os/
H A DCHANGELOG.md1646 * [#40][prld40] BUG_ON() when re-using RPC buffer to tee-supplicant
1707 * [#40][prld40] BUG_ON() when re-using RPC buffer to tee-supplicant